From d48072916673b9e640bb84a1842c0051ccd8c1bd Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 20 Aug 2015 02:12:26 -0700 Subject: [PATCH] Remove M- from smartparens --- dotfiles/emacs.d/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 91414246..d254863a 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -498,6 +498,8 @@ The current directory is assumed to be the project's root otherwise." (require 'smartparens-config) (smartparens-global-mode 1) (sp-use-smartparens-bindings) + (unbind-key "C-" smartparens-mode-map) + (unbind-key "M-" smartparens-mode-map) (bind-key "C-)" 'sp-forward-slurp-sexp smartparens-mode-map) (bind-key "C-}" 'sp-forward-barf-sexp smartparens-mode-map) (bind-key "C-(" 'sp-backward-slurp-sexp smartparens-mode-map)