aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2019-01-24 14:14:57 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2019-01-24 14:14:57 +0100
commitd2ba5c4ebd3cfbbe39e48115cd28c2e9484c558c (patch)
treeb585b4be76ab92ed69194785c9b85bc4d34c1267
parent00eee3b335f7c34e98fb9d7ee483842bb17dd0ab (diff)
downloaddotfiles-d2ba5c4ebd3cfbbe39e48115cd28c2e9484c558c.tar.gz
dotfiles-d2ba5c4ebd3cfbbe39e48115cd28c2e9484c558c.zip
emacs: quit character must be an ASCII
This was making the terminal version of GNU Emacs to fail. In the end, this was not needed, so we can remove it to avoid trouble. Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
-rw-r--r--emacs/init.org2
1 files changed, 0 insertions, 2 deletions
diff --git a/emacs/init.org b/emacs/init.org
index dc4057b..83edab6 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -847,7 +847,6 @@ Now make sure that Evil is installed, and call the relevant configuration functi
(use-package evil
:ensure t
:config
-
(add-hook 'evil-mode-hook 'mssola-evil)
(evil-mode 1)
@@ -855,7 +854,6 @@ Now make sure that Evil is installed, and call the relevant configuration functi
;; with one of the most sacred Emacs prefixes, I'm moving to C-z.
(define-key key-translation-map (kbd "C-z") [escape])
(define-key evil-operator-state-map (kbd "C-z") 'keyboard-quit)
- (set-quit-char "C-z")
;; Use the proper initial evil state for the following modes.
(evil-set-initial-state 'help-mode 'normal)