neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

apkbuild.vim (399B)


      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'