我對emacs完全陌生,並開始學習如何有效地使用它。Emacs:把psvn.el文件放在哪裏?
我想要使用的第一件事是svn模式。
我下載psvn.el並把它放在〜/ .emacs.d目錄
然後在psvn.el文件的註釋部分的指令之後,我把這個線
(require 'psvn)
進入.emacs文件
這是我目前.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.
'(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.
)
(require 'psvn)
現在,當我啓動emacs,我得到了這個錯誤信息:
An error has occurred while loading `/home/akong/.emacs':
File error: "Cannot open load file", "psvn"
To ensure normal operation, you should investigate the cause
of the error in your initialization file and remove it. Start
Emacs with the `--debug-init' option to view a complete error
backtrace
我把psvn.el放在錯誤的位置?
我使用的cygwin + WinXP的