drag-stuff for dragging selected regions

This commit is contained in:
2026-08-19 23:22:43 +02:00
parent 3693081e32
commit 5c1ee7683d
2 changed files with 11 additions and 0 deletions
+1
View File
@@ -81,6 +81,7 @@
(elpaca embark) ; Contextual actions
(elpaca embark-consult)
(elpaca wgrep) ; allow writeable grep buffers
(elpaca drag-stuff)
;(elpaca lsp-embark)
(elpaca kirigami) ; folding meta utility
(elpaca pcre2el) ; fix regex
+10
View File
@@ -36,5 +36,15 @@
(window-parameters (mode-line-format . none))))
)
(use-package drag-stuff
:defer t
:bind
(("<M-up>" . drag-stuff-up)
("<M-down>" . drag-stuff-down)
("<M-left>" . drag-stuff-left)
("<M-right>" . drag-stuff-right)
)
)
(provide 'editing-packages)