~/.config/vorto/config.toml shows up automatically.
There are two distinct panels.
Which-key panel
When you press a key that opens a multi-key sequence — an operator, a leader, ag prefix, a z prefix, a [ or ] bracket prefix, a window prefix, or a surround command — Vorto pops a small panel above the status bar in the bottom-right listing every valid next key with a short description. The panel disappears the moment you complete the sequence or cancel with Esc.
The panel triggers in every mid-parse state, including:
Counts don’t reset the hint context: typing
3d still shows the delete menu because counts are ignored when resolving “what panel should I show right now?”
The hint panel reads directly from Vorto’s binding tables. If you remap
Space f to a different action or add a new leader binding in your config, the panel reflects your version — there’s no separate hints file to maintain.Command hint panel
Press: to open the command prompt, and Vorto shows a two-column hint panel directly above the prompt with command-name candidates that match what you’ve typed so far. Each row shows the command name and its description.
- Filtering is live: type
:reand you’ll see:reload,:reload-all, and any other matching commands. - Press
Tabto cycle forward through the matches andShift-Tabto cycle backward. While cycling, the panel pins itself to the captured candidate list, so you can rewind without the matches shifting under you. - Once you’ve typed past the command name (i.e. you’ve entered a space), the command-name panel hides itself. If the command takes a file path, a
filespanel takes its place and shows path completions instead. - Both the primary name and every alias appear as separate rows.
:blsand:buffersare the same command, but both are typeable — so both show up.
COMMAND_BINDS registry that dispatches commands, so any command documented in Command mode appears here automatically.
Why this matters
The full Vim keymap is large enough that most users either keep a cheat sheet open or settle into a small subset of commands they use daily. The hint panels collapse that tradeoff:- New users can start with
Spaceorgand discover what’s available without leaving the editor. - Returning users who haven’t touched a modal editor in months don’t lose their muscle memory — the panel reminds them what the next key does.
- Power users get a free audit of their own keymap: remap something, press the prefix, and the panel confirms the change is wired up.