Riot Syntax
Syntax highlighting for plain-js RiotJS tags
Details
Installs
- Total 2K
- Win 677
- Mac 898
- Linux 329
Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Riot Syntax
Only supports Sublime Text 3.
Language definitions for ES6+ JavaScript with RiotJS extensions for Sublime Text 3.
Adds syntax highlighting support for HTML right inside of ES6 strings (i.e …) when it's inside of riot.tag('your-tag', ...)
. It also supports modern JavaScript syntax, including arrow functions, destructuring, shorthand methods, template strings, and more.
This package is a port of Babel-Sublime for RiotJS. The Babel-Sublime only supports syntax highlighting of React .jsx
components. This package is here to change it. Basically, all it does, is that it makes your HTML inside of … strings to act like it's React's HTML inside of JavaScript.
Please note, that it has no jsx
support. It ships with a new syntax called JavaScript Riot
which should be used only for your Riot's pure-js tags. If you are not planning to ever use jsx
, you can use it as your default JavaScript syntax.
Screenshots
Why to use plain JavaScript instead of .tag
files?
- Linter support
- You can use JS sourcemaps
- Easier debugging (browser or terminal)
- Easier testing
- No extra compilation step
- Require tags with Webpack or Browserify directly, without any loaders
Installation
Find it as Riot Syntax through Package Control.
Setting as the default syntax
To set it as the default syntax for a particular extension:
1. Open a file with that extension,
2. Select View
from the menu,
3. Then Syntax
->
Open all with current extension as...
->
JavaScript Riot
.
4. Repeat this for each extension (e.g.: .js
, .jsr
, .riot
).
Setting a Color Scheme
Riot Syntax comes bundled with Next
, Monokai
and Github
color themes. Select one from Preferences
->
Color Scheme
->
Riot Syntax
Configuring the “Sublime Linter” package
If you are using a custom extension name (e.g: .riot
) for your RiotJS tags and you want to have linting support for such file, then you need to customize “sublime linter” config file.
Go to Package Settings
->
Sublime Linter
->
Settings – User
and add this line "javascript riot": "javascript"
to your syntax_map
. After this modification your config file should look like so:
{
"user": {
...
"syntax_map": {
...
"javascript riot": "javascript" // <- add this line
},
...
}
}