如何在不刷新页面的情况下在eww中切换显示图像?
我使用eww浏览互联网,并且经常不希望加载图像,其中似乎没有为eww内置的自定义项太多,也没有处理图像的问题。 目前,我有一个系统设置程序,该程序可以让我开始和停止以eww形式显示图像,但只有在刷新页面后,我想要的是一种无需打开页面即可打开和关闭图像的方法。 这是我当前的方法,它利用了shr-put-imageeww使用的内部原理。 (defvar display-graphic-override nil "Used to override `display-graphic-p' behavior. Should either be nil, or a list where the car is the override.") (defadvice display-graphic-p (around sometimes-lie activate) "Use the override if it is non nil." (if display-graphic-override (car display-graphic-override) ad-do-it)) (defadvice eww-render (around no-images activate) "Temporarily lie about …