Óscar Fuentes <[email protected]> writes: > [email protected] (jenia.ivlev) writes: > >> I want to use emacs-state in term-mode and undo-tree-mode. >> How do I achieve that? >> I tried: >> (add-to-list 'evil-emacs-state-modes undo-tree-mode) >> >> This didn't work for some reason. >> >> So again, What should I do to be in emacs-state in term-mode for >> exmaple? > > You need to quote the name of the mode: > > (add-to-list 'evil-emacs-state-modes 'undo-tree-mode) > _____________________________________^ > > Alternatively, you can switch to Emacs mode anytime with C-z.
Oh, but undo-tree-mode is a minor mode. I think that evil-emacs-state-modes works for major modes only. And you don't want to use Emacs mode on all buffers where undo-tree-mode is active, do you? term-mode is a major mode, so (add-to-list 'evil-emacs-state-modes 'term-mode) should work. _______________________________________________ implementations-list mailing list [email protected] https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list
