Fork me on GitHub
#cursive
<
2018-12-17
>
alexpashkov09:12:42

Hi everybody! I have such an issue (see the screenshot below). Previously it was caused by unindexed repositories. Now, it’s not the case. I restarted and invalidated caches with no result. Any ideas? UPD. The thing is defined via some kind of macro. Probably that is the cause. From the lib source code:

(defclone transform t/transform)
(defmacro defclone [here there]
  (if (contains? &env :locals)
    ;; cljs
    `(def ~here ~there)
    ;; clj
    `(do 
       (def ~here ~there)
       (alter-meta! (var ~here) assoc
                    :doc (:doc (meta (var ~there)))
                    :arglists (:arglists (meta (var ~there)))
                    :file (:file (meta (var ~there)))
                    :line (:line (meta (var ~there)))
                    :column (:column (meta (var ~there))))
       (var ~here))))

todo13:12:47

is there an IntelliJ action for "close all buffers except currently open buffer" ?

wilkerlucio14:12:16

right click on the tab and Close Others

todo13:12:53

(referring to Editor buffers)