2015-10-21 10:50:31 +02:00
|
|
|
hook global BufCreate .*\.(z|ba|c|k)?sh(rc|_profile)? %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer filetype sh
|
2013-01-08 14:01:22 +01:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ regions -default code -match-capture sh \
|
2017-02-07 00:00:20 +01:00
|
|
|
double_string %{(?<!\\)(?:\\\\)*\K"} %{(?<!\\)(?:\\\\)*"} '' \
|
|
|
|
single_string %{(?<!\\)(?:\\\\)*\K'} %{'} '' \
|
|
|
|
comment '(?<!\$)#' '$' '' \
|
|
|
|
heredoc '<<-?(\w+)' '^\t*(\w+)$' ''
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/sh/double_string fill string
|
|
|
|
add-highlighter shared/sh/single_string fill string
|
|
|
|
add-highlighter shared/sh/comment fill comment
|
|
|
|
add-highlighter shared/sh/heredoc fill string
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-03-14 17:29:11 +01:00
|
|
|
keywords="alias|bind|builtin|caller|case|cd|command|coproc|declare|do|done"
|
|
|
|
keywords="${keywords}|echo|elif|else|enable|esac|exit|fi|for|function|help"
|
|
|
|
keywords="${keywords}|if|in|let|local|logout|mapfile|printf|read|readarray"
|
|
|
|
keywords="${keywords}|readonly|return|select|set|shift|source|test|then"
|
2017-05-25 12:50:45 +02:00
|
|
|
keywords="${keywords}|time|type|typeset|ulimit|unalias|until|while|break|continue"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-03-25 20:31:01 +01:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=sh %{
|
2016-03-14 13:08:51 +01:00
|
|
|
set window static_words '${keywords}'
|
2016-03-17 14:30:14 +01:00
|
|
|
}" | sed 's,|,:,g'
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2017-10-28 05:00:51 +02:00
|
|
|
printf %s "add-highlighter shared/sh/code regex \b(${keywords})\b 0:keyword"
|
2016-03-14 13:08:51 +01:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/sh/code regex [\[\]\(\)&|]{1,2} 0:operator
|
|
|
|
add-highlighter shared/sh/code regex (\w+)= 1:variable
|
|
|
|
add-highlighter shared/sh/code regex ^\h*(\w+)\h*\(\) 1:variable
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/sh/code regex \$(\w+|\{.+?\}|#|@|\?|\$|!|-|\*) 0:value
|
|
|
|
add-highlighter shared/sh/double_string regex \$(\w+|\{.+?\}) 0:value
|
2013-01-08 14:01:22 +01:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group sh-highlight global WinSetOption filetype=sh %{ add-highlighter window ref sh }
|
|
|
|
hook -group sh-highlight global WinSetOption filetype=(?!sh).* %{ remove-highlighter window/sh }
|