docs: improve last_picker docs

- Consistency: Before it was described as "fuzzy" in place but not another.
  All the pickers seem to be fuzzy pickers, so remove that word for consistency.

- Clarity: Document how it's different from other pickers and adds value
  by restoring the selected entry when it opens-- a valuable feature to make
  more discoverable.
This commit is contained in:
Mark Stosberg 2024-05-28 16:13:44 -04:00
parent f1c9580e4b
commit 3db8ca65b4
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ #### Space mode
| `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` |

View File

@ -337,7 +337,7 @@ pub fn doc(&self) -> &str {
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",