LookingGlass/client/.vimrc

11 lines
171 B
VimL
Raw Normal View History

2019-03-28 00:02:36 +00:00
packadd termdebug
function Debug()
!cd build && make
if v:shell_error == 0
TermdebugCommand build/looking-glass-client
endif
endfunction
command Debug call Debug()