vue-syntax-highlight
vue-syntax-highlight copied to clipboard
💡 Sublime Text syntax highlighting for single-file Vue components
on the left is Vue Component Syntax (`*.vue`) on the right is Javascript (Babel) Syntax (`*.jsx`) for some reason when its `` in `*.vue `, the syntax doesn't display the...
 It dosen't work width less.
It would be nice if vue-syntax-highlight can support Vue Components Implemented as "*.js" files. e.g for a component file like: ``` Vue.component('button-counter', { data: function () { return { count:...
I'm using sublime text and I found that there is a difference in how the syntax highlighting in an object is defined. The `name` key is orange and shows a...
Our existing code standards require the use of explicitly specifying the `type` attribute on markup tags. As such: `` breaks syntax highlighting for single-file vue components. Removing the attribute: ``...
Sometimes to avoid tag conflicts, I may need to change the vue delimiters, which causes my syntax highlighting to fail. The use case is this: I have Vue & Django....
Hello. I have a simple (hopefully) feature request for us that are using vue-i18n-loader. The vue-i18n-loader adds blocks for single file components. This is very handy and allows you to...
Example here: https://github.com/zbjornson/vue-syntax-highlight/blob/master/samples/docblock.vue  * `with` is highlighted red in GitHub * Everything after the `'` has a red background in GitHub * the `}` after `string` is pink in...
```vue Main Colors {{ color }} {{ color }} {{ color }} {{ color }} Full Palette red-{{ n }} {{ color }}-{{ n }} ``` The color of elements...
So we need something like this? ``` { "scope": "text.html - source, punctuation.definition.tag.begin", "completions": [ { "trigger": "slots", "contents": "$0" }, { "trigger": "component", "contents": "$0" }, { "trigger": "transition",...