Merge pull request #45 from daltonmatos/feature/hightlight-current-debugged-line

Highlight current executed line (bg=red fg=white)
This commit is contained in:
Idan Arye 2017-10-17 21:51:57 +03:00 committed by GitHub
commit f2b00c8c61

View File

@ -300,7 +300,12 @@ function! s:standardCloseHandlers.removeCurrentMarker(debugger) dict
sign unplace 1 sign unplace 1
endfunction endfunction
sign define vebugger_current text=->
if hlexists("DebuggedLine")
sign define vebugger_current linehl=DebuggedLine
else
sign define vebugger_current text=->
endif
if hlexists('BreakPoint') if hlexists('BreakPoint')
sign define vebugger_breakpoint text=** linehl=BreakPoint texthl=BreakPoint sign define vebugger_breakpoint text=** linehl=BreakPoint texthl=BreakPoint