Skip to content

Commit

Permalink
Addressing more review comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mäder <[email protected]>
  • Loading branch information
tsmaeder committed Mar 22, 2024
1 parent 0c99c47 commit ac70f38
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .theia/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"[typescript]": {
"editor.tabSize": 4
},
Expand Down
2 changes: 1 addition & 1 deletion packages/editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
"nyc": {
"extends": "../../configs/nyc.json"
}
}
}
10 changes: 5 additions & 5 deletions packages/monaco/src/browser/monaco-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ export namespace MonacoCommands {
['redo', CommonCommands.REDO.id],
['editor.action.selectAll', CommonCommands.SELECT_ALL.id],
['actions.find', CommonCommands.FIND.id],
['editor.action.startFindReplaceAction', CommonCommands.REPLACE.id]
['editor.action.startFindReplaceAction', CommonCommands.REPLACE.id],
['editor.action.clipboardCutAction', CommonCommands.CUT.id],
['editor.action.clipboardCopyAction', CommonCommands.COPY.id],
['editor.action.clipboardPasteAction', CommonCommands.PASTE.id]
]);

export const GO_TO_DEFINITION = 'editor.action.revealDefinition';

export const EXCLUDE_ACTIONS = new Set([
'editor.action.quickCommand',
'editor.action.clipboardCutAction',
'editor.action.clipboardCopyAction',
'editor.action.clipboardPasteAction'
'editor.action.quickCommand'
]);
}

Expand Down

0 comments on commit ac70f38

Please sign in to comment.