Emmanuel BENOîT
be99bfda32
Don't load plugins based on keyboard shortcuts, as this conflicts with vim-which-key. Instead, create shortcuts when plugins are declared, and load them when the commands they provide are used.
6 lines
144 B
VimL
6 lines
144 B
VimL
call dein#add('mbbill/undotree', #{
|
|
\ lazy: 1 ,
|
|
\ on_cmd: [ 'UndotreeShow', 'UndotreeToggle' ],
|
|
\ })
|
|
|
|
nnoremap <Leader>u :UndotreeToggle<CR>
|