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 ? 🙂
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
That's not the same thing - I'm looking for projectile-find-file-in-directory
projectile-find-dir simply jumps to the directory
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