about summary refs log tree commit diff stats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-01-05 13:59:11 +0000
committerDavid Morgan <djm_uk@protonmail.com>2023-01-05 13:59:11 +0000
commit10ec570ba5020dfc47e406a2df71ed4f2542ebd1 (patch)
tree9a12177e8c5b1d0dc6876095ee2ff48bcc2ecaf0 /.emacs.d/lisp
parent40216aacfb6ef7d65bcbc49665888164bdf59fac (diff)
downloaddotfiles-10ec570ba5020dfc47e406a2df71ed4f2542ebd1.tar.gz
Add sp-{beginning,end}-of-sexp bindings
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/init-smartparens.el2
1 files changed, 2 insertions, 0 deletions
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)))