-
-
Notifications
You must be signed in to change notification settings - Fork 649
add option to control whether loading a buffer prompts you to save the corresponding file #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -87,6 +87,10 @@ which will use the default REPL connection." | |||
:type 'symbol | |||
:group 'cider) | |||
|
|||
(defcustom cider-prompt-save-file-on-load t | |||
"When t, cider will prompt you to save the corresponding file when loading a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Elisp the first line of the docstring should be a complete sentence (or M-x checkdoc
will complain).
You should also mention this in the README and the CHANGELOG. |
Interesting re: the docstring thing. Thanks. Updated with a fix for that, and CHANGELOG note. I'm not sure what to add to the README, since this is a fix; it doesn't change any user expectations AFAICT. |
Shite, mixed up my issues, sorry… |
* [#460](https://github.com/clojure-emacs/cider/issues/316) Support for cider-nrepl's complete middleware for CLJ/CLJS autocomplete. | ||
* [#460](https://github.com/clojure-emacs/cider/issues/316) Support for | ||
cider-nrepl's complete middleware for CLJ/CLJS autocomplete. | ||
* [#470](https://github.com/clojure-emacs/cider/issues/470) Ensure that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess you wrote a changelog entry for another issue :-)
No problem. As for the README - there's a section on customization there. You can just write two lines there. "If you want to change ..., set ...". |
…e corresponding file fixes clojure-emacsgh-469
OK, maybe it's done now. :-P Yeah, I was thinking about the |
add option to control whether loading a buffer prompts you to save the corresponding file
👍 Yep, you're done. :-) |
fixes gh-469