1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 02:40:05 +08:00

Update Go layer to reflect vim-go var name change

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] https://github.com/fatih/vim-go/pull/1557#issuecomment-357498784
This commit is contained in:
Pete Kazmier 2018-05-12 09:39:59 -05:00
parent 2d2365619c
commit 9a6f4c844e

View File

@ -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