summaryrefslogtreecommitdiffstats
path: root/docs/Config.md
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2022-08-08 09:23:56 +0900
committerRyooooooga <eial5q265e5@gmail.com>2022-08-08 18:11:58 +0900
commit8b371ada7361030daf83a1fd6e72be42025bc1de (patch)
treecce1e08f66a31148b020a23bc60c6b0c332c1928 /docs/Config.md
parent70a46028e1499d01d474212c5be0167d41cf5a81 (diff)
feat(config): add `notARepository: quit`
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'
+```