We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adffc6a commit 7edb6b3Copy full SHA for 7edb6b3
clj-refactor.el
@@ -2092,7 +2092,9 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-sort-project-dep
2092
(cljr--update-file project-file
2093
(goto-char (point-min))
2094
(while (re-search-forward ":dependencies" (point-max) t)
2095
- (forward-char)
+ ;; Boot has quoted vectors, leiningen does not
2096
+ (while (not (looking-at-p "\\["))
2097
+ (forward-char))
2098
(thread-first (buffer-substring-no-properties (point)
2099
(cljr--point-after 'paredit-forward))
2100
cljr--get-sorted-dependency-names
0 commit comments