首页 > 代码库 > 自定义 Yasnippet 模板
自定义 Yasnippet 模板
yasnippet可以把我们常用的代码段或文本储存起来,到使用的时候只需键入几个字母就会自动带出。
比如我们在写python代码时,常常会在文件的第一行写下: #!/usr/bin/env python,经常这么手工键入是不是很没有效率,用yasnippet来帮你!
方法:
一、新建snippet
使用命令 M-x yas-new-snippet 打开一个新buffer,或者直接新建一个文件,输入内容后保存到你指定的位置即可。
用M-x yas-new-snippet 打开的buffer内容默认如下:
# -*- mode: snippet; require-final-newline: nil -*-# name:# key:# binding: direct-keybinding# –
其实只需要以下内容就可以了:
# name: file header# key: fh# binding: direct-keybinding# --#!/usr/bin/env python# coding:utf-8# Filename:`(file-name-nondirectory buffer-file-name)`$0
解释下
name: file header 这是片段的名称,叫做 file header,这个 file header会显示在emacs菜单栏的yasnippet里。
key: fh 这是快捷键,在文件里输入fh后按tab键就会展开这个片段。
从#-- 以下输入代码片段就好了
Filename:`(file-name-nondirectory buffer-file-name)` 这个有意思了,这个是显示当前buffer的名字的,让emacs帮你自动写。
$0 表示片段展开后光标所在的位置
二、保存
snippet写好后要保存到哪里呢?一般可以保存到yasnippet的默认安装位置(.emacs.d/elpa/yasnippet-20140729.1240/snippets),或者是自己定义的位置,比如:~/.emacs.d/custom-snippets。如果保存到默认位置则不需特别设置即可使用;如果保存到了自定义的位置,那么还要在.emacs配置文件里告诉emacs到哪里去找这个片段:
;Yasnippet(require ‘yasnippet);设置snippet目录(setq yas-snippet-dirs ‘("~/.emacs.d/custom-snippets" ;personal snippets"~/.emacs.d/elpa/yasnippet-20140729.1240/snippets" ;default;"~/.emacs.d/elpa/yasnippet-20140720.1534/snippets" ;default))(yas-global-mode 1)
注意yasnippet的目录名,当你更新后这个目录名会变的。目前还没有办法,只有每次更新后手工去改这个路径。
最后注意 在自定义的 custom-snippets 目录中要建一个python-mode目录!把刚创建的文件放在里面。
三、使用
新建一个python文件,在文件第一行键入 fh 然后按 tab 键,显示效果如下:
--End--
附:
#!/usr/bin/env python 叫做 shebang line
http://stackoverflow.com/questions/2429511/why-do-people-write-usr-bin-env-python-on-the-first-line-of-a-python-script
In computing, a shebang (also called a hashbang, hashpling, pound bang, or crunchbang) refers to the characters "#!" when they are the first two characters in an interpreter directive as the first line of a text file. In a Unix-like operating system, the program loader takes the presence of these two characters as an indication that the file is a script, and tries to execute that script using the interpreter specified by the rest of the first line in the file.