Akhil Wali
Akhil Wali
It depends on how you initialise God mode. As mentioned in the README, calling the `god-mode` function only affects future buffers. To change both active and future buffers, you should...
Sorry, I can't seem to recreate this, although I'm using `after-init-hook`. Calling `god-mode-all` through `after-init-hook`, or through `doom-after-modules-config-hook` if you're using Doom Emacs, works fine. I can use the `c...
> or some reason enabling god-mode on startup using the `after-init-hook`, causes the `god-mode-enable-function-key-interaction` to be ignored. Even though I've set it to be `nil`, when I try to press...
Not a problem. So the `F11` issue is not a bug, but you're still having a problem calling projectile functions on start-up from what I understand?
Okay, looking at your config, it's because projectile key bindings aren't exposed through your package configuration that uses `:bind-keymap`. Can you try this config for projectile and let me know...
Haha not _exactly_. There's a call to `(require 'projectile)` you're missing. I copied your config and added these lines: ```diff (use-package projectile :hook (projectile-grep-finished . (lambda () (pop-to-buffer next-error-last-buffer))) :bind-keymap...