mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 02:30:03 +08:00
Fix #361
This commit is contained in:
parent
4d5e513628
commit
eb693b82a3
@ -60,8 +60,12 @@ function! SpaceVim#layers#tools#config() abort
|
||||
" List of colors that you do not want. ANSI code or #RRGGBB
|
||||
let g:rainbow#blacklist = [233, 234]
|
||||
nnoremap <Leader>fz :FZF<CR>
|
||||
vnoremap <silent> <C-l> <Esc>:Ydv<CR>
|
||||
nnoremap <silent> <C-l> <Esc>:Ydc<CR>
|
||||
if maparg('<C-l>', 'v') == ''
|
||||
vnoremap <silent> <C-l> <Esc>:Ydv<CR>
|
||||
endif
|
||||
if maparg('<C-l>', 'n') == ''
|
||||
nnoremap <silent> <C-l> <Esc>:Ydc<CR>
|
||||
endif
|
||||
map <unique> <Leader>td <Plug>TaskList
|
||||
noremap <silent> <F8> :TlistToggle<CR>
|
||||
function! OpenOrCloseNERDTree() abort
|
||||
|
Loading…
Reference in New Issue
Block a user