Codebase list magit-todos / 0faf1f7
New upstream version 1.5.3 Lev Lamberov 3 years ago
2 changed file(s) with 14 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
1111 :PROPERTIES:
1212 :TOC: siblings
1313 :END:
14
1415 - [[#screenshots][Screenshots]]
1516 - [[#installation][Installation]]
1617 - [[#usage][Usage]]
131132 :TOC: 0
132133 :END:
133134
135 *** 1.5.3
136
137 *Fixes*
138 + Remove face from indentation. (Thanks to [[https://github.com/Alexander-Miller][Alexander Miller]].)
139
134140 *** 1.5.2
135141
136142 *Fixes*
33
44 ;; Author: Adam Porter <adam@alphapapa.net>
55 ;; URL: http://github.com/alphapapa/magit-todos
6 ;; Version: 1.5.2
6 ;; Version: 1.5.3
77 ;; Package-Requires: ((emacs "25.2") (async "1.9.2") (dash "2.13.0") (f "0.17.2") (hl-todo "1.9.0") (magit "2.13.0") (pcre2el "1.8") (s "1.12.0"))
88 ;; Keywords: magit, vc
99
115115 "The current scan's process.
116116 Used to avoid running multiple simultaneous scans for a
117117 magit-status buffer.")
118
119 ;; FIXME: Jumping binds. In `magit-status-mode-map' now, "j" is bound
120 ;; to `magit-status-jump', which is a Transient command; it's no
121 ;; longer bound to a prefix map. There doesn't seem to be a way to
122 ;; add binds to that Transient command's body.
118123
119124 (defvar magit-todos-section-map
120125 (let ((map (make-sparse-keymap)))
774779 ;; NOTE: `magit-insert-section' seems to bind `magit-section-visibility-cache' to nil, so setting
775780 ;; visibility within calls to it probably won't work as intended.
776781 (declare (indent defun))
777 (let* ((indent (s-repeat (* 2 depth) " "))
782 (let* ((indent (propertize (s-repeat (* 2 depth) " ") 'face nil))
778783 (heading (concat indent heading))
779784 (magit-insert-section--parent (if (= 0 depth)
780785 magit-root-section
836841 ;; NOTE: `magit-insert-section' seems to bind `magit-section-visibility-cache' to nil, so setting
837842 ;; visibility within calls to it probably won't work as intended.
838843 (declare (indent defun))
839 (let* ((indent (s-repeat (* 2 depth) " "))
844 (let* ((indent (propertize (s-repeat (* 2 depth) " ") 'face nil))
840845 (magit-insert-section--parent (if (= 0 depth)
841846 magit-root-section
842847 magit-insert-section--parent))