We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd461c commit 824bbb2Copy full SHA for 824bbb2
python/jupytercad_core/src/jcadplugin/plugins.ts
@@ -2,7 +2,7 @@ import {
2
ICollaborativeDrive,
3
SharedDocumentFactory
4
} from '@jupyter/collaborative-drive';
5
-import { logoIcon } from '@jupytercad/base';
+import { logoIcon, CommandIDs as BaseCommandIDs } from '@jupytercad/base';
6
import {
7
IAnnotationModel,
8
IAnnotationToken,
@@ -172,6 +172,13 @@ const activate = (
172
command: CommandIDs.createNew,
173
category: PALETTE_CATEGORY
174
});
175
+
176
+ for (const command in BaseCommandIDs) {
177
+ palette.addItem({
178
+ command: BaseCommandIDs[command],
179
+ category: PALETTE_CATEGORY
180
+ });
181
+ }
182
}
183
};
184
0 commit comments