sublimetext snippetドキュメント

2891 ワード

SublimeText 2はZen-Codingをうまくサポートできなくなったが、自分のsnippet定義機能も非常に強く、VASSIstのようになった.メニューtool->New Snappetで定義します.開いた後は空白のsnippetテンプレートです.前に定義するコンテンツブロックについて、との間にショートカット名を定義し、そのsnippetが作用するファイルタイプをとの間に定義する.たとえばhtml 5という文字を入力してtabを押すと、赤い部分に展開されます.




    
    ${1}


    

${1}

Hello, ${2:this} is a ${3:snippet}! ]]>
html5 text.html

このファイルを作成するとctrl+sはデフォルトの保存パスをポップアップし、一般的には..\Data\Packages\Userであり、ファイル名は.sublime-snippetを接尾辞としなければならない.このようなファイルは、html5.sublime-snippetまたは他のプレフィックス名として保存することができる.1つのファイルに1つのsnippetしかありません.${1}は補完後のカーソルのデフォルトの滞留位置をサポートし、編集が完了したらtabを押すと${2}の位置にジャンプすることができ、thisは2つのデフォルト内容を表し、tabの後にthis,${3:snippet}が選択されるのと同じである.について、公式定義は以下の通りである.
ActionScript: source.actionscript.2
AppleScript: source.applescript
ASP: source.asp
Batch FIle: source.dosbatch
C#: source.cs
C++: source.c++
Clojure: source.clojure
CoffeeScript: source.coffee
CSS: source.css
D: source.d
Diff: source.diff
Erlang: source.erlang
Go: source.go
GraphViz: source.dot
Groovy: source.groovy
Haskell: source.haskell
HTML: text.html(.basic)
JSP: text.html.jsp
Java: source.java
Java Properties: source.java-props
Java Doc: text.html.javadoc
JSON: source.json
Javascript: source.js
BibTex: source.bibtex
Latex Log: text.log.latex
Latex Memoir: text.tex.latex.memoir
Latex: text.tex.latex
LESS: source.css.less
TeX: text.tex
Lisp: source.lisp
Lua: source.lua
MakeFile: source.makefile
Markdown: text.html.markdown
Multi Markdown: text.html.markdown.multimarkdown
Matlab: source.matlab
Objective-C: source.objc
Objective-C++: source.objc++
OCaml campl4: source.camlp4.ocaml
OCaml: source.ocaml
OCamllex: source.ocamllex
Perl: source.perl
PHP: source.php
Regular Expression(python): source.regexp.python
Python: source.python
R Console: source.r-console
R: source.r
Ruby on Rails: source.ruby.rails
Ruby HAML: text.haml
SQL(Ruby): source.sql.ruby
Regular Expression: source.regexp
RestructuredText: text.restructuredtext
Ruby: source.ruby
SASS: source.sass
Scala: source.scala
Shell Script: source.shell
SQL: source.sql
Stylus: source.stylus
TCL: source.tcl
HTML(TCL): text.html.tcl
Plain text: text.plain
Textile: text.html.textile
XML: text.xml
XSL: text.xml.xsl
YAML: source.yaml

#3 snippetの正規置換
//         
Transformation: ${1/^(\w)|(?:_(\w))/(?1\u$1:)(?2 \u$2:)/g}
      Original: ${1:text_in_snail_case}
# Output:
Transformation: Text In Snail Case
      Original: text_in_snail_case