mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-03 15:49:07 -04:00
lsp: Fix syntax for signal completion
This commit is contained in:
parent
442fff69b6
commit
a9668e4146
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ def signal_completer(lsp, ast_node, match_variables):
|
|||
signal,
|
||||
CompletionItemKind.Event,
|
||||
sort_text=f"1 {signal}",
|
||||
snippet=f"{signal} => \$${{1:{name}_{signal.replace('-', '_')}}}()$0;",
|
||||
snippet=f"{signal} => \$${{1:${name}_{signal.replace('-', '_')}}}()$0;",
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue