From f53d8411cbda6119bcd34d5936fc23c1365bafef Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sun, 29 Aug 2021 14:06:36 +0300 Subject: Add extra annotations to completions --- helix-term/src/ui/editor.rs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'helix-term/src') 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")), -- cgit v1.2.3-70-g09d2