Add Option to Halt Notebook when Error Occurs in SQL Kernel (#7884)

* Add Option to Halt Nb when Error Occurs

* PR comments
This commit is contained in:
Chris LaFreniere
2019-10-22 18:19:36 -07:00
committed by GitHub
parent 2ca5d18855
commit 4c24043cc8
2 changed files with 20 additions and 1 deletions

View File

@@ -160,6 +160,19 @@ configurationRegistry.registerConfiguration({
}
});
configurationRegistry.registerConfiguration({
'id': 'notebook',
'title': 'Notebook',
'type': 'object',
'properties': {
'notebook.sqlStopOnError': {
'type': 'boolean',
'default': true,
'description': localize('notebook.sqlStopOnError', "SQL kernel: stop Notebook execution when error occurs in a cell.")
}
}
});
registerAction({
id: 'workbench.books.action.focusBooksExplorer',
handler: async (accessor) => {