We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f39e42 commit db771dfCopy full SHA for db771df
robotcode/language_server/robotframework/parts/semantic_tokens.py
@@ -256,7 +256,11 @@ async def generate_sem_sub_tokens(
256
col_offset + g.start(),
257
g.end() - g.start(),
258
)
259
- elif token.type == RobotToken.KEYWORD or (token.type == RobotToken.NAME and isinstance(node, Fixture)):
+ elif (
260
+ token.type == RobotToken.KEYWORD
261
+ or ROBOT_KEYWORD_INNER
262
+ or (token.type == RobotToken.NAME and isinstance(node, Fixture))
263
+ ):
264
if col_offset is None:
265
col_offset = token.col_offset
266
0 commit comments