Fixes issue #13 by defining a color group called BreakPoint. By default it reverses the color scheme for term, cterm, and gui

This commit is contained in:
Kevin Brandon 2015-04-11 02:10:03 -07:00
parent f98c830b82
commit bc0c05713d

View File

@ -235,8 +235,10 @@ function! s:standardCloseHandlers.removeCurrentMarker(debugger) dict
sign unplace 1
endfunction
highlight BreakPoint term=reverse cterm=reverse gui=reverse
sign define vebugger_current text=->
sign define vebugger_breakpoint text=** linehl=ColorColumn
sign define vebugger_breakpoint text=** linehl=BreakPoint
"Update all the marks(currently executed line and breakpoints) for a file
function! vebugger#std#updateMarksForFile(state,filename)