From 5d3850c253d77bcaca2eebfdf8c68a7ed10d0c52 Mon Sep 17 00:00:00 2001 From: James-Yu Date: Mon, 19 Nov 2018 23:25:42 +0800 Subject: [PATCH] Sort command hints by ignoring uppercases --- src/providers/completer/command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/completer/command.ts b/src/providers/completer/command.ts index 0f793a0fc..75cca7f15 100644 --- a/src/providers/completer/command.ts +++ b/src/providers/completer/command.ts @@ -159,6 +159,7 @@ export class Command { } command.documentation = item.documentation command.detail = item.detail + command.sortText = item.command.toLowerCase() if (item.postAction) { command.command = { title: 'Post-Action', command: item.postAction } }