This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-minor-mode code-wrap-mode | |
"Visually wrap the buffer text to the previous lines indent, plus a tab." | |
:lighter "" | |
(if code-wrap-mode | |
(progn | |
(visual-line-mode 1) | |
(jit-lock-register #'indent-prefix-wrap-function)) | |
(visual-line-mode 0) | |
(jit-lock-unregister #'indent-prefix-wrap-function) | |
(with-silent-modifications |