Mohsin Kaleem
Mohsin Kaleem
nope, it was 4, just set it to 1 and it's working great. thnx as always 😄.
@srustamo I use nerd-fonts, and replace some all-the-icons fonts with nerd-fonts. See [here](https://github.com/mohkale/emacs/blob/master/init.org#nerd-fonts).
@jcs090218 I'm running emacs in the **terminal** (also occasionally with emacsclient).  
Have you tried `quoted-insert`? It should be bound to `C-v` in the minibuffer. With it you can enter literal key characters such as `C-a` or more importantly `escape`. so you...
I've run into something like this a few times but could never reproduce it intentionally so I never made an issue.
After a cursory git bisection of the evil repo I landed upon [this](https://github.com/emacs-evil/evil/commit/948c49dae42adec4b81270b793caff743996bd29) commit as the first commit where `post-command-hook` became permenently buffer local. It seems like this commit made...
Specifically these lines from those commits https://github.com/emacs-evil/evil/blob/948c49dae42adec4b81270b793caff743996bd29/evil-states.el#L36 seem to be the ones causing this. My guess is somewhere in evil their setting `post-command-hook` to alias to the current state (eg....
Okay, not sure if this is an emacs bug or feature but looks like if you prepend a hook with a function that has the `permenent-local-hook` property then that hook...
Working from evil version `evil-20210109.807` and commenting out all the `(put var 'permanent-local-hook t)` calls from the commit above (+ one for `'evil-repeat-post-hook` in `evil-repeat.el`) seems to prevent `post-command-hook` becoming...
@minad I'm not sure what you mean? Creating an init file init.el with the following contents: ```lisp (add-hook 'post-command-hook (lambda () (message "Foo"))) (describe-variable 'post-command-hook) ``` Doesn't result in post-command-hook...