When we're using ctags
in vim
and want to go to particular definition of variable or function we press ctrl + ]
, when we want to go back we press ctrl + T
.
When we want to autocomplete a name of a variable we press ctrl + N
and from a little violet window we can choose the right word.
Is it possible to improve go to definition
so that we won't jump in the document, but only the little window with the function or variable definition will appear?
thank you
:set completeopt+=preview
? – Orthotropousgo to definition
when I pressctrl + ]
– PrerecordCtrl-W
followed by}
instead ofCtrl-]
. – Orthotropousctrl+N
while doing autocompletion. – Prerecord