mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:00:04 +08:00
3e9f091f70
But I don't found the `Missing: endfor` and `Missing: endif` error.
9 lines
516 B
VimL
9 lines
516 B
VimL
" Convenient command to see the difference between the current buffer and the
|
|
" file it was loaded from, thus the changes you made. Only define it when not
|
|
" 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 for open project
|
|
command! -nargs=+ -complete=custom,zvim#util#complete_project OpenProject :call zvim#util#OpenProject(<f-args>)
|