Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/main.ts')
| -rw-r--r-- | editors/code/src/main.ts | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 451294e26f..5e50073069 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -158,6 +158,7 @@ function createCommands(): Record<string, CommandFactory> { matchingBrace: { enabled: commands.matchingBrace }, joinLines: { enabled: commands.joinLines }, parentModule: { enabled: commands.parentModule }, + childModules: { enabled: commands.childModules }, viewHir: { enabled: commands.viewHir }, viewMir: { enabled: commands.viewMir }, interpretFunction: { enabled: commands.interpretFunction }, @@ -187,7 +188,9 @@ function createCommands(): Record<string, CommandFactory> { openWalkthrough: { enabled: commands.openWalkthrough }, // Internal commands which are invoked by the server. applyActionGroup: { enabled: commands.applyActionGroup }, - applySnippetWorkspaceEdit: { enabled: commands.applySnippetWorkspaceEditCommand }, + applySnippetWorkspaceEdit: { + enabled: commands.applySnippetWorkspaceEditCommand, + }, debugSingle: { enabled: commands.debugSingle }, gotoLocation: { enabled: commands.gotoLocation }, hoverRefCommandProxy: { enabled: commands.hoverRefCommandProxy }, @@ -200,8 +203,12 @@ function createCommands(): Record<string, CommandFactory> { revealDependency: { enabled: commands.revealDependency }, syntaxTreeReveal: { enabled: commands.syntaxTreeReveal }, syntaxTreeCopy: { enabled: commands.syntaxTreeCopy }, - syntaxTreeHideWhitespace: { enabled: commands.syntaxTreeHideWhitespace }, - syntaxTreeShowWhitespace: { enabled: commands.syntaxTreeShowWhitespace }, + syntaxTreeHideWhitespace: { + enabled: commands.syntaxTreeHideWhitespace, + }, + syntaxTreeShowWhitespace: { + enabled: commands.syntaxTreeShowWhitespace, + }, }; } |