aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/vim.vim
diff options
context:
space:
mode:
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'