Hotkeys to go to the next/previous list item at the same level are the very useful feature for nested lists.
For example, I want to go from a. to b. and back with hotkeys:
- A. lorem ipsum
- a. dolor
- 1. sit met
- 2. consectetur adipiscing elit
- b. sed do eiusmod tempor
- 3. incididunt ut labore
- B. et dolore magna aliqua
May some plugin provide list items navigation hotkeys?
I don’t believe there is a plugin for that. You can use Vim to search items with regex like - [a-z]. This allows you to configure navigation actions for specific levels that use your predefined symbols i.e. lower case letters a–z. Then you can navigate between lower case letter items. Search syntax in Vim is /pattern or ?pattern (one for each direction). You can configure alias for pattern so you don’t need to type complex patterns every time. Consequently you could have any navigational patterns and then you use just / or ? to initiate the navigation.