Vim is a very productive editor, and I like to use it every day, but I found that moving between tabs takes longer than necessary.
When I want to switch to another tab, I often repeat gt
or gt
several times. Vim provides the best way to achieve the required tab - n
+ gt
, where n
is the tab number. But to use it, you must first calculate the account number. It quickly gets boring if you open a dozen tabs.
I think it would be nice to list the tabs. The singular on each tab in front of the file name is something like this:
1 Readme | 2 main.c | 3 main.h | 4 process.h
I hope you can configure vim for this by editing the configuration or using some kind of plugin.
Is there any way to achieve it?
source share