File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -489,8 +489,8 @@ function! go#config#HighlightDebug() abort
489
489
return get (g: , ' go_highlight_debug' , 1 )
490
490
endfunction
491
491
492
- function ! go#config#DebugBreakpointSymbol () abort
493
- return get (g: , ' go_debug_breakpoint_symbol ' , ' >' )
492
+ function ! go#config#DebugBreakpointSignText () abort
493
+ return get (g: , ' go_debug_breakpoint_sign_text ' , ' >' )
494
494
endfunction
495
495
496
496
function ! go#config#FoldEnable (... ) abort
Original file line number Diff line number Diff line change @@ -1116,7 +1116,7 @@ function! s:list_breakpoints()
1116
1116
return l: signs
1117
1117
endfunction
1118
1118
1119
- exe ' sign define godebugbreakpoint text=' .go#config#DebugBreakpointSymbol ().' texthl=GoDebugBreakpoint'
1119
+ exe ' sign define godebugbreakpoint text=' .go#config#DebugBreakpointSignText ().' texthl=GoDebugBreakpoint'
1120
1120
sign define godebugcurline text== texthl= GoDebugCurrent linehl= GoDebugCurrent
1121
1121
1122
1122
" restore Vi compatibility settings
Original file line number Diff line number Diff line change @@ -2333,12 +2333,12 @@ Highlight the current line and breakpoints in the debugger.
2333
2333
let g:go_highlight_debug = 1
2334
2334
<
2335
2335
2336
- *'go:go_debug_breakpoint_symbol '*
2336
+ *'go:go_debug_breakpoint_sign_text '*
2337
2337
2338
- Set the symbol used for breakpints in the debugger. By default it's '>'.
2338
+ Set the sign text used for breakpoints in the debugger. By default it's '>'.
2339
2339
2340
2340
>
2341
- let g:go_debug_breakpoint_symbol = '>'
2341
+ let g:go_debug_breakpoint_sign_text = '>'
2342
2342
<
2343
2343
2344
2344
==============================================================================
You can’t perform that action at this time.
0 commit comments