We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose you have created a new keymap in your user settings. e.g.
[keys.insert] j = { j = "normal_mode", s = ":write" , C-s = [":write", ":format"] }
then, the infobox displays like this
+--------------------------+ | j Enter normal mode | | C-s [Multiple commands] | | s :write[] | +--------------------------+
I want the it to be displayed like this
+-------------------------+ | j Enter normal mode | | C-s write and format | | s write | +-------------------------+
If you don't annotate anything, it will display as before. If annotated, override the infobox.
helix/helix-term/src/keymap.rs
Lines 80 to 119 in 76756f0
helix/helix-term/src/commands.rs
Line 195 in 76756f0
The text was updated successfully, but these errors were encountered:
This seems to actually be a duplicate of #1487 and #1752
Sorry, something went wrong.
No branches or pull requests
Describe your feature request
Suppose you have created a new keymap in your user settings.
e.g.
then, the infobox displays like this
+--------------------------+
| j Enter normal mode |
| C-s [Multiple commands] |
| s :write[] |
+--------------------------+
I want the it to be displayed like this
+-------------------------+
| j Enter normal mode |
| C-s write and format |
| s write |
+-------------------------+
If you don't annotate anything, it will display as before.
If annotated, override the infobox.
helix/helix-term/src/keymap.rs
Lines 80 to 119 in 76756f0
helix/helix-term/src/commands.rs
Line 195 in 76756f0
The text was updated successfully, but these errors were encountered: