aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/editor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/ui/editor.rs')
-rw-r--r--helix-term/src/ui/editor.rs13
1 files changed, 10 insertions, 3 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index 99fffbbd..1f20619d 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -719,9 +719,16 @@ impl EditorView {
let noop = |_input: &str| Vec::new();
let completer = match field_type {
- Some("filename") => super::completers::filename,
- Some("directory") => super::completers::directory,
- _ => noop,
+ Some(field_type) => {
+ if field_type.starts_with("filename") {
+ super::completers::filename
+ } else if field_type.starts_with("directory") {
+ super::completers::directory
+ } else {
+ noop
+ }
+ }
+ None => noop,
};
Prompt::new(
format!("{}: ", field_type.unwrap_or("arg")),