diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-12-07 17:39:31 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-12-07 17:39:31 +0100 |
commit | 4d8423c962e2b4172de48992bcfec965478f928b (patch) | |
tree | def9075bf938101360a834f872f1e131aabfeb3e /ftplugin/vlang.vim | |
parent | e204a7223b4334ed1c556a4564a8048888b69fe8 (diff) | |
download | vim-polyglot-4.1.3.tar.gz vim-polyglot-4.1.3.zip |
Add v language, closes #437v4.1.3
Diffstat (limited to 'ftplugin/vlang.vim')
-rw-r--r-- | ftplugin/vlang.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ftplugin/vlang.vim b/ftplugin/vlang.vim new file mode 100644 index 00000000..0aafeac5 --- /dev/null +++ b/ftplugin/vlang.vim @@ -0,0 +1,6 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'v') == -1 + +setlocal commentstring=//\ %s +setlocal makeprg=v\ % + +endif |