Currently, I have integrated the Tsuquyomi plugin for my typescript
development in Vim. The documentation mentions tooltips for symbols under the cursor, which are working fine.
The issue arises as I am using terminal-based Vim, and even if I were using a GUI version like GVim, I do not normally utilize the mouse while coding. The plugin offers a solution for terminal users by adding a specific line to the .vimrc
:
autocmd FileType typescript nmap <buffer> <Leader>t : <C-u>echo tsuquyomi#hint()<CR>
I followed these instructions, but I haven't noticed any change. Being new to Vim, I am unsure of how this line functions or how to use tooltips within the terminal environment.
Do I need to press a key combination to trigger the tooltip for the symbol under the cursor?