Skip to content

Commit

Permalink
allow empty placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe authored and archseer committed Mar 16, 2023
1 parent 90348b8 commit f87299f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion helix-lsp/src/snippet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,12 @@ mod parser {
"${",
digit(),
":",
one_or_more(anything(TEXT_ESCAPE_CHARS)),
// according to the grammar there is just a single anything here.
// However in the procese it is explained that placeholders can be nested
// the example there contains both a placeholder text and a nested placeholder
// which indicates a list. Looking at the VSCode sourcecode, the placeholder
// is indeed parsed as zero_or_more so the grammar is simply incorrect here
zero_or_more(anything(TEXT_ESCAPE_CHARS)),
"}"
),
|seq| SnippetElement::Placeholder {
Expand Down

0 comments on commit f87299f

Please sign in to comment.