toolbar ordered

This commit is contained in:
Jan Prochazka
2021-02-26 19:32:52 +01:00
parent d9387bef1f
commit 3efaac7d1f
3 changed files with 12 additions and 3 deletions

View File

@@ -3,6 +3,8 @@
id: 'commandPalette.show',
category: 'Command palette',
name: 'Show',
toolbarName: 'Menu',
toolbarOrder: 0,
keyText: 'F1',
toolbar: true,
showDisabled: true,

View File

@@ -17,6 +17,8 @@ export interface GlobalCommand {
toolbar?: boolean;
enabled?: boolean;
showDisabled?: boolean;
toolbarName?: string;
toolbarOrder?: number;
}
export default function registerCommand(command: GlobalCommand) {