We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27efa08 commit 7dbf4a9Copy full SHA for 7dbf4a9
src/cellmenu.ts
@@ -21,17 +21,18 @@ const FOREIGN_COMMANDS: ICellMenuItem[] = [
21
icon: markdownIcon,
22
tooltip: 'Convert to Markdown Cell'
23
},
24
- {
25
- command: 'notebook:delete-cell',
26
- icon: deleteIcon,
27
- tooltip: 'Delete Selected Cells'
28
- },
29
// Originate from @ryantam626/jupyterlab_code_formatter
30
{
31
className: 'jp-enh-cell-format',
32
command: 'jupyterlab_code_formatter:format',
33
icon: formatIcon,
34
tooltip: 'Format Cell'
+ },
+ // Originate from @jupyterlab/notebook-extension
+ {
+ command: 'notebook:delete-cell',
+ icon: deleteIcon,
35
+ tooltip: 'Delete Selected Cells'
36
}
37
];
38
0 commit comments