aboutsummaryrefslogtreecommitdiff
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-04-28 08:39:30 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-04-28 21:29:57 -0400
commit565783be4b42ec8cf2d24543b7d501499c6a1091 (patch)
tree1f80eb628fdc0aa84d75d765e7830a8cf5114f44 /runtime/ftplugin
parent04a4bbbe56fd6cbc164730cb9beab4ec6fefe3b0 (diff)
downloadrneovim-565783be4b42ec8cf2d24543b7d501499c6a1091.tar.gz
rneovim-565783be4b42ec8cf2d24543b7d501499c6a1091.tar.bz2
rneovim-565783be4b42ec8cf2d24543b7d501499c6a1091.zip
vim-patch:acc224064033
Update runtime files https://github.com/vim/vim/commit/acc224064033e5cea21ef7f1eefb356ca06ff11d Omit 'quickfixtextfunc'. Omit ftplugin/man.vim.
Diffstat (limited to 'runtime/ftplugin')
-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