You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check the entire classpath for files to save before refreshing
Previously this relied on `clojure-project-dir` from clojure-mode, but
tools.namespace will refresh any modified files on the entire classpath, so they
are worth including too.
Additionally, path comparisons are now made using `file-in-directory-p` rather
than `string-prefix-p`, obviating any issues around path expansion, symlinks,
and platform-specific issues such as case sensitivity.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,11 @@
5
5
### New features
6
6
7
7
### Changes
8
-
* Fix values for `cider-preferred-build-tool` variable.
9
-
* Fix value and safe property for `cider-allow-jack-in-without-project` variable.
10
8
11
9
### Bug fixes
10
+
* Fix values for `cider-preferred-build-tool` variable.
11
+
* Fix value and safe property for `cider-allow-jack-in-without-project` variable.
12
+
*`cider-ns-save-files-on-refresh` will now save any modified buffers visiting files on the classpath, rather than just in the current project.
12
13
13
14
## 0.20.0 (2019-01-14)
14
15
@@ -40,6 +41,7 @@
40
41
41
42
### Bug fixes
42
43
44
+
*`cider-expected-ns` no longer requires an absolute path as its argument, and now internally handles paths canonically and consistently.
43
45
*[#2474](https://github.com/clojure-emacs/cider/issues/2474): Fix incorrect detection of output and out-of-order printing.
44
46
*[#2514](https://github.com/clojure-emacs/cider/issues/2514): Don't auto-jump to warnings when `cider-auto-jump-to-error` is set to 'errors-only.
45
47
*[#2453](https://github.com/clojure-emacs/cider/issues/2453): Make it possible to debug deftype methods by direct insertion of #dbg and #break readers into the deftype methods.
0 commit comments