aboutsummaryrefslogtreecommitdiff
path: root/runtime/ftplugin/fstab.vim
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-01 21:56:01 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-01 22:29:03 -0400
commitc1dd4e83b494d19a5ebcb7ffb936cb4649f11637 (patch)
treecf945ae6c174d372c74497efa8baee2e7aeabc7f /runtime/ftplugin/fstab.vim
parentb1cd67b62e58c7f7d4139416e6813f8f50bc0fd6 (diff)
downloadrneovim-c1dd4e83b494d19a5ebcb7ffb936cb4649f11637.tar.gz
rneovim-c1dd4e83b494d19a5ebcb7ffb936cb4649f11637.tar.bz2
rneovim-c1dd4e83b494d19a5ebcb7ffb936cb4649f11637.zip
vim-patch:7e6a515ed14e
Update runtime files. https://github.com/vim/vim/commit/7e6a515ed14e204fafb3dd6e98f2fb543e64aedd Omit vim9.
Diffstat (limited to 'runtime/ftplugin/fstab.vim')
-rw-r--r--runtime/ftplugin/fstab.vim19
1 files changed, 19 insertions, 0 deletions
diff --git a/runtime/ftplugin/fstab.vim b/runtime/ftplugin/fstab.vim
new file mode 100644
index 0000000000..3e7af9fb30
--- /dev/null
+++ b/runtime/ftplugin/fstab.vim
@@ -0,0 +1,19 @@
+" Vim ftplugin file
+" Language: fstab file
+" Maintainer: Radu Dineiu <radu.dineiu@gmail.com>
+" URL: https://raw.github.com/rid9/vim-fstab/master/ftplugin/fstab.vim
+" Last Change: 2020 Dec 29
+" Version: 1.0
+"
+" Credits:
+" Subhaditya Nath <sn03.general@gmail.com>
+
+if exists("b:did_ftplugin")
+ finish
+endif
+let b:did_ftplugin = 1
+
+setlocal commentstring=#%s
+let b:undo_ftplugin = "setlocal commentstring<"
+
+" vim: ts=8 ft=vim \ No newline at end of file