In Magit status buffer:
j T/l not available if use the recommended configuration in README
(use-package magit-todos
:after magit
:config (magit-todos-mode 1))
available if
(use-package magit-todos
:after magit-status
:config (magit-todos-mode 1))
I guess this is because #'magit-status-jump is initialized in magit-status.
I'm currently modifying https://github.com/syl20bnr/spacemacs/blob/develop/layers/%2Bsource-control/git/packages.el#L284, guessing other code won't affect the reproduction.