From 5aec6298cfc2ca9889f9fababf5d38281ce0a192 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 23 Apr 2024 01:40:07 +0530 Subject: (Emacs/config|core)+move-line-{up|down} --- Emacs/.config/emacs/config.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 8d2c83d..9df46d4 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -184,6 +184,27 @@ any buffers in ~+oreo/keep-buffer~ and kills the rest. (kill-buffer buf))) (buffer-list))) #+end_src +** Move line {up/down} +Shamelessly copied from +[[https://emacsredux.com/blog/2013/04/02/move-current-line-up-or-down/][this +article]]. Will be bound in [[file:core.org::*Some binds in +Emacs][core.org]]. +#+begin_src emacs-lisp +(defun move-line-up () + "Move up the current line." + (interactive) + (transpose-lines 1) + (forward-line -2) + (indent-according-to-mode)) + +(defun move-line-down () + "Move down the current line." + (interactive) + (forward-line 1) + (transpose-lines 1) + (forward-line -1) + (indent-according-to-mode)) +#+end_src * Aesthetics General look and feel of Emacs (mostly disabling stuff I don't like). ** Themes -- cgit v1.2.3-13-gbd6f