如果我使用emacs -q
启动emacs,则emacs不知道命令M-x View-goto-percent
,(允许按百分比值跳转大文件)。
但是,如果我输入C-h a percent
(搜索apropos“百分比”),它会找到View-goto-percent
命令,然后我可以使用它。
为什么会发生这种情况,我应该在.emacs
中添加什么才能在启动时提供M-x View-goto-percent
?
我的emacs版本(M-x version
)是:
GNU Emacs 23.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.6) of 2012-09-21 on roseapple, modified by Debian
答案 0 :(得分:4)
只需require
包含View-goto-percent
的库:
(require 'view)
或者,为此功能创建一个自动加载,以便在首次使用时自动加载:
(autoload 'View-goto-percent "view")
答案 1 :(得分:3)
View-goto-percent属于次模式视图,因此您应该使用view-mode-enter启用该功能