vue-syntax-highlight icon indicating copy to clipboard operation
vue-syntax-highlight copied to clipboard

💡 Sublime Text syntax highlighting for single-file Vue components

Results 32 vue-syntax-highlight issues
Sort by recently updated
recently updated
newest added
trafficstars

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. ![image](https://user-images.githubusercontent.com/55763682/77003309-08438200-6955-11ea-85cc-bd6c2496c8c7.png) ![image](https://user-images.githubusercontent.com/55763682/77003357-1e514280-6955-11ea-9cb9-9fd928bfb361.png)

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. ![image](https://user-images.githubusercontent.com/35039944/92978502-2d6d0500-f44d-11ea-8e4b-4d10143ea7e9.png)

![image](https://user-images.githubusercontent.com/4539476/109676226-c701ad80-7b78-11eb-8e93-a556742bd624.png)

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....