aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/vim.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-12 20:45:58 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-12 20:45:58 +1300
commitf694cace8570f704118f8deae91b51bb0880b1c0 (patch)
treec0643cd7c649245c3f355629f5c9a94e464bf68e /vim/ftplugin/vim.vim
parentMerge branch 'feature/vim-plug-boilplate' into develop (diff)
parentAdd guards for presence of b:undo_* var (diff)
downloaddotfiles-f694cace8570f704118f8deae91b51bb0880b1c0.tar.gz
dotfiles-f694cace8570f704118f8deae91b51bb0880b1c0.zip
Merge branch 'feature/vim-struct' into develop
* feature/vim-struct: Add guards for presence of b:undo_* var Exclude SC1090 (failed source) shellcheck error Move lots of local Vim config into vim/after
Diffstat (limited to 'vim/ftplugin/vim.vim')
-rw-r--r--vim/ftplugin/vim.vim10
1 files changed, 0 insertions, 10 deletions
diff --git a/vim/ftplugin/vim.vim b/vim/ftplugin/vim.vim
deleted file mode 100644
index e8113134..00000000
--- a/vim/ftplugin/vim.vim
+++ /dev/null
@@ -1,10 +0,0 @@
-" Run `vint` over buffer
-" /dev/stdin is not optimal here; it's widely implemented, but not POSIX.
-" `vint` does not seem to have another way to parse standard input.
-nnoremap <buffer> <silent>
- \ <LocalLeader>l
- \ :<C-U>write !vint -s /dev/stdin<CR>
-
-" Unload this filetype plugin
-let b:undo_user_ftplugin
- \ = 'silent! nunmap <LocalLeader>l'