SpiderScript
Spider syntax highlighting and code snippets for Sublime Text 3. www.spiderlang.org
Details
Installs
- Total 451
- Win 272
- Mac 128
- Linux 51
| Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 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 |
| 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 |
Readme
- Source
- raw.githubusercontent.com
Syntax highlighting and code snippets for Spider language.
Installation
via Package Control
If you have Package Control installed then you can install the plugin by looking for SpiderScript.
code from repository
Download/clone whole repository into the appropriate folder for your OS:
- Windows:
%APPDATA%/Roaming/Sublime Text 3/Packages/SpiderScript. - OS X:
~/Library/Application Support/Sublime Text 3/Packages/SpiderScript
Snippets
Snippets in Sublime Text 3 are triggered by TAB key when cursor is blinking after snippet shortcut.
Functions
f => (args) -> { SELECTED_TEXT }
fun =>
func function_name(argument) {
// body...
}
funext => func Function1(args) extends Function2(args) { ... }
Loops
for =>
for var i = 0; i < Things.length; i++ {
Things[i]
};
or Improved Native For-Loop:
for var i = Things.length - 1; i >= 0; i-- {
Things[i]
};
forin =>
“
for item in items {
item
}
`forinkv` =>
for key, value in items { value }
`forof` =>
for key of object { key }
`forofkv` =>
for key, value of object { value }
`forlist` => `[expr for value in list]`
`forlistif` => `[expr for value in list if if-expr]`
Conditions
----------
`if` => `if true {}`
`ife` =>
if true { SELECTED_TEXT } else {
}
`ifin` =>
if key in object {
}
Objects
-------
`:` => `key: "value"`
`in` => `key in object`
`:f` =>
method_name: (attribute) -> {
},
`:,` => `value_name:value,`
Others
------
`timeout` => `setTimeout(() -> {}, 10);`