spel
spel

Reputation: 65

How to navigate in comments menu from Vim?

How do I navigate the menus of this configuration file with Vim? It is the kitty configuration file but Vim shows it to me in the form of chapters by detecting the comments in the file.

Screenshot

Upvotes: 0

Views: 98

Answers (1)

romainl
romainl

Reputation: 196751

These are not menus. They are folds, about which you can read up here: :help folds.

To move to next fold: zj.

To toggle the current fold: za.

To open all folds: zR.

Etc.

Upvotes: 1

Related Questions