bash.vim 350 B

12345678910111213141516171819
  1. " Vim indent file
  2. " Language: bash
  3. " Maintainer: Bram
  4. " Last Change: 2019 Sep 27
  5. " Only load this indent file when no other was loaded.
  6. if exists("b:did_indent")
  7. finish
  8. endif
  9. " The actual indenting is in sh.vim and controlled by buffer-local variables.
  10. unlet! b:is_sh
  11. unlet! b:is_kornshell
  12. let b:is_bash = 1
  13. runtime! indent/sh.vim
  14. " vim: ts=8