summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2017-05-25 12:39:50 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2017-05-25 12:39:50 +0300
commitf42b26202fb8ae2df32f31e8a6ac93e697c48ae6 (patch)
tree27d430af523eb6ee9b05cd29df3e6adf93d7814a /doc
parentcbad6b2d11afa55a8ae1caf42d17d9359241aa5d (diff)
Rename `cider-prompt-save-file-on-load` to `cider-save-file-on-load`
This also adjusts its supported values accordingly - the default now is `'prompt` and `'always-save` is now simply `t`.
Diffstat (limited to 'doc')
-rw-r--r--doc/configuration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/configuration.md b/doc/configuration.md
index e3aa98d5..c2b3477c 100644
--- a/doc/configuration.md
+++ b/doc/configuration.md
@@ -60,9 +60,9 @@ make the hidden buffers visible. They'll always be visible in
```el
;; Don't prompt and don't save
-(setq cider-prompt-save-file-on-load nil)
+(setq cider-save-file-on-load nil)
;; Just save without prompting
-(setq cider-prompt-save-file-on-load 'always-save)
+(setq cider-save-file-on-load t)
```
* Change the result prefix for interactive evaluation (by default it's `=> `):