Skip to content

Commit

Permalink
Make prompts consistent (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
Omnikar authored Nov 12, 2021
1 parent d3def16 commit 6d4409c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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| {
Expand Down

0 comments on commit 6d4409c

Please sign in to comment.