diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-16 22:28:56 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-16 22:28:56 +0200 |
commit | 44325c98d87645858f5f71eddfe8f6b12525d37c (patch) | |
tree | 9f95a543ccb58e6282f940e0c2b6f857ddccac42 /.config/emacs/editing.el | |
parent | 1e6038ce30cea9f0cb13535f01a2cd3915752c7f (diff) |
emacs: Rework ‘e/join-current-and-next-line’
Diffstat (limited to '.config/emacs/editing.el')
-rw-r--r-- | .config/emacs/editing.el | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/.config/emacs/editing.el b/.config/emacs/editing.el index 67d73eb..1920c91 100644 --- a/.config/emacs/editing.el +++ b/.config/emacs/editing.el @@ -16,12 +16,18 @@ This function wraps `align-regexp' and implicitly prepends REGEXP with (end (max (mark) (point)))) (align-regexp start end regexp 1 1 repeat))) -(defun e/join-current-and-next-line () +(defun e/join-current-and-next-line (&optional arg beg end) "Join the current- and next lines. -Join the next line after point to the line point is currently on. This -is in effect the reverse of `join-line'." - (interactive) - (delete-indentation 1)) +This function is identical to `join-line' but it joins the current line +with the next one instead of the previous one." + (interactive + (progn (barf-if-buffer-read-only) + (cons current-prefix-arg + (and (use-region-p) + (list (region-beginning) (region-end)))))) + (delete-indentation + (unless (or beg end) (not arg)) + beg end)) (defun e/transpose-previous-chars () "Transpose the two characters preceeding point. |