diff options
author | Omnikar | 2021-11-12 16:34:49 +0000 |
---|---|---|
committer | GitHub | 2021-11-12 16:34:49 +0000 |
commit | 6d4409c00ffd35fbb3f92d627a21845b931c609b (patch) | |
tree | 12f853ea5b6b5c565c078f29e857b9bdf61acd8c /helix-term/src | |
parent | d3def16584f7f35a64ab2bad578436bd13cc18b6 (diff) |
Make prompts consistent (#1080)
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 4352ee66..48fd0ee0 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1367,7 +1367,7 @@ fn global_search(cx: &mut Context) { let completions = search_completions(cx, None); let prompt = ui::regex_prompt( cx, - "global search:".into(), + "global-search:".into(), None, move |input: &str| { completions @@ -5154,7 +5154,7 @@ fn add_newline_impl(cx: &mut Context, open: Open) { fn rename_symbol(cx: &mut Context) { let prompt = Prompt::new( - "Rename to: ".into(), + "rename-to:".into(), None, |_input: &str| Vec::new(), move |cx: &mut compositor::Context, input: &str, event: PromptEvent| { |