diff options
Diffstat (limited to 'custom')
-rw-r--r-- | custom/jao-custom-eww.el | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/custom/jao-custom-eww.el b/custom/jao-custom-eww.el index 441ab6a..81dcd6e 100644 --- a/custom/jao-custom-eww.el +++ b/custom/jao-custom-eww.el @@ -173,7 +173,11 @@ (eww-download-directory jao-sink-dir) (eww-header-line-format " %u") (eww-form-checkbox-selected-symbol "☒") - (eww-buffer-name-length 180)) + (eww-buffer-name-length 180) + (eww-readable-urls '("guardian\\.co\\.uk" + "theguardian\\.com" + "eldiario\\.es" + "theconversation"))) :config (with-eval-after-load "org" (require 'ol-eww nil t)) @@ -207,16 +211,6 @@ ("C-c C-w" . jao-eww-close) ("M-i" . eww-toggle-images)))) -;;; auto-readable -(defvar jao-eww-auto-readable-urls - (regexp-opt '("guardian.co.uk" "theguardian.com" "github.com" "eldiario.es"))) - -(defun jao-eww-autoread () - (when (string-match-p jao-eww-auto-readable-urls (or (eww-current-url))) - (eww-readable))) - -(add-hook 'eww-after-render-hook #'jao-eww-autoread) - ;;; fixes for shr image rendering (require 'shr) |