From f4a61006bf70340e57f10842abf47bd88c2cc1ec Mon Sep 17 00:00:00 2001 From: Aral Balkan Date: Wed, 8 May 2024 13:49:44 +0100 Subject: [PATCH] Remove outdated comment about key binding being disabled (#10717) I just used the `=` binding to format a selection in a CSS file in helix 23.10 (5931a46c) so removing this comment as outdated. --- book/src/keymap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/keymap.md b/book/src/keymap.md index 9a6fecbab..27c5a6b60 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -89,7 +89,7 @@ Normal mode is the default mode when you launch helix. You can return to it from | `"` `` | Select a register to yank to or paste from | `select_register` | | `>` | Indent selection | `indent` | | `<` | Unindent selection | `unindent` | -| `=` | Format selection (currently nonfunctional/disabled) (**LSP**) | `format_selections` | +| `=` | Format selection (**LSP**) | `format_selections` | | `d` | Delete selection | `delete_selection` | | `Alt-d` | Delete selection, without yanking | `delete_selection_noyank` | | `c` | Change selection (delete and enter insert mode) | `change_selection` |