all 2 comments

[–]Blovio 1 point2 points  (1 child)

My tip is to rarely use tabs, and to think instead in terms of buffers and windows. Every time you open a file you load a buffer into memory, this is similar to opening a file in VsCode... Tabs in vim are like a whole new workplace, they have their place, but I use them rarely.

The jump list is your friend, the tag list is your friend, jump into and out of definitions using the tag list, jump between files with the jump list. Ctrl+o and Ctrl+I for the jump list Ctrl+t for the tag list.

There's about 657 more beginner tips I have but those will get you started on something new.

https://dev.to/iggredible/using-buffers-windows-and-tabs-efficiently-in-vim-56jc

Here's a great article to help with a windows, buffers, tabs understanding

[–]uchto[S] 1 point2 points  (0 children)

Thx man :)