From 3552e17ae9ae2d413f04325ce04bd9cd9c15454c Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 31 Mar 2025 12:48:31 +0200 Subject: [PATCH] Create the magit-goto-beginning-of-section helper --- configuration.org | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/configuration.org b/configuration.org index 413482c..d1e724c 100644 --- a/configuration.org +++ b/configuration.org @@ -675,6 +675,17 @@ From [[http://whattheemacsd.com/file-defuns.el-02.html][whattheemacsd.org]]. (message "File '%s' successfully removed" filename))))) #+end_src +** Magit + +*** Go to the beginning of the current section + +#+begin_src emacs-lisp +(defun gpolonkai/magit-goto-beginning-of-section () + (interactive) + (let ((section (magit-current-section))) + (magit-section-goto section))) +#+end_src + * Set up the very basics Now that we have package management configured we can set up defaults more easily. This includes every builtin packages, font faces, and the like.