summaryrefslogtreecommitdiffstats
path: root/docs/Config.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Config.md')
-rw-r--r--docs/Config.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/Config.md b/docs/Config.md
index eca5fc4b6..666e465ec 100644
--- a/docs/Config.md
+++ b/docs/Config.md
@@ -101,7 +101,7 @@ confirmOnQuit: false
# determines whether hitting 'esc' will quit the application when there is nothing to cancel/close
quitOnTopLevelReturn: false
disableStartupPopups: false
-notARepository: 'prompt' # one of: 'prompt' | 'create' | 'skip'
+notARepository: 'prompt' # one of: 'prompt' | 'create' | 'skip' | 'quit'
promptToReturnFromSubprocess: true # display confirmation when subprocess terminates
keybinding:
universal:
@@ -531,3 +531,8 @@ notARepository: 'create'
# to skip without creating a new repo
notARepository: 'skip'
```
+
+```yaml
+# to exit immediately if run outside of the Git repository
+notARepository: 'quit'
+```