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 eace81c commit 433f180Copy full SHA for 433f180
packages/notebook-extension/src/index.ts
@@ -163,7 +163,8 @@ const closeTab: JupyterFrontEndPlugin<void> = {
163
commands.addCommand(id, {
164
label: trans.__('Close and Shut Down Notebook'),
165
execute: async () => {
166
- await commands.execute('notebook:close-and-shutdown');
+ // Shut the kernel down, without confirmation
167
+ await commands.execute('notebook:shutdown-kernel', { activate: false });
168
window.close();
169
},
170
});
0 commit comments