我对emacs相当陌生。事实上,我正在学习编辑器并尝试设置一些可以复制“转到项目内的文件”功能的东西,这些功能来自 Code::Blocks 或 notepad++ 的某些插件。
'projectile' 满足了这个需求,我通过 MELPA 安装了它。软件包安装正确,因为我可以启动它M-x projectile-global-mode
并且C-c p
可以识别命令。
但是,如果我将它放入我的.emacs
文件中,Emacs 会以错误开头:
Symbol's function definition is void: projectile-global-mode
我的.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-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.
)
(global-whitespace-mode 1)
(global-linum-mode 1)
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(projectile-global-mode 1)
当我尝试(require 'projectile)
第一次时,我只会遇到另一个错误:
'File error: Cannot open load file, projectile'
我正在使用 Emacs 24.3.1。
如何正确地将其设置为自动启动?