emacs
381 days ago
(setq w3m-key-binding 'info) 不起作用 解决
把(setq w3m-key-binding ‘info) 放入.emacs 中后, 并不起作用.
使用M-x customize-option
(custom-set-variables ‘(w3m-key-binding (quote info)))
分析一下,emacs-w3m初始化时会设定键绑定,此时会读取w3m-key-binding的值,以后再设置 w3m-key-binding则不起作用了.
所以把(setq w3m-key-binding ‘info)放在(require ‘w3m)以前即可
(custom-set-variables ‘(w3m-key-binding (quote info)))这个可能有hook什么的吧?