ShellScriptImproved
❌ [Deprecated] A better ShellScript (Bash) syntax highlight for Sublime Text >= 3143
Details
Installs
- Total 14K
- Win 7K
- Mac 4K
- Linux 4K
Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 3 | 0 | 2 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 |
Mac | 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 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
❌ [Deprecated] Sublime-ShellScriptImproved
A better ShellScript (Bash) syntax highlight for Sublime Text >= 3143.
Important Note
The official ShellScript (Bash)
syntax has been rewritten.
All following comparisons are with the one BEFORE rewritten.
I deprecated this plugin because the new official Bash highlighting is much better than the former one (and better than this plugin). Thus, this plugin is no longer needed I guess.
Pros
- It fixes quite lots of bugs which exist in the official
ShellScript (Bash)
syntax. - It parses things more grammatically while the official one is just like a keyword highlighter.
Cons
- It is designed for Bash only while the official one is designed for general shell scripts.
- You may have to add customized scopes to your color scheme if you do not want to use the bundled one.
- Its source code is as messy as the official one's but this does not matter if you are not a maintainer.
Screenshots
Left / Right = Official ShellScript (Bash) / ShellScript Improved
Color scheme
There are quite a lot of scopes that may be missing in the color scheme you are using.
If you want to add them by yourself, see the Customization from Your Color Scheme
section.
Or, you can set the syntax specific settings to use the color scheme which is shipped with this package.
To do that,
- Open a file with
ShellScript Improved
syntax. - Go to
Preferences
»Settings - More
»Syntax Specific - User
- Add the
color_scheme
item into the settings file and then save.
{
// use a bundled .tmTheme file while writing shell scripts
"color_scheme": "Packages/ShellScriptImproved/color_schemes/dark.tmTheme",
// or, if you are using Sublime Text >= 3149, using a .sublime-color-scheme file is recommended
"color_scheme": "Packages/ShellScriptImproved/color_schemes/dark.sublime-color-scheme",
}
That color scheme is the exact one I use in my Sublime Text so there is only a dark one. You would get the same highlighting as shown in the screenshot.
Customization from Your Color Scheme
Note that an extra rule is added to my .tmTheme
in above screenshots in order to set text to its default color, i.e., white on dark theme and black on light theme mostly. (I just can not find other way to set text to the default text color…) This resets the color of TEXT
in $(echo TEXT)
and other things like that.
<dict>
<key>name</key>
<string>Embedded</string>
<key>scope</key>
<string>meta.embedded</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFFFFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Reset Color</string>
<key>scope</key>
<string>meta.reset.color</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFFFFF</string>
</dict>
</dict>
Also, those scopes may be missing in your theme. You may add/adjust them to get a better color highlighting.
<dict>
<key>name</key>
<string>Shell - variable</string>
<key>scope</key>
<string>variable.other.normal.shell, variable.other.positional.shell, variable.other.bracket.shell, variable.other.special.shell, variable.other.loop.shell, variable.other.c-style.shell,variable.other.positional.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#AE81FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - bracket variable in meta.reset.color</string>
<key>scope</key>
<string>meta.reset.color variable.other.bracket.shell, meta.reset.color variable.other.bracket.shell variable.other.bracket.shell, meta.reset.color variable.other.bracket.shell variable.other.bracket.shell variable.other.bracket.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#AE81FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - true</string>
<key>scope</key>
<string>variable.other.true.shell</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#AAFFFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - false</string>
<key>scope</key>
<string>variable.other.false.shell</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#FFAAFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - built-in command</string>
<key>scope</key>
<string>support.function.builtin.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#50AAFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - privilege command</string>
<key>scope</key>
<string>support.function.privilege.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#FF0000</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - external command</string>
<key>scope</key>
<string>support.function.external.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#0684F4</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - punctuation variable</string>
<key>scope</key>
<string>punctuation.definition.variable.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#AE81FF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - punctuation definition</string>
<key>scope</key>
<string>punctuation.definition.string</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#E6DB74</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - pipe-sign/parentheses in `case`</string>
<key>scope</key>
<string>punctuation.separator.pipe-sign.shell, punctuation.definition.case-pattern.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#F92672</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - `;;` in `case`</string>
<key>scope</key>
<string>punctuation.terminator.case-clause.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
<key>foreground</key>
<string>#F92672</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Shell - command switch</string>
<key>scope</key>
<string>support.command-switch.shell</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold italic</string>
</dict>
</dict>
See Also
Supporters 
Thank you guys for sending me some cups of coffee.