From 562874a720678a238966c69f413cb3d691f74c66 Mon Sep 17 00:00:00 2001 From: gavynriebau Date: Sun, 10 Apr 2022 10:30:09 +0800 Subject: Add command for picking files from CWD (#1600) The `file_picker_at_current_directory` command opens the file picker at the current working directory (CWD). This can be useful when paired with the built-in `:cd` command which changes the CWD. It has been mapped to `space F` by default.--- helix-term/src/keymap/default.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'helix-term/src/keymap/default.rs') diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs index a8144ebc..18ebbcfe 100644 --- a/helix-term/src/keymap/default.rs +++ b/helix-term/src/keymap/default.rs @@ -196,6 +196,7 @@ pub fn default() -> HashMap { "space" => { "Space" "f" => file_picker, + "F" => file_picker_in_current_directory, "b" => buffer_picker, "s" => symbol_picker, "S" => workspace_symbol_picker, -- cgit v1.2.3-70-g09d2