我使用 emacs/orgmode 和 helm-google。
当我打开一个页面时,它会在谷歌浏览器中打开它。我希望它在 eww 中打开。 (理想情况下,甚至可以通过某种方式使用不同的热键在 eww/chrome 中打开页面)
我试图将 var: browse-url-generic 设置为 'eww',但没有成功。
我试过了

(setq browse-url-browser-function 'browse-url-generic
  browse-url-generic-program "eww")
(根据 How to make emacs org-mode open links to sites in Google Chrome? )但没有成功。
我向 helm-google 的作者询问了这个 in this post ,等待答复?

最佳答案

(setq browse-url-browser-function 'eww-browse-url)

应该是你要照顾的。

关于emacs (org-mode/helm-google) 在 eww 中打开链接?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28443064/

10-13 04:44