diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-22 23:08:48 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:27 -0400 |
commit | b1fed1ada9635f762cb9b3a7f2fe38df6f166df4 (patch) | |
tree | 902105afdb2ab3b400d7a1f503063a923a420d44 /runtime/syntax/bash.vim | |
parent | 766a10783982936da8f1eaf61280338fcd85019a (diff) | |
download | rneovim-b1fed1ada9635f762cb9b3a7f2fe38df6f166df4.tar.gz rneovim-b1fed1ada9635f762cb9b3a7f2fe38df6f166df4.tar.bz2 rneovim-b1fed1ada9635f762cb9b3a7f2fe38df6f166df4.zip |
vim-patch:5be4ceecea55
Update runtime files.
https://github.com/vim/vim/commit/5be4ceecea5520265066eac972460ebb1cdf05e7
Diffstat (limited to 'runtime/syntax/bash.vim')
-rw-r--r-- | runtime/syntax/bash.vim | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/runtime/syntax/bash.vim b/runtime/syntax/bash.vim new file mode 100644 index 0000000000..75ab99938e --- /dev/null +++ b/runtime/syntax/bash.vim @@ -0,0 +1,20 @@ +" Vim syntax file +" Language: bash +" Maintainer: Bram +" Last Change: 2019 Sep 27 + +" quit when a syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +" The actual syntax is in sh.vim and controlled by buffer-local variables. +unlet! b:is_sh +unlet! b:is_kornshell +let b:is_bash = 1 + +runtime! syntax/sh.vim + +let b:current_syntax = 'bash' + +" vim: ts=8 |