mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
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
|