开发者

Can't make Yasnippets work in Emacs, help!

I can't make Yasnippets work (normal version). When I start Emacs it says:

error: Error ~/.emacs.d/plugins/yasnippet-0.6.1c/snippets/ not a directory

I added this to my .emacs file:

(add-to-list 'load-path
    "~/.emacs.d/plugins/yasnippet-0.6.1c")
    (require 'yasnippet) ;; not yasnippet-bundle
    (yas/initialize)
    (yas/load-directory "~/.emacs.d/plugins/yasnippet-0.6.1c/snippets/")

and my yasnippets files are placed in the following folders:

D:\Program Files\emacs-23.1\site-lisp\plugins\yasnipp开发者_C百科et-0.6.1c

and the snippets:

D:\Program Files\emacs-23.1\site-lisp\plugins\yasnippet-0.6.1c\snippets

All others plugins work so I'm sure its the right load-path

Help!


Perhaps you could write the whole path, instead of a relative one, like this:

add-to-list 'load-path
    "D:/Program Files/emacs-23.1/site-lisp/plugins/yasnippet-0.6.1c")
    (require 'yasnippet) ;; not yasnippet-bundle
    (yas/initialize)
    (yas/load-directory "D:/Program Files/emacs-23.1/site-lisp/plugins/yasnippet-0.6.1c/snippets")

Notice the forward slashes, and please make sure that emacs doesn't mind the spaces... Windows is less forgiving than Linux with these kinds of paths. Also, make sure your emacs install reads that dir. Usually, you should put an emacs dir where your .emacs is (in Windows), that makes it more clear. It

Another thing: 1) maybe you're trying your snippet in the wrong mode. Make sure there is a snippet for the mode you're in.

See here as well, lots of info here: GNU Emacs for Windows

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜