Emacs: 无法打开加载文件,go-autocomplete

3
我正在尝试在Emacs上安装 [gocode][1],但是我遇到了以下错误信息:
Warning (initialization): An error occurred while loading `/home/darwin/.emacs':

File error: Cannot open load file, no such file or directory, go-autocomplete

To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file.  Start Emacs with
the `--debug-init' option to view a complete error backtrace.

当我使用 --debug-init 运行 Emacs 时,会收到以下信息(不太美观):
Debugger entered--Lisp error: (file-error "Cannot open load file" "no such file or directory" "go-autocomplete")
  require(go-autocomplete)
  eval-buffer(#<buffer  *load*> nil "/home/darwin/.emacs" nil t)  ; Reading at buffer position 1831
  load-with-code-conversion("/home/darwin/.emacs" "/home/darwin/.emacs" t t)
  load("~/.emacs" t t)
  #[0 "\205\262�    \306=\203�\307\310Q\202;�   \311=\204�\307\312Q\202;�\313\307\314\315#\203*�\316\202;�\313\307\314\317#\203:�\320\nB\321\202;�\316\322\323\322\211#\210\322=\203a�\324\325\326\307\327Q!\"\323\322\211#\210\322=\203`�\210\203\243�\330!\331\232\203\243�\332!\211\333P\334!\203}�\211\202\210�\334!\203\207�\202\210�\314\262\203\241�\335\"\203\237�\336\337#\210\340\341!\210\266\f?\205\260�\314\323\342\322\211#)\262\207" [init-file-user system-type delayed-warnings-list user-init-file inhibit-default-init inhibit-startup-screen ms-dos "~" "/_emacs" windows-nt "/.emacs" directory-files nil "^\\.emacs\\(\\.elc?\\)?$" "~/.emacs" "^_emacs\\(\\.elc?\\)?$" (initialization "`_emacs' init file is deprecated, please use `.emacs'") "~/_emacs" t load expand-file-name "init" file-name-as-directory "/.emacs.d" file-name-extension "elc" file-name-sans-extension ".el" file-exists-p file-newer-than-file-p message "Warning: %s is newer than %s" sit-for 1 "default"] 7 "\n\n(fn)"]()
  command-line()
  normal-top-level()

我已经使用包管理器安装了Emacs(常规)自动完成的版本,这是安装gocode所需的(顺便说一下,此包管理器不支持gocode)。如果有用的话,我的目录如下: Emacs文件夹名为:.emacs.d:
/.emacs.d
  /auto-save-list
  /elpa
  go-autocomplete.el

Emacs 的初始化文件夹:

(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 '(custom-enabled-themes (quote (misterioso)))
 '(inhibit-startup-screen t))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )
(when (>= emacs-major-version 24)
  (require 'package)
  (package-initialize)
 ; (add-to-list 'package-archives
                    ;          '("melpa-stable" . "http://stable.melpa.org/packages/") t)
  (add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/"))
  (add-to-list 'package-archives '("melpa-stable" . "http://stable.melpa.org/packages/") t)
  (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
  )


;; Update Emacs config for godoc
(setenv "PATH" "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/local/go/bin")
(setenv "GOPATH" "~/go")

;; calls gofmt before save
(setq exec-path (cons "/usr/local/go/bin" exec-path))
(add-to-list 'exec-path "/go/bin")
;(add-hook 'before-save-hook 'gofmt-before-save)
(defun my-go-mode-hook ()
  ; Call Gofmt before saving
  (add-hook 'before-save-hook 'gofmt-before-save)
  ; Customize compile command to run go build
  (if (not (string-match "go" compile-command))
      (set (make-local-variable 'compile-command)
           "go build -v && go test -v && go vet"))
  ; Godef jump key binding
  (local-set-key (kbd "M-.") 'godef-jump))
(add-hook 'go-mode-hook 'my-go-mode-hook)

;; Gocode: Go aware Autocomplete
(require 'go-autocomplete)
(require 'auto-complete-config)
;; Go eldoc (via package control) REQUIRES GOCODE
(require 'go-eldoc)
(add-hook 'go-mode-hook 'go-eldoc-setup)

如果有人能帮助我弄清楚如何使gocode工作,那将是太棒了。提前感谢你。
附言:如果需要,我可以添加其他目录。 [1]: https://github.com/nsf/gocode

1
我认为@lawlist的意思是:(1)go-autocomplete.el不在你的load-path中,需要添加。(2)go-autocomplete.el可以放在任何地方,只需将其目录添加到load-path即可。 - Drew
1个回答

7
.emacs.d的根目录通常不是load-path的一部分,甚至最近的Emacs版本会向用户发出警告信息,阻止用户这样做。请创建一个名为lisphello-world的子文件夹,并将您的库放入其中,然后将lisphello-world目录添加到您的load-path中并重新启动Emacs。以下是有关load-path的相关文档链接:https://www.gnu.org/software/emacs/manual/html_node/emacs/Lisp-Libraries.html 示例(放置在.emacs文件中):
(add-to-list 'load-path "/path/to/my/lisp/library")

我应该把文件夹放在 .emacs.d 中吗?还是要新建一个文件夹? - nonamorando
Emacs会在主目录下创建.emacs.d文件夹,除非你已经更改了它的位置。用户的elisp库通常放在其中的lisphome-world目录中,尽管只要load-path正确,它几乎可以放在计算机的任何地方。 - lawlist
很酷,错误不再出现了。虽然Gocode不起作用,但无论如何,这解决了所提出的问题。谢谢! - nonamorando

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接