Skip to content

Commit 9780cba

Browse files
committed
correct WHILE snippet
1 parent d854069 commit 9780cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

robotcode/language_server/robotframework/parts/completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def get_snippets() -> Dict[str, List[str]]:
186186
{
187187
"TRYEX": ["TRY", " $0", r"EXCEPT message", " ", "END", ""],
188188
"TRYEXAS": ["TRY", " $0", r"EXCEPT message AS \${ex}", " ", "END", ""],
189-
"WHILE": [r"WHILE $1:expression", " $0", "END", ""],
189+
"WHILE": [r"WHILE ${1:expression}", " $0", "END", ""],
190190
}
191191
)
192192
return __snippets

0 commit comments

Comments
 (0)