在尝试为Sublime Text 2编写自己的代码片段时,我遇到了以下两个问题:
查找范围键。我发现我可以逐个查看我的包,并找到对声明的“scope”属性的引用。例如,在~/Library/Application Support/Sublime Text 2/Packages/JavaScript/Comments.tmPreferences
(我的HTML包中的文件)中有以下两行:
<key>scope</key>
<string>source.js</string>
因此,如果我希望我的当前代码段能够处理javascript文件,我将我的范围定义为:
<scope>source.js</scope>
我假设所有这些范围键都是根据我安装的软件包即时定义的。 Sublime Text是否在我可以更容易引用的任何地方构建列表?仔细阅读一堆包文件似乎过于繁琐。
定义多个范围属性。我已经想到了,以下行允许我的代码段在HTML和JavaScript文件中工作。
<scope>text.html, source.js</scope>
答案 0 :(得分:145)
以下是Sublime Text 2片段中使用的范围列表 -
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
如果缺少任何内容,请将其添加到此要点https://gist.github.com/4705378。
答案 1 :(得分:76)
使用此键盘快捷键:
Windows : ctrl + shift + alt + p
Mac: ctrl + shift + p
当前范围将显示在Windows状态栏的左侧,或Mac上的弹出窗口中。
将这些用作<scope>
文件中的foo.sublime-snippet
密钥。
返回的范围列为通用的特定范围。选择最佳“范围化”代码段的范围,使其可用于标签触发器。
答案 2 :(得分:9)
Isaac Muse有一个名为 Scope Hunter 的软件包,对此非常有帮助。
它可以显示文档中任何光标下的范围,我在调试自己的代码片段时发现它非常有用。有时它非常详细;我最前面的文档中的示例范围:
Scope: text.tex.latex
meta.function.environment.list.latex
meta.function.environment.general.latex
meta.function.environment.math.latex
string.other.math.block.environment.latex
meta.group.braces.tex
meta.space-after-command.latex
(包装易于阅读)
如果我花了一个星期的时间选择SL2,我就无法找到,但是这个软件包可以在几秒钟内完成。强烈推荐。
这种详细程度还意味着您可以根据需要以非常精细的方式定义片段。例如,meta.function.environment.list.latex
大致对应于LaTeX中的列表,因此当我在列表环境中按super + enter时,我有一个插入新\item
的片段,但没有其他人。我可以比盲目的猜测更有效地定位片段。
源代码为in Github,您也可以通过打包控件安装。
答案 3 :(得分:7)
实际上,你可以使用Ctrl + Alt + Shift + P(不使用Scope Hunter),它会在Col / Line信息后面的左侧底栏显示范围。这是相当小的印刷品,但它就在那里。
答案 4 :(得分:5)
要回答#1,请查看语法的 .tmLanguage 文件,找到密钥:scopeName
。这是语法用于代码段范围值的内容。
例如,nathos / sass-textmate-bundle
的摘录<key>scopeName</key>
<string>source.sass</string>
因此,您需要在代码段中使用source.sass
。