Open zeroDivisible opened 8 years ago
A possible workaround which removes the need for the change from above is to set the initial state for *Messages*
buffer to i.e. motion with:
(evil-set-initial-state 'messages-buffer-mode 'motion)
However, the error from above still happens for me.
I'm seeing a similar problem, and just for yaml files. This error didn't appear before I installed the yaml-mode
package.
Fwiw the same problem happens with .cabal
files and the haskell-mode package
Hey guys.
In my
emacs.org
, I've got the following configuration:I needed to use it like that as without the extra
(evil-mode nil)
, leader wasn't bound in*Messages*
buffer. I found the solution in https://github.com/cofi/evil-leader/issues/10This works as expected, binding leader in
*Messages*
(which is ultimately what I'm trying to achieve), however, when opening new i.e Yaml buffer, I'm getting the following error message:The full and lengthy stacktrace which I'm getting with this is:
Strangely, if I try to open this file for a second time, it works as expected.
What would be the advised way of fixing this error and / or making leader work in
*Messages*
buffer?Thanks!