Deprecate g:vue_disable_pre_processors

It was superseded by g:vue_pre_processors (#133)

I could add a message if g:vue_disable_pre_processors is set, asking
people to update their config to the new variable, but I'd rather not
interrupt people's workflows.
This commit is contained in:
Adriaan Zonnenberg
2019-07-24 20:57:50 +02:00
parent 6acff7e6db
commit 18c4211bd6
2 changed files with 17 additions and 14 deletions

View File

@@ -119,8 +119,8 @@ When checking for pre-processor languages, multiple syntax highlighting checks a
let g:vue_pre_processors = ['pug', 'scss']
```
Or alternatively, disable pre-processor languages altogether:
To disable pre-processor languages altogether (only highlight HTML, JavaScript, and CSS):
```vim
let g:vue_disable_pre_processors = 1
let g:vue_pre_processors = []
```