Skip to content

Commit

Permalink
Update Go layer to reflect vim-go var name change
Browse files Browse the repository at this point in the history
vim-go renamed go_highlight_methods to go_highlight_function_calls
recently to address confusion with the way the existing variable names
behaved [1]. This change will re-enable the higlighting of function and
method _invocations_.

[1] fatih/vim-go#1557 (comment)
  • Loading branch information
pkazmier committed May 12, 2018
1 parent 2d23656 commit 9a6f4c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/SpaceVim/layers/lang/go.vim
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ endfunction

function! SpaceVim#layers#lang#go#config() abort
let g:go_highlight_functions = 1
let g:go_highlight_methods = 1
let g:go_highlight_function_calls = 1
let g:go_highlight_structs = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
Expand Down

0 comments on commit 9a6f4c8

Please sign in to comment.