Probably a transitive dependency of something you were using. Perhaps a transitive dependency of Spacemacs (or Emacs) itself.
Does anyone knows how can I limit counsel/ivy search to only specified file extension?
@karol.wojcik For e.g. counsel-rg
you can pass additional arguments to rg
by putting them after --
. So, for example, you could SPC SPC counsel-rg RET
then type def -- -g*.cljc
to only search .cljc
files.
Thank you very much @zane. That works!