Hugo Osvaldo Barrera' via vim_dev | 7cb2491 | 2024-12-18 17:52:48 +0100 | [diff] [blame] | 1 | " 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 | ||||
7 | if exists("b:current_syntax") | ||||
8 | finish | ||||
9 | endif | ||||
10 | |||||
11 | " The actual syntax is in sh.vim and controlled by buffer-local variables. | ||||
12 | unlet! b:is_bash b:is_kornshell | ||||
13 | let b:is_sh = 1 | ||||
14 | |||||
15 | runtime! syntax/sh.vim | ||||
16 | |||||
17 | let b:current_syntax = 'apkbuild' |