vim-vue icon indicating copy to clipboard operation
vim-vue copied to clipboard

Syntax Highlight for Vue.js components

Results 33 vim-vue issues
Sort by recently updated
recently updated
newest added

I have the same html comments `< !-- -->` along the file, despite the file part - in `style` and `script` - the same. context_filetype.vim and caw.vim installed. I use...

The following code will cause incorrect style highlight ``` vue p { color: red; } ``` If the code is changed with ``, the style highlight is ok ```vue p...

can I use this along with https://github.com/leafOfTree/vim-vue-plugin? or they conflict with each other?

Previously, TSX wasn't being highlighted as when in typescript it requires the language to be `typescriptreact`, not `typescript`. I've changed it so that the `typescript` matcher no longer matches `type="tsx"`,...

When I was using ``, it was fairly zippy. However, when I modified it to `lang="less"` or `lang="css"`, it became **_extremely_** slow! I tried to do `let g:vue_disable_pre_processors=1`, and this...

need repro

My .vimrc: ```vim " Set compatibility to Vim only. set nocompatible " Color terminal set t_co=256 " Helps force plug-ins to load correctly when it is turned back on below....

Hello. Is there a way to change the color schema used in various sections? (template, script, style). I'd like to use the same syntax highlighting schema that I use for...

Hi maintainers, First of all, many thanks for your plugin! I use it with pleasure, it works really well. I have encounted one issue recently, and I'm afraid I'm not...

I'm using [sheerun/vim-polyglot], which makes use of this (and several other packages). It looks like indenting correctly on elements with attributes on their own line works differently than I expect....

To below code: ```vue haha export default { data () { return {} } } ``` I comment line 4 and 12 with `cc`, then it produce: ```vue /*haha*/ export...