blob: 1e565c302280698e1aae3b3d9e1da9f00110f152 [file] [log] [blame]
Bram Moolenaar5be4cee2019-09-27 19:34:08 +02001" Vim syntax file
2" Language: bash
Christian Brabandte8d6f032023-08-23 20:23:07 +01003" Maintainer: The Vim Project <https://github.com/vim/vim>
4" Last Change: 2023 Aug 13
Bram Moolenaar5be4cee2019-09-27 19:34:08 +02005
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