aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-29 22:17:34 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-29 23:20:47 +1300
commitda5f6cc79e233f3241bd47a862769f8c438c5986 (patch)
tree517e398e76bc023f808ff6465252dbf1e37288c8 /vim
parentAdjust a vimrc comment for clarity (diff)
downloaddotfiles-da5f6cc79e233f3241bd47a862769f8c438c5986.tar.gz
dotfiles-da5f6cc79e233f3241bd47a862769f8c438c5986.zip
Set b:did_ftplugin flag in Vim ftplugins
Diffstat (limited to 'vim')
-rw-r--r--vim/ftplugin/awk.vim1
-rw-r--r--vim/ftplugin/csv.vim1
-rw-r--r--vim/ftplugin/password.vim1
-rw-r--r--vim/ftplugin/sed.vim1
-rw-r--r--vim/ftplugin/tmux.vim1
-rw-r--r--vim/ftplugin/tsv.vim1
6 files changed, 6 insertions, 0 deletions
diff --git a/vim/ftplugin/awk.vim b/vim/ftplugin/awk.vim
index 350bc976..9627941d 100644
--- a/vim/ftplugin/awk.vim
+++ b/vim/ftplugin/awk.vim
@@ -2,6 +2,7 @@
if exists('b:did_ftplugin')
finish
endif
+let b:did_ftplugin = 1
" Set comment formats
setlocal comments=:#
diff --git a/vim/ftplugin/csv.vim b/vim/ftplugin/csv.vim
index 58edfffe..162da402 100644
--- a/vim/ftplugin/csv.vim
+++ b/vim/ftplugin/csv.vim
@@ -2,6 +2,7 @@
if exists('b:did_ftplugin')
finish
endif
+let b:did_ftplugin = 1
" No autoformatting, literal tabs
setlocal noautoindent
diff --git a/vim/ftplugin/password.vim b/vim/ftplugin/password.vim
index 04658423..28f5a5e9 100644
--- a/vim/ftplugin/password.vim
+++ b/vim/ftplugin/password.vim
@@ -2,6 +2,7 @@
if exists('b:did_ftplugin')
finish
endif
+let b:did_ftplugin = 1
" No autoformatting
setlocal formatoptions=
diff --git a/vim/ftplugin/sed.vim b/vim/ftplugin/sed.vim
index 350bc976..9627941d 100644
--- a/vim/ftplugin/sed.vim
+++ b/vim/ftplugin/sed.vim
@@ -2,6 +2,7 @@
if exists('b:did_ftplugin')
finish
endif
+let b:did_ftplugin = 1
" Set comment formats
setlocal comments=:#
diff --git a/vim/ftplugin/tmux.vim b/vim/ftplugin/tmux.vim
index 350bc976..9627941d 100644
--- a/vim/ftplugin/tmux.vim
+++ b/vim/ftplugin/tmux.vim
@@ -2,6 +2,7 @@
if exists('b:did_ftplugin')
finish
endif
+let b:did_ftplugin = 1
" Set comment formats
setlocal comments=:#
diff --git a/vim/ftplugin/tsv.vim b/vim/ftplugin/tsv.vim
index 58edfffe..162da402 100644
--- a/vim/ftplugin/tsv.vim
+++ b/vim/ftplugin/tsv.vim
@@ -2,6 +2,7 @@
if exists('b:did_ftplugin')
finish
endif
+let b:did_ftplugin = 1
" No autoformatting, literal tabs
setlocal noautoindent