Unnamed repository; edit this file 'description' to name the repository.
accept empty snippet regex replace elements
Pascal Kuthe 2023-03-22
parent 617f09a · commit 47420db
-rw-r--r--helix-lsp/src/snippet.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-lsp/src/snippet.rs b/helix-lsp/src/snippet.rs
index e59351a4..5bfe9657 100644
--- a/helix-lsp/src/snippet.rs
+++ b/helix-lsp/src/snippet.rs
@@ -311,9 +311,9 @@ mod parser {
seq!(
"/",
// TODO parse as ECMAScript and convert to rust regex
- non_empty(text(&['/'], &['/'])),
+ text(&['/'], &['/']),
"/",
- one_or_more(choice!(
+ zero_or_more(choice!(
format(),
// text doesn't parse $, if format fails we just accept the $ as text
map("$", |_| FormatItem::Text("$".into())),