[Emacs] Unbind M-<delete> in smartparens map

This commit is contained in:
Ivan Malison 2021-08-03 14:02:56 -06:00
parent c0140f8dfc
commit dc87af41ae
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -2035,7 +2035,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
(sp-local-pair 'org-mode "~" "~") (sp-local-pair 'org-mode "~" "~")
(unbind-key "C-M-<backspace>" smartparens-mode-map) (unbind-key "C-M-<backspace>" smartparens-mode-map)
(unbind-key "C-<backspace>" smartparens-mode-map) (unbind-key "C-<backspace>" smartparens-mode-map)
(unbind-key "M-<backspace>" smartparens-mode-map))) (unbind-key "M-<backspace>" smartparens-mode-map)
(unbind-key "M-<delete>" smartparens-mode-map)))
#+END_SRC #+END_SRC
** multiple-cursors ** multiple-cursors
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp