diff options
author | Alan Pearce | 2014-07-26 22:10:36 +0100 |
---|---|---|
committer | Alan Pearce | 2014-07-26 22:10:36 +0100 |
commit | 1438a338da1177242ca0cb4cc80dbe7edd3cc034 (patch) | |
tree | eda33c9d8cb9ced178f515c772d61d58b7bd9ee4 /tag-emacs/emacs.d/init.el | |
parent | f486895467215f531cfb08005f7782a73be2c142 (diff) | |
download | nixfiles-1438a338da1177242ca0cb4cc80dbe7edd3cc034.tar.lz nixfiles-1438a338da1177242ca0cb4cc80dbe7edd3cc034.tar.zst nixfiles-1438a338da1177242ca0cb4cc80dbe7edd3cc034.zip |
Emacs: Configure cedit
Diffstat (limited to 'tag-emacs/emacs.d/init.el')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index e4ed9e3a..3f2464f5 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -942,6 +942,22 @@ (eldoc-add-command 'paredit-backward-delete 'paredit-close-round 'autopair-insert-opening) (setq eldoc-idle-delay 0.1))) +(defvar cedit-mode-map (make-sparse-keymap) + "Keymap for the cedit minor mode.") +(req-package cedit + :diminish "{}" + :config (progn + (bind-key "C-M-b" #'cedit-beginning-of-statement cedit-mode-map) + (bind-key "C-M-f" #'cedit-end-of-statement cedit-mode-map) + (bind-key "C-M-d" #'cedit-down-block cedit-mode-map) + (bind-key "C-M-u" #'cedit-up-block-backward cedit-mode-map) + (bind-key "C-M-n" #'cedit-up-block-forward cedit-mode-map) + (bind-key "M-{" #'cedit-wrap-brace cedit-mode-map) + (bind-key "C-)" #'cedit-or-paredit-slurp cedit-mode-map) + (bind-key "C-}" #'cedit-or-paredit-barf cedit-mode-map) + (bind-key "M-<up>" #'cedit-or-paredit-splice-killing-backward cedit-mode-map) + (bind-key "M-r" #'cedit-or-paredit-raise cedit-mode-map))) + (req-package paredit :diminish "()" :commands (paredit-mode) |