diff options
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index eeecd08e..06b190aa 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -207,8 +207,9 @@ pub fn default() -> Keymaps { key!('y') => commands::yank, // yank_all - key!('p') => commands::paste, + key!('p') => commands::paste_after, // paste_all + shift!('P') => commands::paste_before, key!('>') => commands::indent, key!('<') => commands::unindent, |