Fork me on GitHub
#cider
<
2016-12-06
>
rovanion14:12:07

Can CIDER show all uses of a keyword like GNU Global does with C?

igrishaev14:12:26

@rovanion I think either rgrep or occur may do this

rovanion15:12:33

igrishaev: rgrep is the closest match

benedek15:12:31

@rovanion I guess this a more involved use case of what you are looking for: https://github.com/clojure-emacs/clj-refactor.el/issues/343

rovanion15:12:11

@benedek Yeah, I was only looking for "Where is function X called".

benedek15:12:18

i thought you were looking for searching for :keyword style keywords

benedek15:12:29

clj-refactor can find symbols for you

benedek15:12:36

and rename them...

benedek15:12:48

so defs defns etc

rovanion17:12:18

benedek: Sadly it doesn't work for cljs.

benedek17:12:35

yup that is true 😕

zalky20:12:11

Hi all: so I recently upgraded cider (10 -> 14) and I'm trying to figure out how to turn off what seems to be a new feature, which is the automatic namespacing of maps:

#:db{:id 10,
     :ident :db/ident,
     :valueType #:db{:id 21},
     :cardinality #:db{:id 35},
     :unique #:db{:id 38},
     :doc "Attribute used to uniquely name an entity."}
Thing is I can't seem to find any mention of this in the cider changelog or, well, anywhere. Was this even a cider thing?

dpsutton20:12:58

what version of clojure are you running?

dpsutton20:12:21

my guess is you are running 1.9.x and you are seeing a clojure feature

dpsutton20:12:00

can you try it from lein repl from a command line without CIDER at all

zalky20:12:54

Ah, yes indeed, by unfortunate coincidence, the version of clojure got bumped at the same time. Appreciate the pointer.