1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 20:30:05 +08:00

Fix #667. fix the mapping error and some command error.

But I don't found the `Missing: endfor` and `Missing: endif` error.
This commit is contained in:
tenfy 2017-06-26 13:13:50 +08:00
parent 3f9c3dd5ee
commit 3e9f091f70
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ function! SpaceVim#layers#tools#config() abort
if maparg('<C-l>', 'n') ==# ''
nnoremap <silent> <C-l> <Esc>:Ydc<CR>
endif
map <unique> <Leader>td <Plug>TaskList
map <Leader>td <Plug>TaskList
noremap <silent> <F8> :TlistToggle<CR>
function! OpenOrCloseNERDTree() abort
exec 'normal! A'

View File

@ -3,6 +3,6 @@
" defined already.
command! DiffOrig vert new | set bt=nofile | r # | 0d_ | diffthis
\ | wincmd p | diffthis
command -nargs=* -complete=custom,zvim#util#complete_plugs Plugin :call zvim#util#Plugin(<f-args>)
command! -nargs=* -complete=custom,zvim#util#complete_plugs Plugin :call zvim#util#Plugin(<f-args>)
"command for open project
command -nargs=+ -complete=custom,zvim#util#complete_project OpenProject :call zvim#util#OpenProject(<f-args>)
command! -nargs=+ -complete=custom,zvim#util#complete_project OpenProject :call zvim#util#OpenProject(<f-args>)