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
|
|
|
}
|
|
|
|
|
2019-04-10 06:54:19 +03:00
|
|
|
hook global WinSetOption filetype=sh %{
|
2019-03-13 08:24:33 +03:00
|
|
|
require-module sh
|
2019-04-10 06:54:19 +03:00
|
|
|
set-option window static_words %opt{sh_static_words}
|
|
|
|
}
|
|
|
|
|
|
|
|
hook -group sh-highlight global WinSetOption filetype=sh %{
|
|
|
|
add-highlighter window/sh ref sh
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/sh }
|
2019-03-13 08:24:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
provide-module sh %[
|
|
|
|
|
2018-06-28 12:50:23 +03:00
|
|
|
add-highlighter shared/sh regions
|
|
|
|
add-highlighter shared/sh/code default-region group
|
2018-07-02 13:59:12 +03:00
|
|
|
add-highlighter shared/sh/double_string region %{(?<!\\)(?:\\\\)*\K"} %{(?<!\\)(?:\\\\)*"} group
|
|
|
|
add-highlighter shared/sh/single_string region %{(?<!\\)(?:\\\\)*\K'} %{'} fill string
|
2019-03-26 05:04:31 +03:00
|
|
|
add-highlighter shared/sh/expansion region '\$\{' '\}|\n' fill value
|
2019-01-11 02:02:36 +03:00
|
|
|
add-highlighter shared/sh/comment region '(?<!\$)(?<!\$\{)#' '$' fill comment
|
2019-01-17 11:58:53 +03:00
|
|
|
add-highlighter shared/sh/heredoc region -match-capture '<<-?''?(\w+)''?' '^\t*(\w+)$' fill string
|
2014-06-13 00:52:23 +04:00
|
|
|
|
2018-06-25 15:04:33 +03:00
|
|
|
add-highlighter shared/sh/double_string/fill fill string
|
2014-06-13 00:52:23 +04:00
|
|
|
|
2018-05-07 00:29:52 +03:00
|
|
|
evaluate-commands %sh{
|
2016-03-14 15:08:51 +03:00
|
|
|
# Grammar
|
2018-06-28 12:50:23 +03:00
|
|
|
keywords="alias bind builtin caller case cd command coproc declare do done
|
|
|
|
echo elif else enable esac exit fi for function help
|
|
|
|
if in let local logout mapfile printf read readarray
|
|
|
|
readonly return select set shift source test then
|
|
|
|
time type typeset ulimit unalias until while break continue"
|
|
|
|
|
2018-07-19 11:32:29 +03:00
|
|
|
join() { sep=$2; eval set -- $1; IFS="$sep"; echo "$*"; }
|
2016-03-14 15:08:51 +03:00
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
2019-04-10 06:54:19 +03:00
|
|
|
printf %s\\n "declare-option str-list sh_static_words $(join "${keywords}" ' ')"
|
2016-03-14 15:08:51 +03:00
|
|
|
|
|
|
|
# Highlight keywords
|
2018-06-28 14:08:58 +03:00
|
|
|
printf %s "add-highlighter shared/sh/code/ regex \b($(join "${keywords}" '|'))\b 0:keyword"
|
2016-03-14 15:08:51 +03:00
|
|
|
}
|
|
|
|
|
2018-06-25 15:04:33 +03:00
|
|
|
add-highlighter shared/sh/code/operators regex [\[\]\(\)&|]{1,2} 0:operator
|
|
|
|
add-highlighter shared/sh/code/variable regex (\w+)= 1:variable
|
|
|
|
add-highlighter shared/sh/code/function regex ^\h*(\w+)\h*\(\) 1:function
|
2014-06-13 00:52:23 +04:00
|
|
|
|
2019-03-26 05:04:31 +03:00
|
|
|
add-highlighter shared/sh/code/unscoped_expansion regex \$(\w+|#|@|\?|\$|!|-|\*) 0:value
|
2018-06-25 15:04:33 +03:00
|
|
|
add-highlighter shared/sh/double_string/expansion regex \$(\w+|\{.+?\}) 0:value
|
2013-01-08 17:01:22 +04:00
|
|
|
|
2019-03-13 08:24:33 +03:00
|
|
|
]
|