File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -1440,6 +1440,13 @@ the `hello_world.go` file is used.
1440
1440
The default is: >
1441
1441
1442
1442
let g:go_decls_includes = 'func,type'
1443
+ <
1444
+ *'g:go_echo_go_info'*
1445
+
1446
+ Use this option to show the identifier information when completion is done. By
1447
+ default it's enabled >
1448
+
1449
+ let g:go_echo_go_info = 1
1443
1450
<
1444
1451
==============================================================================
1445
1452
TROUBLESHOOTING *go-troubleshooting*
Original file line number Diff line number Diff line change @@ -126,6 +126,10 @@ endfunction
126
126
" ============================================================================
127
127
"
128
128
function ! s: echo_go_info ()
129
+ if get (g: , " go_echo_go_info" , 0 )
130
+ return
131
+ endif
132
+
129
133
if ! exists (' v:completed_item' ) || empty (v: completed_item )
130
134
return
131
135
endif
You can’t perform that action at this time.
0 commit comments