vue-syntax-highlight
vue-syntax-highlight copied to clipboard
💡 Sublime Text syntax highlighting for single-file Vue components
Scope inside normal html attribute value, like `class="|"`: ``` text.html.vue meta.tag.block.any.html meta.attribute-with-value.html string.quoted.double.html punctuation.definition.string.end.html ``` Scope inside vue directive like `@click="|"`: ``` text.html.vue meta.tag.block.any.html punctuation.definition.string.end.html ``` Is there a way...
This Happens in all my .vue files. Using the last version of sublime text.  
Currently, double-hyphens (`--`) inside comments aren't allowed in the linguist syntax highlight. However, the parser allows them without any warnings. The SFC Spec says ["use HTML comment syntax"](https://vue-loader.vuejs.org/spec.html#comments) but *HTML...
This plugin wont highlight methods in ```.vue``` files. It's a pain to work like this. Unable to quickly find the methods. It should highlight like on VS Code. Javascript/Babel use...
At the opening style tag of every component if `lang="css"` is present I get the following linting error : `sass: error error - Cannot read property 'toString' of undefined. (Fatal)`...
When using the v-on shorthand '@' with an event that has a colon, the colouring is wrong. 

I [thought](https://github.com/vuejs/vue/issues/8873) autocompletion was broken because of template tags, after some research, it seems it's only broken for Vue specific attributes: Other attributes work fine:
Adding syntax highlighting for template tags with `lang="haml"` ``` .hello-world %strong Hello world! ```
The documentation suggests the `` block will use whatever syntax is used for regular `.js` files, but I'm getting very different results in Vue SFC `` vs plain `.js` files....