vue-syntax-highlight
vue-syntax-highlight copied to clipboard
💡 Sublime Text syntax highlighting for single-file Vue components
Using arrow functions within Vue elements and utilizing strings inside them leads to an error, regardless of whether backticks(`), single quotes('), or double quotes(") are used.  
Support JSX/TSX without install `Babel`. Just use the default from ST4. ```vue export default { render () { return { this.foo } } } ```
It's almost embarrassing that I only noticed this randomly despite having a color scheme rule on this scope …
When in the `` tag inside the vue file I set the type attribute to `"text/babel"`, I lose JS syntax highlighting completely, which is a bummer. vue-syntax-highlight should simply use...
add "text/x-template" as type of script ```html ``` as suggested here https://vuejs.org/v2/api/#template
We don't use semicolons in my project, so this is really annoying. It breaks everything after it. ```vue type T = any ```
I don't use Sublime Text (so can't check the `new` branch), but this issue appears on GitHub which uses this repository for syntax highlighting and is [using the latest version](https://github.com/github/linguist/blob/32ec19c013a7f81ffaeead25e6e8f9668c7ed574/vendor/licenses/git_submodule/vue-syntax-highlight.dep.yml)...
Hi there, I was just using the Vue syntax highlighting in Sublime Text 4 and I noticed a highlighting bug: When there is inline JS within markup that is surrounded...
I'd like to color vue directives differently than normal attributes, but there aren't scopes to support it. At the moment in sublime, `v-on:mousedown` or `@mousedown` will have the scopes: ```...
Right now I am trying to use the typescript syntax highlight inside of a vue component. By default when the script tag is bare, like `` or `` this works...