This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-04
Channels
- # announcements (5)
- # aws (11)
- # babashka (15)
- # beginners (101)
- # biff (14)
- # calva (45)
- # clj-kondo (18)
- # cljs-dev (5)
- # clojure (178)
- # clojure-austin (5)
- # clojure-europe (8)
- # clojure-france (1)
- # clojure-nl (12)
- # clojure-norway (6)
- # clojure-spec (4)
- # clojure-uk (1)
- # clojurescript (13)
- # community-development (2)
- # conjure (6)
- # cursive (8)
- # datahike (1)
- # datalevin (3)
- # datascript (36)
- # datomic (6)
- # emacs (2)
- # etaoin (2)
- # fulcro (5)
- # graalvm (6)
- # gratitude (3)
- # introduce-yourself (1)
- # jobs-discuss (1)
- # lsp (19)
- # malli (4)
- # nbb (11)
- # off-topic (4)
- # other-languages (1)
- # pathom (19)
- # pedestal (1)
- # shadow-cljs (22)
- # spacemacs (16)
- # tools-deps (31)
- # vim (7)
Does spacemacs have an equivalent action (and keybinding) for projectile-find-file-in-directory
?
If you use SPC-?
you can search for keybindings
So apparently it’s SPC p d
Ah okay then it doesn’t exist. You can create a binding yourself, like this in dotspacemacs/user-config of .spacemacs:
(define-key evil-normal-state-map (kbd "<SPC>ps") 'projectile-find-file-in-directory)
s
search is still free…
Thanks for the tip!
I just did this - except that I used SPC o p s
to avoid future collisions (I think SPC o ...
prefix is meant to be used for user-defined bindings)
ah haha i was not aware of user-defined bindings to avoid future collisions
makes sense
Since updating to Emacs 29.0.50 the color of my cursor switches to purple instead of yellow
Expected:
Actual:
It’s not the lisp mode as far as I am aware since the behaviour is the same, only the cursor color is different, if I press ESC it switches back to yellow
any ideas how to keep it yellow ? 🙂