2017-11-03 06:18:58 +03:00
|
|
|
hook global BufCreate .*\.(z|ba|c|k|mk)?sh(rc|_profile)? %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype sh
|
2013-01-08 17:01:22 +04:00
|
|
|
}
|
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/ regions -default code -match-capture sh \
|
2017-02-07 02:00:20 +03:00
|
|
|
double_string %{(?<!\\)(?:\\\\)*\K"} %{(?<!\\)(?:\\\\)*"} '' \
|
|
|
|
single_string %{(?<!\\)(?:\\\\)*\K'} %{'} '' \
|
|
|
|
comment '(?<!\$)#' '$' '' \
|
|
|
|
heredoc '<<-?(\w+)' '^\t*(\w+)$' ''
|
2014-06-13 00:52:23 +04:00
|
|
|
|
2017-10-28 06:00:51 +03: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-13 00:52:23 +04:00
|
|
|
|
2016-03-14 15:08:51 +03:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2016-03-14 19:29:11 +03: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 13:50:45 +03:00
|
|
|
keywords="${keywords}|time|type|typeset|ulimit|unalias|until|while|break|continue"
|
2016-03-14 15:08:51 +03:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2016-03-25 22:31:01 +03:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=sh %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option window static_words '${keywords}'
|
2018-02-18 07:00:30 +03:00
|
|
|
}" | tr '|' ':'
|
2016-03-14 15:08:51 +03:00
|
|
|
|
|
|
|
# Highlight keywords
|
2017-10-28 06:00:51 +03:00
|
|
|
printf %s "add-highlighter shared/sh/code regex \b(${keywords})\b 0:keyword"
|
2016-03-14 15:08:51 +03:00
|
|
|
}
|
|
|
|
|
2017-10-28 06:00:51 +03: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-13 00:52:23 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/sh/code regex \$(\w+|\{.+?\}|#|@|\?|\$|!|-|\*) 0:value
|
|
|
|
add-highlighter shared/sh/double_string regex \$(\w+|\{.+?\}) 0:value
|
2013-01-08 17:01:22 +04:00
|
|
|
|
2017-10-28 06:00:51 +03: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 }
|