aboutsummaryrefslogtreecommitdiff
path: root/vim/filemap.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-28 11:10:26 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-28 11:10:26 +1200
commit8260fb5bd8b09ed203b991a42f573a740d696f51 (patch)
tree27638201208a60583441776a844d8edb9b2e29f9 /vim/filemap.vim
parentMerge branch 'release/v1.6.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-c74479d0306faef06165a9fadb0a3b9ae1270da1.tar.gz (sig)
dotfiles-c74479d0306faef06165a9fadb0a3b9ae1270da1.zip
Merge branch 'release/v1.7.0'v1.7.0
* release/v1.7.0: Bump VERSION Rearrange .gitmodules a bit Add and configure make_target.vim ftplugin Update two Vim plugins Revise .vimrc header comment Move digraphs to more sensible location Adjust comment formatting Add `nbsp` flag to 'listchars' if supported Set 'laststatus' back to 1 in Neovim Don't load matchit.vim package if using Neovim Restore 'esckeys' option existence check
Diffstat (limited to 'vim/filemap.vim')
-rw-r--r--vim/filemap.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/vim/filemap.vim b/vim/filemap.vim
index bbbf1955..d20a2037 100644
--- a/vim/filemap.vim
+++ b/vim/filemap.vim
@@ -25,6 +25,10 @@ augroup filetypemap
\|nmap <buffer> <LocalLeader>r <Plug>HtmlUrlLink
\|nmap <buffer> <LocalLeader>t <Plug>HtmlTidy
+ " Makefile: make target
+ autocmd FileType make
+ \ nmap <buffer> <LocalLeader>m <Plug>MakeTarget
+
" Perl: check, lint, and tidy
autocmd FileType perl
\ nmap <buffer> <LocalLeader>c <Plug>PerlCheck