rc modeline: Support spelling language options

This commit is contained in:
Frank LENORMAND 2019-11-08 17:56:36 +01:00
parent be8d0e6726
commit a7bf625236

View File

@ -34,6 +34,7 @@ define-command -hidden modeline-parse-impl %{
ft|filetype) tr="filetype ${value}";; ft|filetype) tr="filetype ${value}";;
bomb) tr="BOM utf8";; bomb) tr="BOM utf8";;
nobomb) tr="BOM none";; nobomb) tr="BOM none";;
spelllang|spl) tr="spell_lang ${value%%,*}";;
*) printf %s\\n "echo -debug 'Unsupported vim variable: ${key}'";; *) printf %s\\n "echo -debug 'Unsupported vim variable: ${key}'";;
esac esac
@ -46,7 +47,7 @@ define-command -hidden modeline-parse-impl %{
readonly value="$2" readonly value="$2"
case "${key}" in case "${key}" in
scrolloff|tabstop|indentwidth|autowrap_column|eolformat|filetype|BOM);; scrolloff|tabstop|indentwidth|autowrap_column|eolformat|filetype|BOM|spell_lang);;
*) printf %s\\n "echo -debug 'Unsupported kakoune variable: ${key}'" *) printf %s\\n "echo -debug 'Unsupported kakoune variable: ${key}'"
return;; return;;
esac esac