evil
evil copied to clipboard
Disable evil states for a given major mode
I'm having some problems when using pdf-tools along with evil, some commands don't work when in visual state. How can I disable visual state only on pdf-mode?
Issue type
- Question
Environment
Emacs version: 28.2
Operating System: Arch Linux
Evil version: 1.15.0
Evil installation type: MELPA
Graphical/Terminal: Graphical
Tested in a make emacs
session (see CONTRIBUTING.md): No
Is this a duplicate of #1671 ?
I think it's the same problem, but while #1671 asks for a variable/extra function get implemented to prevent evil from entering 'visual-state' after a mouse-drag I just want to know how to disable visual state.
How can I disable visual state only on pdf-mode?
Just do not execute any commands that enter Visual state, either by unbinding or not typing them? I do not see the issue.
Or add an advice to evil-visual-state
that errors if major-mode
is some value.