2014-10-09 44 views
1

我用el-get安裝了help-fns+.el,但我找不到M-x的功能。 我必須在我的init文件中明確添加 (require 'help-fns+) 。這是el-get還是help-fns+.el的問題?el-get未能加載包

這是我在el-get的init文件中的設置。

(add-to-list 'load-path "~/.emacs.d/el-get/el-get") 
(unless (require 'el-get nil 'noerror) 
(with-current-buffer 
(url-retrieve-synchronously 
"https://raw.githubusercontent.com/dimitri/el-get/master/el-get-install.el") 
(goto-char (point-max)) 
(eval-print-last-sexp))) 
(add-to-list 'el-get-recipe-path "~/.emacs.d/el-get-user/recipes") 
(el-get 'sync) 
+0

但即使它沒有被請求,它應該被自動加載,一旦我運行它的命令。使用el-get可能不明智。我正在切換到官方packages.el。謝謝你們一樣! – godblessfq 2014-10-13 23:36:16

回答

0

在你展示的代碼中沒有告訴Emacs的加載help-fns+.el - 除了明確(require 'help-fns+)。除此之外,如果你在recipes中有某些東西需要處理。顯示所有相關的代碼,也許有人可以幫助更多。

否則,是的,要加載help-fns+.el你需要告訴Emacs加載它​​!一種方法是(1)將該庫存入您的load-path,然後(2)(require 'help-fns+)