mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
snippets: Add a test case for parsing ${0:placeholder}
This is an example snippet sent by older versions of clangd.
This commit is contained in:
parent
7dea2b0ddd
commit
032dadaf37
1 changed files with 14 additions and 1 deletions
|
@ -361,7 +361,20 @@ mod test {
|
|||
Text(")".into()),
|
||||
]),
|
||||
parse("match(${1:Arg1})")
|
||||
)
|
||||
);
|
||||
// The `$0` tabstop should not have placeholder text. The parser should handle this case
|
||||
// normally and then the placeholder text should be discarded during elaboration.
|
||||
assert_eq!(
|
||||
Ok(vec![
|
||||
Text("sizeof(".into()),
|
||||
Placeholder {
|
||||
tabstop: 0,
|
||||
value: vec![Text("expression-or-type".into())],
|
||||
},
|
||||
Text(")".into()),
|
||||
]),
|
||||
parse("sizeof(${0:expression-or-type})")
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue