mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
11 lines
171 B
VimL
11 lines
171 B
VimL
|
packadd termdebug
|
||
|
|
||
|
function Debug()
|
||
|
!cd build && make
|
||
|
if v:shell_error == 0
|
||
|
TermdebugCommand build/looking-glass-client
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
command Debug call Debug()
|