aboutsummaryrefslogtreecommitdiffstats
path: root/oni-smartparens.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-09-20 13:40:05 -0700
committerGravatar Tom Willemse2022-09-20 13:40:05 -0700
commit90c9ef6270c94d72222d126fc5e918644e77179a (patch)
treeba2ee39e4abaf009e2e307b254a218ceeba44be4 /oni-smartparens.el
parent5d59327d8d8e7f734b1968bbfab6295e309a6afb (diff)
downloademacs-config-90c9ef6270c94d72222d126fc5e918644e77179a.tar.gz
emacs-config-90c9ef6270c94d72222d126fc5e918644e77179a.zip
[oni-smartparens] Add keybind for ‘sp-splice-sexp-killing-backward’
Diffstat (limited to 'oni-smartparens.el')
-rw-r--r--oni-smartparens.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/oni-smartparens.el b/oni-smartparens.el
index d568f3d..2072e52 100644
--- a/oni-smartparens.el
+++ b/oni-smartparens.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.0715.215509
+;; Version: 2022.0920.133906
;; Package-Requires: (smartparens)
;; This program is free software; you can redistribute it and/or modify
@@ -31,9 +31,10 @@
(require 'smartparens-config)
-(define-key smartparens-mode-map (kbd "C-<right>") 'sp-slurp-hybrid-sexp)
(define-key smartparens-mode-map (kbd "C-<left>") 'sp-forward-barf-sexp)
+(define-key smartparens-mode-map (kbd "C-<right>") 'sp-slurp-hybrid-sexp)
(define-key smartparens-mode-map (kbd "C-M-<right>") 'sp-backward-barf-sexp)
+(define-key smartparens-mode-map (kbd "M-<up>") 'sp-splice-sexp-killing-backward)
(provide 'oni-smartparens)
;;; oni-smartparens.el ends here