mirror of https://github.com/helix-editor/helix
Do not add default mappings.
parent
398b5d0b10
commit
f8457af260
|
@ -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` |
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue