spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
zane 2020-11-12T00:01:49.146400Z

Probably a transitive dependency of something you were using. Perhaps a transitive dependency of Spacemacs (or Emacs) itself.

👍 1
Karol Wójcik 2020-11-12T10:02:09.147700Z

Does anyone knows how can I limit counsel/ivy search to only specified file extension?

zane 2020-11-14T03:09:19.151300Z

@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.

❤️ 1
Karol Wójcik 2020-11-15T09:49:56.152400Z

Thank you very much @zane. That works!