File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/language_server/src/robotcode/language_server/robotframework/parts Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1629,7 +1629,7 @@ async def complete_with_name() -> Optional[List[CompletionItem]]:
1629
1629
label = "AS" if get_robot_version () >= (6 , 0 ) else "WITH NAME" ,
1630
1630
kind = CompletionItemKind .KEYWORD ,
1631
1631
# detail=e.detail,
1632
- sort_text = "05_NAMESPACE_MARKER " ,
1632
+ sort_text = "99_NAMESPACE_MARKER " ,
1633
1633
insert_text_format = InsertTextFormat .PLAIN_TEXT ,
1634
1634
)
1635
1635
]
@@ -2213,7 +2213,7 @@ def _complete_keyword_arguments_at_position(
2213
2213
kind = CompletionItemKind .VARIABLE ,
2214
2214
detail = "Argument" ,
2215
2215
filter_text = e .name ,
2216
- sort_text = f"99_ { i :03} _{ e .name } =" ,
2216
+ sort_text = f"80_ { i :03} _{ e .name } =" ,
2217
2217
insert_text_format = InsertTextFormat .PLAIN_TEXT ,
2218
2218
text_edit = TextEdit (range = completion_range , new_text = f"{ e .name } =" ),
2219
2219
command = Command ("" , "editor.action.triggerSuggest" , []),
You can’t perform that action at this time.
0 commit comments