diff options
author | David Morgan <djm_uk@protonmail.com> | 2023-02-23 12:00:43 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2023-02-23 12:00:43 +0000 |
commit | eccec831a5e87b31541d1d46bfae7520161736ec (patch) | |
tree | f4b24ebdd772f1477597c0556c3296cd30872bc3 | |
parent | c544812af515ba46057c200d1a2edba0aca6732f (diff) | |
download | dotfiles-eccec831a5e87b31541d1d46bfae7520161736ec.tar.gz |
Try different bindings for sp-{beginning,end}-of-sexp
-rw-r--r-- | .emacs.d/lisp/init-smartparens.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-smartparens.el b/.emacs.d/lisp/init-smartparens.el index 208006f..0f96b64 100644 --- a/.emacs.d/lisp/init-smartparens.el +++ b/.emacs.d/lisp/init-smartparens.el @@ -81,7 +81,9 @@ Equivalent to raising then wrapping." ("M-q" . sp-indent-defun) ("C-j" . sp-newline) ("C-S-a" . sp-beginning-of-sexp) + ("M-A" . sp-beginning-of-sexp) ("C-S-e" . sp-end-of-sexp) + ("M-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))) |