in src/mockDebug.ts [682:712]
protected completionsRequest(response: DebugProtocol.CompletionsResponse, args: DebugProtocol.CompletionsArguments): void {
response.body = {
targets: [
{
label: "item 10",
sortText: "10"
},
{
label: "item 1",
sortText: "01"
},
{
label: "item 2",
sortText: "02"
},
{
label: "array[]",
selectionStart: 6,
sortText: "03"
},
{
label: "func(arg)",
selectionStart: 5,
selectionLength: 3,
sortText: "04"
}
]
};
this.sendResponse(response);
}