mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
17 lines
300 B
EmacsLisp
17 lines
300 B
EmacsLisp
;;; siren-move-dup.el --- jimeh's Emacs Siren: move-dup
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configuration for move-dup
|
|
|
|
;;; Code:
|
|
|
|
(use-package move-dup
|
|
:bind
|
|
("M-p" . md-move-lines-up)
|
|
("M-n" . md-move-lines-down)
|
|
("C-x C-d" . md-duplicate-down))
|
|
|
|
(provide 'siren-move-dup)
|
|
;;; siren-move-dup.el ends here
|