about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-06-21 07:00:37 +0100
committerDavid Morgan <djm_uk@protonmail.com>2023-06-21 07:00:37 +0100
commit8cf1ee3246893593c614a7a993ab5c764bb0b69a (patch)
treebffed001ee311b24b26cfcf0006ec0697e112a60
parent7417d0a2b991d6d0455267a675e3e924b448f442 (diff)
downloaddotfiles-8cf1ee3246893593c614a7a993ab5c764bb0b69a.tar.gz
Fix kill-sexp binding
-rw-r--r--.emacs.d/lisp/init-smartparens.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-smartparens.el b/.emacs.d/lisp/init-smartparens.el
index daac2dc..e698353 100644
--- a/.emacs.d/lisp/init-smartparens.el
+++ b/.emacs.d/lisp/init-smartparens.el
@@ -90,7 +90,7 @@ Equivalent to raising then wrapping."
               ("C-M-?" . sp-convolute-sexp)
               ([remap mark-sexp] . sp-mark-sexp)
               ("C-M-k" . sp-kill-sexp)
-              ("M-S-k" . kill-sexp)
+              ("M-K" . kill-sexp)
               ([remap sp-forward-sexp] . sp-fwd-sexp)
               ([remap sp-backward-sexp] . sp-bwd-sexp)
               ("M-[" . sp-wrap-square)