Cover jscs in README
This commit is contained in:
parent
f256d815e7
commit
ff8deba487
17
README.md
17
README.md
@ -86,11 +86,7 @@ Note that `nodejs` is needed for this to work.
|
|||||||
The python version version is also supported by default, which does not need `nodejs` to run.
|
The python version version is also supported by default, which does not need `nodejs` to run.
|
||||||
Here is the link to the repository: https://github.com/einars/js-beautify.
|
Here is the link to the repository: https://github.com/einars/js-beautify.
|
||||||
|
|
||||||
* `typescript-formatter` for __Typescript__.
|
* `JSCS` for __Javascript__. http://jscs.info/
|
||||||
`typescript-formatter` is a thin wrapper around the TypeScript compiler services.
|
|
||||||
It can be installed by running `npm install -g typescript-formatter`.
|
|
||||||
Note that `nodejs` is needed for this to work.
|
|
||||||
Here is the link to the repository: https://github.com/vvakame/typescript-formatter.
|
|
||||||
|
|
||||||
* `html-beautify` for __HTML__.
|
* `html-beautify` for __HTML__.
|
||||||
It is shipped with `js-beautify`, which can be installed by running `npm install -g js-beautify`.
|
It is shipped with `js-beautify`, which can be installed by running `npm install -g js-beautify`.
|
||||||
@ -102,6 +98,12 @@ It is shipped with `js-beautify`, which can be installed by running `npm install
|
|||||||
Note that `nodejs` is needed for this to work.
|
Note that `nodejs` is needed for this to work.
|
||||||
Here is the link to the repository: https://github.com/einars/js-beautify.
|
Here is the link to the repository: https://github.com/einars/js-beautify.
|
||||||
|
|
||||||
|
* `typescript-formatter` for __Typescript__.
|
||||||
|
`typescript-formatter` is a thin wrapper around the TypeScript compiler services.
|
||||||
|
It can be installed by running `npm install -g typescript-formatter`.
|
||||||
|
Note that `nodejs` is needed for this to work.
|
||||||
|
Here is the link to the repository: https://github.com/vvakame/typescript-formatter.
|
||||||
|
|
||||||
* `sass-convert` for __SCSS__.
|
* `sass-convert` for __SCSS__.
|
||||||
It is shipped with `sass`, a CSS preprocessor written in Ruby, which can be installed by running `gem install sass`.
|
It is shipped with `sass`, a CSS preprocessor written in Ruby, which can be installed by running `gem install sass`.
|
||||||
Here is the link to the SASS homepage: http://sass-lang.com/.
|
Here is the link to the SASS homepage: http://sass-lang.com/.
|
||||||
@ -184,12 +186,13 @@ If you have any suggestions on this plugin or on this readme, if you have some n
|
|||||||
|
|
||||||
Change log
|
Change log
|
||||||
----------
|
----------
|
||||||
### May 21 2015
|
### June 2015
|
||||||
* *Backwards incompatible patch!*
|
* *Backward incompatible patch!*
|
||||||
* Multiple formatters per filetype are now supported
|
* Multiple formatters per filetype are now supported
|
||||||
* Configuration variable names changed
|
* Configuration variable names changed
|
||||||
* `gq` no longer supported
|
* `gq` no longer supported
|
||||||
* `:Autoformat` suppports ranges
|
* `:Autoformat` suppports ranges
|
||||||
|
* Composite filetypes are fully supported
|
||||||
|
|
||||||
### Dec 9 2014
|
### Dec 9 2014
|
||||||
* Added `rbeautify` to the defaults for formatting ruby files
|
* Added `rbeautify` to the defaults for formatting ruby files
|
||||||
|
@ -16,7 +16,7 @@ function! s:find_formatters(...)
|
|||||||
let old_formatprg_args_var = "g:formatprg_args_".compoundtype
|
let old_formatprg_args_var = "g:formatprg_args_".compoundtype
|
||||||
let old_formatprg_args_expr_var = "g:formatprg_args_expr_".compoundtype
|
let old_formatprg_args_expr_var = "g:formatprg_args_expr_".compoundtype
|
||||||
if exists(old_formatprg_var) || exists(old_formatprg_args_var) || exists(old_formatprg_args_expr_var)
|
if exists(old_formatprg_var) || exists(old_formatprg_args_var) || exists(old_formatprg_args_expr_var)
|
||||||
echom "WARNING: the options g:formatprg_<filetype>, g:formatprg_args_<filetype> and g:formatprg_args_expr_<filetype> are no longer supported as of June 2015. Please check the README for help on how to configure your formatters."
|
echom "WARNING: the options g:formatprg_<filetype>, g:formatprg_args_<filetype> and g:formatprg_args_expr_<filetype> are no longer supported as of June 2015, due to major backward-incompatible improvements. Please check the README for help on how to configure your formatters."
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Detect configuration for all possible supertypes
|
" Detect configuration for all possible supertypes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user