mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
completions: Fix signal completion
This commit is contained in:
parent
a9cb423b3b
commit
56274d7c1f
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ def signal_completer(ast_node, match_variables):
|
||||||
yield Completion(
|
yield Completion(
|
||||||
signal,
|
signal,
|
||||||
CompletionItemKind.Property,
|
CompletionItemKind.Property,
|
||||||
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