emacs下yasnippet小结

yasnippet是直接在emacs24的elpa下载安装的。
~/.emacs.d/elpa/yasnippet-0.8.0/snippets/下有很多模板。自定义模板是出现许多问题。
自定义模板会自动将新建的模板保存在~/.emacs.d/snippets/下,不知道怎么改到上面的那个目录下去,本来想吧上面的~/.emacs.d/elpa/yasnippet-0.8.0/snippets/放到~/.emacs.d/snippets/就好了。后来想想不如新建~/.emacs.d/snippets/好了,这样也方便区分自建的模板和自带的模板。

几个例子展现yasnippet的强大

例子1:

# name: test
# key: test
# --
this is field $1
this is field ${2:default text}
this is a mirror $2
this is a mirror with transformation ${2:$(upcase text)}

例子2:可以直接在已有的模板上添加修改,为输入添加选项

# name: test2
# key: test2
# --
FILE *${fp} = fopen(${"file"}, "${$$(yas/choose-value '("r" "r+" "w" "w+" "a" "a+"))}");



你可能感兴趣的:(emacs)