summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/asm.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-07 21:07:18 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-07 21:07:18 +0200
commitacc224064033e5cea21ef7f1eefb356ca06ff11d (patch)
treebb447a8591e335b0bec96a43a7c8fa5774d741df /runtime/ftplugin/asm.vim
parentdf44a27b53586fccfc6a3aedc89061fdd9a515ff (diff)
Update runtime files
Diffstat (limited to 'runtime/ftplugin/asm.vim')
-rw-r--r--runtime/ftplugin/asm.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/ftplugin/asm.vim b/runtime/ftplugin/asm.vim
new file mode 100644
index 0000000000..0914bf634a
--- /dev/null
+++ b/runtime/ftplugin/asm.vim
@@ -0,0 +1,11 @@
+" Vim filetype plugin file
+" Language: asm
+" Maintainer: Colin Caine <cmcaine at the common googlemail domain>
+" Last Changed: 23 May 2020
+
+if exists("b:did_ftplugin") | finish | endif
+
+setl comments=:;,s1:/*,mb:*,ex:*/,://
+setl commentstring=;%s
+
+let b:did_ftplugin = 1