aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/make.vim
blob: 353a0bbf0e6f891b8cf3042f919fa33617691fce (plain) (blame)
1
2
3
4
5
6
7
8
" Stop here if the user doesn't want ftplugin mappings
if exists('g:no_plugin_maps') || exists('g:no_make_maps')
  finish
endif

" Set mappings
nmap <buffer> <LocalLeader>m <Plug>(MakeTarget)
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>m'