Add missing move-text-up bindings

This commit is contained in:
David Morgan 2021-08-21 19:44:44 +01:00
parent 2fa570f400
commit c6ec2458e4
1 changed files with 3 additions and 0 deletions

View File

@ -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))