Skip to content

Commit a9d6cf6

Browse files
committed
correct completion of showing argument names at keyword call end
1 parent bc06e5a commit a9d6cf6

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
@@ -1661,7 +1661,7 @@ async def _complete_KeywordCall_or_Fixture( # noqa: N802
16611661
return None
16621662

16631663
if (
1664-
token_at_position.type == RobotToken.EOL
1664+
token_at_position.type in [RobotToken.EOL, RobotToken.SEPARATOR]
16651665
and len(tokens_at_position) > 1
16661666
and tokens_at_position[-2].type == RobotToken.KEYWORD
16671667
):

0 commit comments

Comments
 (0)