Merge pull request #1941 from szeck87/magicpython
Add MagicPython grammar to python language
This commit is contained in:
commit
0e68f2af9f
|
@ -43,6 +43,7 @@ addons:
|
|||
- fakeroot
|
||||
- crystal
|
||||
- camlp4
|
||||
- aspcud
|
||||
- php5-cli
|
||||
- golang
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# Next
|
||||
- Add support for MagicPython grammar [#1851](https://github.com/Glavin001/atom-beautify/issues/1851)
|
||||
- Add "Reindent" option for sqlformat. See [#1926](https://github.com/Glavin001/atom-beautify/pull/1926).
|
||||
- Add hindent and brittany beautifiers for haskell
|
||||
- Breaking change to `pybeautifier`: Fix typo, change `formater` to `formatter`. See [#1898](https://github.com/Glavin001/atom-beautify/pull/1898).
|
||||
|
|
|
@ -189,7 +189,7 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti
|
|||
| Perl | `Perl`, `Perl 6` |`.pl`, `.PL`, `.pm`, `.pod`, `.t` | **[`Perltidy`](http://perltidy.sourceforge.net/)** |
|
||||
| PHP | `PHP` |`.php`, `.module`, `.inc` | **[`PHP-CS-Fixer`](https://github.com/FriendsOfPHP/PHP-CS-Fixer)**, [`PHPCBF`](http://php.net/manual/en/install.php), [`hh_format`](http://hhvm.com/) |
|
||||
| Puppet | `Puppet` |`.pp` | **[`puppet-lint`](http://puppet-lint.com/)** |
|
||||
| Python | `Python` |`.py` | **[`autopep8`](https://github.com/hhatto/autopep8)**, [`pybeautifier`](https://github.com/guyskk/pybeautifier), [`yapf`](https://github.com/google/yapf) |
|
||||
| Python | `Python`, `MagicPython` |`.py` | **[`autopep8`](https://github.com/hhatto/autopep8)**, [`pybeautifier`](https://github.com/guyskk/pybeautifier), [`yapf`](https://github.com/google/yapf) |
|
||||
| R | `R` |`.r`, `.R` | **[`formatR`](https://github.com/yihui/formatR)** |
|
||||
| Riot.js | `Riot.js`, `HTML (Riot Tag)` |`.tag` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Ruby | `Ruby`, `Ruby on Rails` |`.rb` | **[`Rubocop`](https://github.com/bbatsov/rubocop)**, [`Ruby Beautify`](https://github.com/erniebrodeur/ruby-beautify) |
|
||||
|
|
|
@ -8,7 +8,8 @@ module.exports = {
|
|||
Supported Grammars
|
||||
###
|
||||
grammars: [
|
||||
"Python"
|
||||
"Python",
|
||||
"MagicPython"
|
||||
]
|
||||
|
||||
###
|
||||
|
|
|
@ -5872,7 +5872,8 @@
|
|||
"yapf"
|
||||
],
|
||||
"grammars": [
|
||||
"Python"
|
||||
"Python",
|
||||
"MagicPython"
|
||||
],
|
||||
"extensions": [
|
||||
"py"
|
||||
|
|
Loading…
Reference in New Issue