-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix #386] Clean-ns stopped working after upgrading CIDER
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
;; Benedek Fazekas <[email protected]> | ||
;; Version: 2.4.0-SNAPSHOT | ||
;; Keywords: convenience, clojure, cider | ||
;; Package-Requires: ((emacs "24.4") (s "1.8.0") (seq "2.19") (yasnippet "0.6.1") (paredit "24") (multiple-cursors "1.2.2") (clojure-mode "5.6.1") (cider "0.11.0") (edn "1.1.2") (inflections "2.3") (hydra "0.13.2")) | ||
;; Package-Requires: ((emacs "24.4") (s "1.8.0") (seq "2.19") (yasnippet "0.6.1") (paredit "24") (multiple-cursors "1.2.2") (clojure-mode "5.6.1") (cider "0.15.0") (edn "1.1.2") (inflections "2.3") (hydra "0.13.2")) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
benedekfazekas
Member
|
||
|
||
;; This program is free software; you can redistribute it and/or | ||
;; modify it under the terms of the GNU General Public License | ||
|
@@ -2646,7 +2646,7 @@ removed." | |
See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-clean-ns" | ||
(interactive) | ||
(cljr--ensure-op-supported "clean-ns") | ||
(cider-eval-ns-form :sync) | ||
(cider-eval-ns-form) | ||
(cljr--clean-ns)) | ||
|
||
(defun cljr--narrow-candidates (candidates symbol) | ||
|
@@ -2801,7 +2801,7 @@ itself might be `nil'." | |
|
||
(defun cljr--maybe-eval-ns-form () | ||
(when (and cljr-auto-eval-ns-form (cider-connected-p)) | ||
(cider-eval-ns-form :synchronously))) | ||
(cider-eval-ns-form))) | ||
|
||
;;;###autoload | ||
(defun cljr-add-missing-libspec () | ||
|
@benedekfazekas you see any issues with upgrading to require the latest CIDER?