File tree Expand file tree Collapse file tree
vscode/tree-view/src/lib/trees Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -564,6 +564,10 @@ export const EN: ITranslation = {
564564 name : 'Reset Example Notebooks' ,
565565 description : '' ,
566566 } ,
567+ stopAllNotebookKernels : {
568+ name : 'Stop all IDL Notebook Kernels' ,
569+ description : '' ,
570+ } ,
567571 } ,
568572 terminal : {
569573 startTerminal : {
Original file line number Diff line number Diff line change @@ -611,6 +611,8 @@ export interface ITranslation {
611611 notebookToProCode : ITreeInformation ;
612612 /** Convert notebook to PDF */
613613 notebookToPDF : ITreeInformation ;
614+ /** Stop all notebook kernels */
615+ stopAllNotebookKernels : ITreeInformation ;
614616 } ;
615617 /** Deprecated, but tree entries for IDL terminals */
616618 terminal : {
Original file line number Diff line number Diff line change @@ -36,6 +36,15 @@ export const NOTEBOOK_ACTIONS: IChild[] = [
3636 icon : 'pdf.svg' ,
3737 commandName : IDL_COMMANDS . NOTEBOOKS . CONVERT_TO_PDF ,
3838 } ,
39+ {
40+ name : IDL_TRANSLATION . idl . tree . children . notebooks . stopAllNotebookKernels
41+ . name ,
42+ description :
43+ IDL_TRANSLATION . idl . tree . children . notebooks . stopAllNotebookKernels
44+ . description ,
45+ icon : 'stop.svg' ,
46+ commandName : IDL_COMMANDS . NOTEBOOKS . STOP_ALL_KERNELS ,
47+ } ,
3948 {
4049 name : IDL_TRANSLATION . idl . tree . children . notebooks . openIDLExample . name ,
4150 description :
You can’t perform that action at this time.
0 commit comments