1" Vim syntax file 2" Language: bash 3" Maintainer: Bram 4" Last Change: 2019 Sep 27 5 6" quit when a syntax file was already loaded 7if exists("b:current_syntax") 8 finish 9endif 10 11" The actual syntax is in sh.vim and controlled by buffer-local variables. 12unlet! b:is_sh 13unlet! b:is_kornshell 14let b:is_bash = 1 15 16runtime! syntax/sh.vim 17 18let b:current_syntax = 'bash' 19 20" vim: ts=8 21