summaryrefslogtreecommitdiff
path: root/.config/emacs/editing.el
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-19 23:20:04 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-10-19 23:20:04 +0200
commitb37ed033f65b56d9ec249b25bbfdf27aaef6bc9a (patch)
treedea015983bdb5ea4f039f0241c0eb0072ca2928c /.config/emacs/editing.el
parent2b46ba373d475c2da8e16d89899977da56ea6718 (diff)
emacs: Implement e/split-line
Diffstat (limited to '.config/emacs/editing.el')
-rw-r--r--.config/emacs/editing.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/emacs/editing.el b/.config/emacs/editing.el
index f635705..951a774 100644
--- a/.config/emacs/editing.el
+++ b/.config/emacs/editing.el
@@ -156,4 +156,21 @@ point."
(previous-line 2)
(end-of-line)))
+(defun e/split-line (&optional above)
+ "Split the line at point.
+Place the contents after point on a new line, indenting the new line
+according to the current major mode. With prefix argument ABOVE the
+contents after point are placed on a new line before point."
+ (interactive "P")
+ (save-excursion
+ (let* ((start (point))
+ (end (pos-eol))
+ (string (buffer-substring start end)))
+ (delete-region start end)
+ (when above
+ (goto-char (1- (pos-bol))))
+ (newline)
+ (insert string)
+ (indent-according-to-mode))))
+
(provide 'editing)