We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4528e87 commit 60ec485Copy full SHA for 60ec485
test/clojure-mode-util-test.el
@@ -388,7 +388,12 @@
388
(with-clojure-buffer-point
389
"(defn- |^{:doc \"A function\"} foo [] 1)
390
(defn- ^:private bar 2)"
391
- (expect (clojure-find-def) :to-equal '("defn-" "foo"))))
+ (expect (clojure-find-def) :to-equal '("defn-" "foo")))
392
+ (with-clojure-buffer-point
393
+ "(def foo 1)
394
+ (defn- ^{:|a {}} complex-metadata |[x y z] z)
395
+ (def bar 2)"
396
+ (expect (clojure-find-def) :to-equal '("defn-" "complex-metadata"))))
397
(it "should recognize def...-, with or without metadata"
398
399
"(def foo 1)
0 commit comments