aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorMichael Davis2023-07-25 21:11:11 +0000
committerBlaž Hrastnik2023-07-27 02:50:19 +0000
commitf0b877e2588306882f71eaad45a3f3e604885a34 (patch)
treef7c03335cc522b2e8558775dba8a44b5d347af6b /helix-term
parent0dc3753eb2a1af296f5faffaf9c3d29bceb5a37f (diff)
Tune regex highlights for usage in prompts
Since regex is almost always injected into other languages, `pattern_character`s will inherit the highlight for the structure that injects them (for example `/foo/` in JavaScript or `~r/foo/` in Elixir). This removes the string highlight when used in the prompt. We also add `ERROR` node highlighting so that errors in regex syntax appear in the prompt. This resolves a TODO in the `regex_prompt` function about highlighting errors in the regex.
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/ui/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index 8ca1b131..215794e3 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -142,9 +142,6 @@ pub fn regex_prompt(
};
cx.jobs.callback(callback);
- } else {
- // Update
- // TODO: mark command line as error
}
}
}