2017-11-03 04:18:58 +01:00
|
|
|
hook global BufCreate .*\.(z|ba|c|k|mk)?sh(rc|_profile)? %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype sh
|
2013-01-08 14:01:22 +01:00
|
|
|
}
|
|
|
|
|
2019-03-13 06:24:33 +01:00
|
|
|
hook -once global BufSetOption filetype=sh %{
|
|
|
|
require-module sh
|
|
|
|
}
|
|
|
|
|
|
|
|
provide-module sh %[
|
|
|
|
|
2018-06-28 11:50:23 +02:00
|
|
|
add-highlighter shared/sh regions
|
|
|
|
add-highlighter shared/sh/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/sh/double_string region %{(?<!\\)(?:\\\\)*\K"} %{(?<!\\)(?:\\\\)*"} group
|
|
|
|
add-highlighter shared/sh/single_string region %{(?<!\\)(?:\\\\)*\K'} %{'} fill string
|
2019-03-26 03:04:31 +01:00
|
|
|
add-highlighter shared/sh/expansion region '\$\{' '\}|\n' fill value
|
2019-01-11 00:02:36 +01:00
|
|
|
add-highlighter shared/sh/comment region '(?<!\$)(?<!\$\{)#' '$' fill comment
|
2019-01-17 09:58:53 +01:00
|
|
|
add-highlighter shared/sh/heredoc region -match-capture '<<-?''?(\w+)''?' '^\t*(\w+)$' fill string
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2018-06-25 14:04:33 +02:00
|
|
|
add-highlighter shared/sh/double_string/fill fill string
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2016-03-14 13:08:51 +01:00
|
|
|
# Grammar
|
2018-06-28 11:50:23 +02: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 10:32:29 +02:00
|
|
|
join() { sep=$2; eval set -- $1; IFS="$sep"; echo "$*"; }
|
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 %{
|
2018-06-28 11:50:23 +02:00
|
|
|
set-option window static_words $(join "${keywords}" ' ')
|
|
|
|
}"
|
2016-03-14 13:08:51 +01:00
|
|
|
|
|
|
|
# Highlight keywords
|
2018-06-28 13:08:58 +02:00
|
|
|
printf %s "add-highlighter shared/sh/code/ regex \b($(join "${keywords}" '|'))\b 0:keyword"
|
2016-03-14 13:08:51 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 14:04:33 +02: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-12 22:52:23 +02:00
|
|
|
|
2019-03-26 03:04:31 +01:00
|
|
|
add-highlighter shared/sh/code/unscoped_expansion regex \$(\w+|#|@|\?|\$|!|-|\*) 0:value
|
2018-06-25 14:04:33 +02:00
|
|
|
add-highlighter shared/sh/double_string/expansion regex \$(\w+|\{.+?\}) 0:value
|
2013-01-08 14:01:22 +01:00
|
|
|
|
2018-11-28 10:39:07 +01:00
|
|
|
hook -group sh-highlight global WinSetOption filetype=sh %{
|
|
|
|
add-highlighter window/sh ref sh
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/sh }
|
2018-11-28 10:39:07 +01:00
|
|
|
}
|
2019-03-13 06:24:33 +01:00
|
|
|
|
|
|
|
]
|