Open kaushalmodi opened 9 years ago
Thanks for this package!
I added the below to improve the readability of the vars in the table:
(with-eval-after-load 'stripe-buffer (defun modi/list-environment (orig-fun &rest args) (let ((truncate-partial-width-windows nil)) (apply orig-fun args) (setq-local line-move-visual nil) ; logical line navigation (set-window-fringes nil 0 0) ; disable fringes in current window (toggle-truncate-lines -1) (stripe-listify-buffer))) (advice-add 'list-environment :around #'modi/list-environment))
The alternate stripes make it evident how many lines an env var value has wrapped.
Thanks for this package!
I added the below to improve the readability of the vars in the table:
The alternate stripes make it evident how many lines an env var value has wrapped.