Update doc

This commit is contained in:
leafOfTree
2019-08-29 12:10:32 +08:00
parent b79ec2234a
commit bce6d5c2db

View File

@@ -34,6 +34,7 @@ Supports
- Vue directives. - Vue directives.
- Pug with [vim-pug][4] (see Configuration). - Pug with [vim-pug][4] (see Configuration).
- Less/Sass/Scss (see Configuration). - Less/Sass/Scss (see Configuration).
- Coffee with [vim-coffee-script][11] (see Configuration).
- A builtin 'expr' foldmethod (see Configuration). - A builtin 'expr' foldmethod (see Configuration).
- [emmet-vim][10] HTML/CSS/JavaScript filetype detection. - [emmet-vim][10] HTML/CSS/JavaScript filetype detection.
- `.wpy` files from [WePY][6]. - `.wpy` files from [WePY][6].
@@ -50,6 +51,7 @@ Ex:
|---------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|----------------------------| |---------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|----------------------------|
| `g:vim_vue_plugin_load_full_syntax`\* | Enable: load all syntax files in `runtimepath` to enable related syntax plugins.<br> Disable: only in `$VIMRUNTIME/syntax`, `~/.vim/syntax` and `$VIM/vimfiles/syntax` | 0 | | `g:vim_vue_plugin_load_full_syntax`\* | Enable: load all syntax files in `runtimepath` to enable related syntax plugins.<br> Disable: only in `$VIMRUNTIME/syntax`, `~/.vim/syntax` and `$VIM/vimfiles/syntax` | 0 |
| `g:vim_vue_plugin_use_pug`\* | Enable `vim-pug` pug syntax for `<template lang="pug">`. | 0 | | `g:vim_vue_plugin_use_pug`\* | Enable `vim-pug` pug syntax for `<template lang="pug">`. | 0 |
| `g:vim_vue_plugin_use_coffee` | Enable coffee syntax for `<script lang="coffee">`. | 0 |
| `g:vim_vue_plugin_use_less` | Enable less syntax for `<style lang="less">`. | 0 | | `g:vim_vue_plugin_use_less` | Enable less syntax for `<style lang="less">`. | 0 |
| `g:vim_vue_plugin_use_sass` | Enable sass/scss syntax for `<style lang="sass">`(or scss). | 0 | | `g:vim_vue_plugin_use_sass` | Enable sass/scss syntax for `<style lang="sass">`(or scss). | 0 |
| `g:vim_vue_plugin_has_init_indent` | Initially indent one tab inside `style/script` tags. | 0 for `.vue`. 1 for `.wpy` | | `g:vim_vue_plugin_has_init_indent` | Initially indent one tab inside `style/script` tags. | 0 for `.vue`. 1 for `.wpy` |
@@ -115,3 +117,4 @@ This plugin is under [The Unlicense][8].
[7]: https://github.com/junegunn/vim-plug [7]: https://github.com/junegunn/vim-plug
[8]: https://choosealicense.com/licenses/unlicense/ [8]: https://choosealicense.com/licenses/unlicense/
[10]: https://github.com/mattn/emmet-vim [10]: https://github.com/mattn/emmet-vim
[11]: https://github.com/kchmck/vim-coffee-script