在Sublime Text 2中是否有办法设置autoreplace,这样我就可以让应用程序自动将Coffescript简写扩展为JS,即:
(args**)->
自动转换为
function(args**){}
?
答案 0 :(得分:0)
你可以为此制作一个片段。这是一个例子:
<snippet>
<content><![CDATA[
function(args**){${1}}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>(args**)-></tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
然后您可以键入(args**)->
+ tab 并将其转换为function(args**){}
,其中光标位于大括号之间。
有关详细信息,请参阅Sublime Text Docs: Snippets