diff --git a/README.md b/README.md index f6a52cfd..bae07d72 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,11 @@ # Merged PRs - - [File explorer and tree helper](https://github.com/helix-editor/helix/pull/2377) - - [with Icons](https://github.com/r0l1/helix/tree/tree_explorer_icons) - - [Add LSP workspace command picker](https://github.com/helix-editor/helix/pull/3140) - - [completion fix](https://github.com/helix-editor/helix/pull/1819) +- [File explorer and tree helper](https://github.com/helix-editor/helix/pull/2377) + - [with Icons](https://github.com/r0l1/helix/tree/tree_explorer_icons) +- [Add LSP workspace command picker](https://github.com/helix-editor/helix/pull/3140) +- [completion fix](https://github.com/helix-editor/helix/pull/1819) +- [Add rainbow indentation guides](https://github.com/helix-editor/helix/pull/4056) And others I forgot about... @@ -19,6 +20,7 @@ And others I forgot about... - Changed some default settings (enabling bufferline, indent guides, the embedded explorer, cursor modes etc.) - Added a `--show-explorer` cli flag to open the file explorer on startup (useful for embedded explorer mode) - Added a `delete` (aliases `rm`, `del`) command to delete the file associated with the current buffer +- Changed keybind ` E` to close the explorer instead of toggling the recursion one - - - diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs index 62f8dca3..75fe238f 100644 --- a/helix-term/src/keymap/default.rs +++ b/helix-term/src/keymap/default.rs @@ -268,7 +268,7 @@ pub fn default() -> HashMap { "h" => select_references_to_symbol_under_cursor, "?" => command_palette, "e" => toggle_or_focus_explorer, - "E" => open_explorer_recursion, + "E" => close_explorer, }, "z" => { "View" "z" | "c" => align_view_center,