You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect g:go_highlight_methods to highlight method names, g:go_highlight_function to highlight functions names.
Instead of that
g:go_highlight_methods=1; g:go_highlight_functions=0 highlights method invocations only
g:go_highlight_functions=1 highlights method names, function names, methods invocations and g:go_highlight_methods doesn't matter in this case
Is there any way to highlight only function/method names, not method invocations? In the screenshot above I would expect mymethod and main to be highlighted, while Println to remain white
Steps to reproduce:
open .go file
set g:go_highlight_function=1/0, g:go_highlight_methods=1/0
Behavior
I would expect
g:go_highlight_methods
to highlight method names,g:go_highlight_function
to highlight functions names.Instead of that
g:go_highlight_methods=1; g:go_highlight_functions=0
highlights method invocations onlyg:go_highlight_functions=1
highlights method names, function names, methods invocations andg:go_highlight_methods
doesn't matter in this caseIs there any way to highlight only function/method names, not method invocations? In the screenshot above I would expect
mymethod
andmain
to be highlighted, whilePrintln
to remain whiteSteps to reproduce:
Configuration
vimrc
you used to reproduce:full: https://github.com/alexbyk/rcfiles/blob/master/vimrc
minimal: https://gist.github.com/alexbyk/b7023c32f304f055558c8ccb00efc871
The text was updated successfully, but these errors were encountered: