spacemacs

erwinrooijakkers 2022-08-04T07:52:19.079949Z

Since updating to Emacs 29.0.50 the color of my cursor switches to purple instead of yellow

erwinrooijakkers 2022-08-04T07:52:42.141929Z

Expected:

erwinrooijakkers 2022-08-04T07:52:55.175709Z

Actual:

erwinrooijakkers 2022-08-04T07:53:27.265139Z

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

erwinrooijakkers 2022-08-04T07:55:19.671979Z

any ideas how to keep it yellow ? 🙂

jumar 2022-08-04T06:39:30.253089Z

Does spacemacs have an equivalent action (and keybinding) for projectile-find-file-in-directory?

erwinrooijakkers 2022-08-04T07:55:41.752499Z

If you use SPC-? you can search for keybindings

erwinrooijakkers 2022-08-04T07:58:46.531709Z

erwinrooijakkers 2022-08-04T07:58:56.504289Z

So apparently it’s SPC p d

jumar 2022-08-04T07:59:44.329309Z

That's not the same thing - I'm looking for projectile-find-file-in-directory

jumar 2022-08-04T07:59:57.524019Z

projectile-find-dir simply jumps to the directory

erwinrooijakkers 2022-08-04T08:00:47.646939Z

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)

erwinrooijakkers 2022-08-04T08:00:53.073189Z

s search is still free…

jumar 2022-08-04T08:03:11.145749Z

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)

erwinrooijakkers 2022-08-04T08:25:09.596669Z

ah haha i was not aware of user-defined bindings to avoid future collisions

erwinrooijakkers 2022-08-04T08:25:21.986159Z

makes sense