Do not add default mappings.

pull/13698/head
Andrew Browne 2025-06-05 22:00:05 -07:00
parent 398b5d0b10
commit f8457af260
2 changed files with 0 additions and 5 deletions

View File

@ -86,8 +86,6 @@ Normal mode is the default mode when you launch helix. You can return to it from
| `y` | Yank selection | `yank` |
| `p` | Paste after selection | `paste_after` |
| `P` | Paste before selection | `paste_before` |
| `Alt-p` | Paste all after selection | `paste_after_all`
| `Alt-P` | Paste all before selection | `paste_before_all`
| `"` `<reg>` | Select a register to yank to or paste from | `select_register` |
| `>` | Indent selection | `indent` |
| `<` | Unindent selection | `unindent` |

View File

@ -152,10 +152,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {
"y" => yank,
// yank_all
"p" => paste_after,
// TODO: This is a terrible mapping, but "A-p" coincides with "select_prev_sibling"
"C-p" => paste_all_selections_after,
"P" => paste_before,
"A-P" => paste_all_selections_before,
"Q" => record_macro,
"q" => replay_macro,