Emmanuel BENOîT
b0647949f8
* Shortcut changes to make the Leader-based shortcuts easier to use * Install vim-which-key * Style fixes and changes * Reorganised some of the settings
6 lines
195 B
VimL
6 lines
195 B
VimL
" Make sure :Man is loaded, and map it. Also, remove the default mapping.
|
|
if exists( ':Man' ) != 2
|
|
source $VIMRUNTIME/ftplugin/man.vim
|
|
endif
|
|
unmap <Leader>K
|
|
nnoremap <Leader>hm :Man <cword><cr>
|