Skip to content

Commit

Permalink
Add setting for toggling UI suspension
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed May 11, 2020
1 parent 4ced5a8 commit da2ec0e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions schema/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"description": "jupyterlab-git settings.",
"type": "object",
"properties": {
"blockWhileCommandExecutes": {
"type": "boolean",
"title": "Suspend interaction until commands finish",
"description": "Suspend JupyterLab interaction until Git commands (e.g., commit, pull, reset, revert) finish executing. Setting this to true helps mitigate potential race conditions leading to data loss, conflicts, and a broken Git history. Unless running a slow network, UI suspension should not interfere with standard workflows. Setting this to false allows for actions to trigger multiple concurrent Git actions.",
"default": true
},
"cancelPullMergeConflict": {
"type": "boolean",
"title": "Cancel pull merge conflict",
Expand Down

0 comments on commit da2ec0e

Please sign in to comment.