0

I have started using Emacs as my editor and because I used to use vim as my editor, I decided to try Evil mode on Emacs. The problem is that if I try using the meta key (esc key) with another key (M-x as an example), the command doesn't get registered.

Launching Emacs with the -Q option makes the meta key work again, so I think is a evil mode problem.

This is my init.el file if it's necessary.

(tool-bar-mode 0)
(menu-bar-mode 0)
(set-scroll-bar-mode nil)
(setq inhibit-startup-screen t)
(setq initial-scratch-message nil)

(add-to-list 'load-path "~/.emacs.d/evil")
(require 'evil)
(evil-mode 1)

I haven't changed any setting from evil and searching online I couldn't find anything to solve my problem. Does anyone know about this problem and possibly how to fix it?

0 Answers0