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]]:
16291629 label = "AS" if get_robot_version () >= (6 , 0 ) else "WITH NAME" ,
16301630 kind = CompletionItemKind .KEYWORD ,
16311631 # detail=e.detail,
1632- sort_text = "05_NAMESPACE_MARKER " ,
1632+ sort_text = "99_NAMESPACE_MARKER " ,
16331633 insert_text_format = InsertTextFormat .PLAIN_TEXT ,
16341634 )
16351635 ]
@@ -2213,7 +2213,7 @@ def _complete_keyword_arguments_at_position(
22132213 kind = CompletionItemKind .VARIABLE ,
22142214 detail = "Argument" ,
22152215 filter_text = e .name ,
2216- sort_text = f"99_ { i :03} _{ e .name } =" ,
2216+ sort_text = f"80_ { i :03} _{ e .name } =" ,
22172217 insert_text_format = InsertTextFormat .PLAIN_TEXT ,
22182218 text_edit = TextEdit (range = completion_range , new_text = f"{ e .name } =" ),
22192219 command = Command ("" , "editor.action.triggerSuggest" , []),
You can’t perform that action at this time.
0 commit comments