diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-27 19:34:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-27 19:34:08 +0200 |
commit | 5be4ceecea5520265066eac972460ebb1cdf05e7 (patch) | |
tree | 818c9471879de5c5fb956c21f125cc8de9a42341 /runtime/indent/bash.vim | |
parent | a7f6c3cf071bb6267e0bd2eb3d27ca240381ba87 (diff) | |
download | vim-git-5be4ceecea5520265066eac972460ebb1cdf05e7.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/indent/bash.vim')
-rw-r--r-- | runtime/indent/bash.vim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/runtime/indent/bash.vim b/runtime/indent/bash.vim new file mode 100644 index 000000000..b91640687 --- /dev/null +++ b/runtime/indent/bash.vim @@ -0,0 +1,18 @@ +" Vim indent file +" Language: bash +" Maintainer: Bram +" Last Change: 2019 Sep 27 + +" Only load this indent file when no other was loaded. +if exists("b:did_indent") + finish +endif + +" The actual indenting is in sh.vim and controlled by buffer-local variables. +unlet! b:is_sh +unlet! b:is_kornshell +let b:is_bash = 1 + +runtime! indent/sh.vim + +" vim: ts=8 |