aboutsummaryrefslogtreecommitdiff
path: root/vim/after
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-04 19:14:38 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-04 19:14:38 +1200
commitc51af5740bca34da385ef807580f820313b6c358 (patch)
tree24f813c46230c15fcf4627128dae4a21b4517dd8 /vim/after
parentClear markdown_autoformat.vim autocmds correctly (diff)
downloaddotfiles-c51af5740bca34da385ef807580f820313b6c358.tar.gz
dotfiles-c51af5740bca34da385ef807580f820313b6c358.zip
Use case-insensitive Vim ==#
Diffstat (limited to 'vim/after')
-rw-r--r--vim/after/ftplugin/html/lint.vim2
-rw-r--r--vim/after/ftplugin/html/tidy.vim2
-rw-r--r--vim/after/ftplugin/html/url_link.vim2
3 files changed, 3 insertions, 3 deletions
diff --git a/vim/after/ftplugin/html/lint.vim b/vim/after/ftplugin/html/lint.vim
index 21f2a72c..b24b18c9 100644
--- a/vim/after/ftplugin/html/lint.vim
+++ b/vim/after/ftplugin/html/lint.vim
@@ -4,7 +4,7 @@
if exists('b:did_ftplugin_html_lint') || &compatible
finish
endif
-if &filetype == 'markdown'
+if &filetype ==# 'markdown'
finish
endif
let b:did_ftplugin_html_lint = 1
diff --git a/vim/after/ftplugin/html/tidy.vim b/vim/after/ftplugin/html/tidy.vim
index 270e54e2..6e612feb 100644
--- a/vim/after/ftplugin/html/tidy.vim
+++ b/vim/after/ftplugin/html/tidy.vim
@@ -4,7 +4,7 @@
if exists('b:did_ftplugin_html_tidy') || &compatible
finish
endif
-if &filetype == 'markdown'
+if &filetype ==# 'markdown'
finish
endif
let b:did_ftplugin_html_tidy = 1
diff --git a/vim/after/ftplugin/html/url_link.vim b/vim/after/ftplugin/html/url_link.vim
index 4102e768..2e600b5e 100644
--- a/vim/after/ftplugin/html/url_link.vim
+++ b/vim/after/ftplugin/html/url_link.vim
@@ -4,7 +4,7 @@
if exists('b:did_ftplugin_html_url_link') || &compatible
finish
endif
-if &filetype == 'markdown'
+if &filetype ==# 'markdown'
finish
endif
let b:did_ftplugin_html_url_link = 1