blob: 75ab99938e9ae9c9cf650717a594123b70b49784 [file] [log] [blame]
Bram Moolenaar5be4cee2019-09-27 19:34:08 +02001" 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