diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-06 18:54:19 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-06 18:54:19 +0200 |
commit | bc9757916ed09763d96283ee62dbed58bd713a11 (patch) | |
tree | 07fbb58e9a4f4cbf5206d89f61e4d570e64d2c1a /syntax/libao.vim | |
parent | c6fa4d2bf5eb5301f4d3f123031cf34839a5508d (diff) | |
download | vim-polyglot-bc9757916ed09763d96283ee62dbed58bd713a11.tar.gz vim-polyglot-bc9757916ed09763d96283ee62dbed58bd713a11.zip |
Add all vim filetypes
Diffstat (limited to 'syntax/libao.vim')
-rw-r--r-- | syntax/libao.vim | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/syntax/libao.vim b/syntax/libao.vim new file mode 100644 index 00000000..01ad1dd5 --- /dev/null +++ b/syntax/libao.vim @@ -0,0 +1,31 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'libao') == -1 + +" Vim syntax file +" Language: libao.conf(5) configuration file +" Previous Maintainer: Nikolai Weibull <now@bitwi.se> +" Latest Revision: 2006-04-19 + +if exists("b:current_syntax") + finish +endif + +let s:cpo_save = &cpo +set cpo&vim + +syn keyword libaoTodo contained TODO FIXME XXX NOTE + +syn region libaoComment display oneline start='^\s*#' end='$' + \ contains=libaoTodo,@Spell + +syn keyword libaoKeyword default_driver + +hi def link libaoTodo Todo +hi def link libaoComment Comment +hi def link libaoKeyword Keyword + +let b:current_syntax = "libao" + +let &cpo = s:cpo_save +unlet s:cpo_save + +endif |