From 2b3860112a8df1b8a32ad5f1d9c116ae51b8fa29 Mon Sep 17 00:00:00 2001 From: Mitchell Tishmack Date: Wed, 14 Oct 2020 08:25:56 -0500 Subject: [PATCH] Add magit-todos to magit-mode Kinda neat shows todo's in source on the magit mode screen. --- emacs.org | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/emacs.org b/emacs.org index 678e7d9..68108b2 100644 --- a/emacs.org +++ b/emacs.org @@ -722,11 +722,18 @@ Make git not ass to use. At least in emacs. magit is the best git interface... i (window-configuration-to-register :magit-fullscreen) ad-do-it (delete-other-windows)) - (defadvice magit-quit-window (around magit-restore-screen activate) ad-do-it - (jump-to-register :magit-fullscreen)) - ) + (jump-to-register :magit-fullscreen))) +#+END_SRC + +And add TODO detection to the magit buffer. That way they get bubbled up to the +top to look at. + +#+BEGIN_SRC emacs-lisp +(use-package magit-todos + :after magit + :hook (magit-mode . magit-todos-mode)) #+END_SRC *** TODO workgroups2 :broken: