diff --git a/book/src/keymap.md b/book/src/keymap.md index 3891aa404..10257378c 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -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` | `"` `` | Select a register to yank to or paste from | `select_register` | | `>` | Indent selection | `indent` | | `<` | Unindent selection | `unindent` | diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs index 38d65558f..52e0ca7bf 100644 --- a/helix-term/src/keymap/default.rs +++ b/helix-term/src/keymap/default.rs @@ -152,10 +152,7 @@ pub fn default() -> HashMap { "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,