1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
| module.exports = function(hljs) {
| var VAR = {
| className: 'variable',
| variants: [
| {begin: /\$[\w\d#@][\w\d_]*/},
| {begin: /\$\{(.*?)}/}
| ]
| };
| var QUOTE_STRING = {
| className: 'string',
| begin: /"/, end: /"/,
| contains: [
| hljs.BACKSLASH_ESCAPE,
| VAR,
| {
| className: 'variable',
| begin: /\$\(/, end: /\)/,
| contains: [hljs.BACKSLASH_ESCAPE]
| }
| ]
| };
| var ESCAPED_QUOTE = {
| className: '',
| begin: /\\"/
|
| };
| var APOS_STRING = {
| className: 'string',
| begin: /'/, end: /'/
| };
|
| return {
| aliases: ['sh', 'zsh'],
| lexemes: /\b-?[a-z\._]+\b/,
| keywords: {
| keyword:
| 'if then else elif fi for while in do done case esac function',
| literal:
| 'true false',
| built_in:
| // Shell built-ins
| // http://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html
| 'break cd continue eval exec exit export getopts hash pwd readonly return shift test times ' +
| 'trap umask unset ' +
| // Bash built-ins
| 'alias bind builtin caller command declare echo enable help let local logout mapfile printf ' +
| 'read readarray source type typeset ulimit unalias ' +
| // Shell modifiers
| 'set shopt ' +
| // Zsh built-ins
| 'autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles ' +
| 'compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate ' +
| 'fc fg float functions getcap getln history integer jobs kill limit log noglob popd print ' +
| 'pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit ' +
| 'unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof ' +
| 'zpty zregexparse zsocket zstyle ztcp',
| _:
| '-ne -eq -lt -gt -f -d -e -s -l -a' // relevance booster
| },
| contains: [
| {
| className: 'meta',
| begin: /^#![^\n]+sh\s*$/,
| relevance: 10
| },
| {
| className: 'function',
| begin: /\w[\w\d_]*\s*\(\s*\)\s*\{/,
| returnBegin: true,
| contains: [hljs.inherit(hljs.TITLE_MODE, {begin: /\w[\w\d_]*/})],
| relevance: 0
| },
| hljs.HASH_COMMENT_MODE,
| QUOTE_STRING,
| ESCAPED_QUOTE,
| APOS_STRING,
| VAR
| ]
| };
| };
|
|