Akhil Wali

Results 47 comments of Akhil Wali

> Another suggestion: let the user map a second key for a non-sticky version of `SPC`. E.g: `,`. Thanks for chiming in, @viniciussbs! That's a good option, with the caveat...

Since justbur/emacs-which-key#247 hasn't been merged yet (and still has issues), my current workaround is to use `embark-prefix-help-command` from [embark](https://github.com/embarklabs/embark) for `prefix-help-command` instead: ```emacs-lisp (setq which-key-use-C-h-commands nil prefix-help-command #'embark-prefix-help-command) ```

Thanks for brining this up @bernardjoseph! I think your solution is fine, but it could be in a better place. The call to `god-mode-lookup-command` could be done in either: -...

Actually, I'm curious about the behavior with your change and the Caps Lock key turned on. Is the behavior correct in that case?

Thanks for reporting this @dadinn! From a quick check, I can recreate this. I'll try coming up with a fix soon.

It looks like this is due to God mode getting confused by the many ways key bindings for the TAB can be defined. For example, you can define a key...

Oh, before I forget to mention, a possible workaround for this issue is to define a keybinding for TAB in `god-local-mode-map` using `define-key`: ```emacs-lisp (define-key god-local-mode-map (kbd "TAB") 'indent-for-tab-command) ```...

Thanks for confirming! I'll add something about the `TAB` key to the README soon. Closing for now.

> Maybe there has to be an additional mode-map for `god-mode`, besides `god-local-mode-map`, which would be lower priority than the key-map of the given major mode? Or some other customization...

That looks good, @dadinn! Sorry for the late reply. This sounds like it might be useful to others so I'll add something to the README with your example.