Make proced mode truncate lines

This commit is contained in:
Alexander Rosenberg 2024-10-15 17:32:33 -07:00
parent b1f3a1a9f4
commit 97bc04e3ad
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -1648,7 +1648,11 @@ If no name is given, list all bookmarks instead."
:bind ("C-x j" . proced) :bind ("C-x j" . proced)
:init :init
(setq proced-auto-update-flag t (setq proced-auto-update-flag t
proced-auto-update-interval 1)) proced-auto-update-interval 1)
(defun my/-setup-proced-mode ()
(visual-line-mode -1)
(setq-local truncate-lines t))
(add-hook 'proced-mode-hook 'my/-setup-proced-mode))
;; dired ;; dired
(use-package dired (use-package dired