blob: f969ff0e2ece37da1efefae0410b4f7470e9f9b8 [file] [log] [blame]
Hugo Osvaldo Barrera' via vim_dev7cb24912024-12-18 17:52:48 +01001" Vim syntax file
2" Language: apkbuild
3" Maintainer: The Vim Project <https://github.com/vim/vim>
4" Last Change: 2024 Dec 22
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_bash b:is_kornshell
13let b:is_sh = 1
14
15runtime! syntax/sh.vim
16
17let b:current_syntax = 'apkbuild'