aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorJonathan LEI2023-01-30 14:48:27 +0000
committerGitHub2023-01-30 14:48:27 +0000
commit86ae81ec5d44f79422d2ae8c2544c7129b42ecb4 (patch)
treef54bb8a72a2d133feedd1c2d6ceacf7fd9b6f6d7 /helix-term/src
parent482cc22fecc109773882d3e0fd6251c33862e89e (diff)
Use filename completer on run-shell-command (#5729)
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands/typed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index bd91df5a..ec7100a6 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -2335,7 +2335,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
aliases: &["sh"],
doc: "Run a shell command",
fun: run_shell_command,
- completer: Some(completers::directory),
+ completer: Some(completers::filename),
},
];