diff options
author | Alan Pearce | 2015-06-11 15:39:18 +0200 |
---|---|---|
committer | Alan Pearce | 2015-06-11 15:39:18 +0200 |
commit | e3a948891e3a30081a045f83cf7beb151075c1b5 (patch) | |
tree | e9a29b75123617b9a9a739991d5c0968ad4a4c5f /tag-emacs | |
parent | 13290f1c8f69cf45f6c0b621f4bec96df8fd7301 (diff) | |
download | dotfiles-e3a948891e3a30081a045f83cf7beb151075c1b5.tar.lz dotfiles-e3a948891e3a30081a045f83cf7beb151075c1b5.tar.zst dotfiles-e3a948891e3a30081a045f83cf7beb151075c1b5.zip |
Emacs: Move sp-transpose to classic C-M-t
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 49b0f07..f097b27 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1261,7 +1261,7 @@ symbol, not word, as I need this for programming the most." (bind-key "C-)" #'sp-forward-slurp-sexp 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 "C-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) |