about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-editor.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-08-21 19:44:44 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-08-21 19:44:44 +0100
commitc6ec2458e4049482a3c4c946dc305765c79df0b8 (patch)
treec0286d3ea1f2dcc9c75fcd931946a5896fc7bf35 /.emacs.d/lisp/init-editor.el
parent2fa570f400a55b9860b7a16e93ccf204a21ddcc7 (diff)
downloaddotfiles-c6ec2458e4049482a3c4c946dc305765c79df0b8.tar.gz
Add missing move-text-up bindings
Diffstat (limited to '.emacs.d/lisp/init-editor.el')
-rw-r--r--.emacs.d/lisp/init-editor.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el
index ce6a617..2c0936c 100644
--- a/.emacs.d/lisp/init-editor.el
+++ b/.emacs.d/lisp/init-editor.el
@@ -85,6 +85,9 @@ and file 'filename' will be opened and cursor set on line 'linenumber'"
 
 (use-package move-text
   :bind
+  ;; TODO don't need all of these?
+  ("M-S-<up>" . move-text-up)
+  ("C-S-<up>" . move-text-up)
   ("M-S-<down>" . move-text-down)
   ("C-S-<down>" . move-text-down))