diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2019-05-07 16:17:30 +0200 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-05-07 16:17:56 +0200 | 
| commit | aebef2c2e76b88384b1121c237c965e8cf8b3bcb (patch) | |
| tree | 98c685630547630cfadffb487a0cf90b7abbb710 /autoload/go | |
| parent | e8245dbf1746aa59774124de1c77ffc4d8b5b52f (diff) | |
| download | vim-polyglot-aebef2c2e76b88384b1121c237c965e8cf8b3bcb.tar.gz vim-polyglot-aebef2c2e76b88384b1121c237c965e8cf8b3bcb.zip | |
Update
Diffstat (limited to '')
| -rw-r--r-- | autoload/go/config.vim | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/autoload/go/config.vim b/autoload/go/config.vim index 4a9c149a..7f243d09 100644 --- a/autoload/go/config.vim +++ b/autoload/go/config.vim @@ -470,6 +470,10 @@ function! go#config#EchoGoInfo() abort    return get(g:, "go_echo_go_info", 1)  endfunction +function! go#config#CodeCompletionEnabled() abort +  return get(g:, "go_code_completion_enabled", 1) +endfunction +  " Set the default value. A value of "1" is a shortcut for this, for  " compatibility reasons.  if exists("g:go_gorename_prefill") && g:go_gorename_prefill == 1 | 
