Use full command names
This commit is contained in:
parent
9c47e1b243
commit
876af0d1c2
@ -307,13 +307,13 @@ let s:currentline_text = get(g:, 'vebugger_currentline_text', '**')
|
|||||||
if hlexists("DebuggedLine")
|
if hlexists("DebuggedLine")
|
||||||
sign define vebugger_current linehl=DebuggedLine
|
sign define vebugger_current linehl=DebuggedLine
|
||||||
else
|
else
|
||||||
exe 'sign define vebugger_current text=' . s:currentline_text
|
execute 'sign define vebugger_current text=' . s:currentline_text
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if hlexists('BreakPoint')
|
if hlexists('BreakPoint')
|
||||||
exe 'sign define vebugger_breakpoint text=' . s:breakpoint_text . ' linehl=BreakPoint texthl=BreakPoint'
|
execute 'sign define vebugger_breakpoint text=' . s:breakpoint_text . ' linehl=BreakPoint texthl=BreakPoint'
|
||||||
else
|
else
|
||||||
exe 'sign define vebugger_breakpoint text=' . s:breakpoint_text . ' linehl=ColorColumn texthl=ColorColumn'
|
execute 'sign define vebugger_breakpoint text=' . s:breakpoint_text . ' linehl=ColorColumn texthl=ColorColumn'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
"Update all the marks(currently executed line and breakpoints) for a file
|
"Update all the marks(currently executed line and breakpoints) for a file
|
||||||
|
Loading…
Reference in New Issue
Block a user