From 10ec570ba5020dfc47e406a2df71ed4f2542ebd1 Mon Sep 17 00:00:00 2001 From: David Morgan Date: Thu, 5 Jan 2023 13:59:11 +0000 Subject: [PATCH] Add sp-{beginning,end}-of-sexp bindings --- .emacs.d/lisp/init-smartparens.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.emacs.d/lisp/init-smartparens.el b/.emacs.d/lisp/init-smartparens.el index db995aa..208006f 100644 --- a/.emacs.d/lisp/init-smartparens.el +++ b/.emacs.d/lisp/init-smartparens.el @@ -80,6 +80,8 @@ Equivalent to raising then wrapping." ("M-;" . paredit-comment-dwim) ("M-q" . sp-indent-defun) ("C-j" . sp-newline) + ("C-S-a" . sp-beginning-of-sexp) + ("C-S-e" . sp-end-of-sexp) ("M-R" . kill-around-sexp) ("C-c C-S-d" . duplicate-sexp-after-point) ("C-c M-(" . wrap-round-from-behind)))