Emacs: Fix smartparens load issues
Alan Pearce alan@alanpearce.co.uk
Fri, 19 Sep 2014 19:56:21 +0100
1 files changed, 4 insertions(+), 9 deletions(-)
jump to
M tag-emacs/emacs.d/init.el → tag-emacs/emacs.d/init.el
@@ -1054,16 +1054,15 @@ :diminish eldoc-mode :config (progn (setq eldoc-idle-delay 0.1))) -(req-package smartparens - :defer t +(req-package smartparens-config :config (progn (sp-use-smartparens-bindings) (fset 'wrap-with-paren "\C-](") ;; `sp-select-next-thing-exchange' (bind-key "C-(" #'wrap-with-paren sp-keymap) (bind-key "C-)" #'sp-forward-slurp-sexp sp-keymap) - (bind-key "M-<backspace>" #'backwarp-kill-word sp-keymap) - (bind-key "M-?" #'sp-convolute-sexp sp-keymap sp-keymap) - (bind-key "M-t" #'sp-transpose-sexp sp-keymap sp-keymap) + (bind-key "M-<backspace>" #'backward-kill-word sp-keymap) + (bind-key "M-?" #'sp-convolute-sexp sp-keymap) + (bind-key "M-t" #'sp-transpose-sexp sp-keymap) (bind-key "M-r" #'sp-raise-sexp sp-keymap) (bind-key "M-s" #'sp-splice-sexp sp-keymap) (bind-key "M-S" #'sp-split-sexp sp-keymap) @@ -1072,10 +1071,6 @@ (bind-key "M-<up>" #'sp-splice-sexp-killing-backward sp-keymap) (bind-key "M-<down>" #'sp-splice-sexp-killing-forward sp-keymap) (show-smartparens-global-mode t) (smartparens-global-strict-mode t))) - -(req-package smartparens-config - :require smartparens - :defer t) (req-package move-text :config (move-text-default-bindings))