aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/vim.vim
blob: e023553e4963c16f46366fbab4eb98e334a712f9 (plain) (blame)
1
2
3
4
5
" 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
      \ :write !vint -s /dev/stdin<CR>