]> git.eshelyaron.com Git - emacs.git/commitdiff
Optionally turn on visual-line-mode + outline support
authorRahguzar <rahguzar@zohomail.eu>
Tue, 24 Oct 2023 21:35:44 +0000 (23:35 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 25 Nov 2023 10:56:16 +0000 (12:56 +0200)
* lisp/net/eww.el (eww-render): Turn on 'visual-line-mode'
in absence of filling.
(eww-mode): Set 'outline-regexp' and 'outline-level'.
(Bug#66676)

lisp/net/eww.el

index d8a66b2ce32c1a223afadc0cb7bba1afae933c0e..77bb6be2904c3f619006d55001067f29781bc49f 100644 (file)
@@ -657,6 +657,8 @@ The renaming scheme is performed in accordance with
              (setq eww-history-position 0)
              (and last-coding-system-used
                   (set-buffer-file-coding-system last-coding-system-used))
+              (unless shr-fill-text
+                (visual-line-mode))
              (run-hooks 'eww-after-render-hook)
               ;; Enable undo again so that undo works in text input
               ;; boxes.
@@ -1217,6 +1219,8 @@ the like."
   (setq-local shr-url-transformer #'eww--transform-url)
   ;; Also rescale images when rescaling the text.
   (add-hook 'text-scale-mode-hook #'eww--rescale-images nil t)
+  (setq-local outline-search-function 'shr-outline-search
+              outline-level 'shr-outline-level)
   (setq buffer-read-only t))
 
 (defvar text-scale-mode)