fix(magit): motion/TAB misbehavior w/ long lines

Ref: magit/magit#5320
This commit is contained in:
Henrik Lissner 2026-03-09 01:32:46 -04:00
parent dd72eac197
commit 9530c6fbfa
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -190,7 +190,12 @@ FUNCTION
(if (derived-mode-p 'org-mode)
(org-reveal '(4))
(require 'reveal)
(reveal-post-command)))))
(reveal-post-command))))
;; HACK: See magit/magit#5320: large/long status buffers can change the
;; behavior of motions and TAB in obscure ways.
;; REVIEW: REmove when magit/magit#5320 is addressed.
(setq-hook! 'magit-status-mode-hook long-line-threshold nil))
(use-package! forge