From d7e44406ec2a8352a771a54bba252c2e5af3cd85 Mon Sep 17 00:00:00 2001 From: Jacob Grossman Date: Wed, 1 Dec 2021 20:59:47 -0600 Subject: [PATCH] Move commands to correct spot --- src/commands.ts | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/commands.ts b/src/commands.ts index d7d9c4e..f2825e4 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -57,6 +57,16 @@ export const accessCommands: CommandEntry[] = [ { name: 'mind-reader.getIndent', callback: getIndent, + }, + + { + name: 'mind-reader.runLineContext', + callback: runLineContext, + }, + + { + name: 'mind-reader.runCursorContext', + callback: runCursorContext } ]; @@ -135,15 +145,6 @@ export const navCommands: CommandEntry[] = [ name: 'mind-reader.navigateForward', callback: () => vscode.commands.executeCommand('workbench.action.navigateForward'), }, - { - name: 'mind-reader.runLineContext', - callback: runLineContext, - }, - - { - name: 'mind-reader.runCursorContext', - callback: runCursorContext - } ]; export const hubCommands: CommandEntry[] = [