diff --git a/book/src/keymap.md b/book/src/keymap.md index 27c5a6b60..c850259be 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -293,7 +293,7 @@ This layer is a kludge of mappings, mostly pickers. | `r` | Rename symbol (**LSP**) | `rename_symbol` | | `a` | Apply code action (**LSP**) | `code_action` | | `h` | Select symbol references (**LSP**) | `select_references_to_symbol_under_cursor` | -| `'` | Open last fuzzy picker | `last_picker` | +| `'` | Open last picker, preserving selected entry | `last_picker` | | `w` | Enter [window mode](#window-mode) | N/A | | `c` | Comment/uncomment selections | `toggle_comments` | | `C` | Block comment/uncomment selections | `toggle_block_comments` | diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 7be2ea095..7212f6f6d 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -337,7 +337,7 @@ impl MappableCommand { workspace_symbol_picker, "Open workspace symbol picker", diagnostics_picker, "Open diagnostic picker", workspace_diagnostics_picker, "Open workspace diagnostic picker", - last_picker, "Open last picker", + last_picker, "Open last picker, preserving selected entry", insert_at_line_start, "Insert at start of line", insert_at_line_end, "Insert at end of line", open_below, "Open new line below selection",