We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
e.g. clojure.test/is used as is will generate ({:name clojure.test, :type :ns}) as candidates.
is
({:name clojure.test, :type :ns})
This should result in adding [clojure.test :refer [is]] instead of just [clojure.test], https://github.com/clojure-emacs/clj-refactor.el/blob/f5295df68955c23fffd60718039fd386d13c77f5/clj-refactor.el#L2687-L2708 may act as inspiration
[clojure.test :refer [is]]
[clojure.test]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
e.g. clojure.test/is used as
is
will generate({:name clojure.test, :type :ns})
as candidates.This should result in adding
[clojure.test :refer [is]]
instead of just[clojure.test]
, https://github.com/clojure-emacs/clj-refactor.el/blob/f5295df68955c23fffd60718039fd386d13c77f5/clj-refactor.el#L2687-L2708 may act as inspirationThe text was updated successfully, but these errors were encountered: