在 Sublime Text 2 中创建 javascript 函数存根的快捷方式
是否可以在 Sublime Text 2 中快速创建方法存根?也许我可以安装一个软件包?
例如,我在 jquery 中绑定了一些东西 -
$("p").bind("click", {foo: "bar"}, handler)
我可以右键单击处理程序,然后选择一个选项来存根函数吗?
不一定要右键单击,键盘快捷键会更好。
我已将 textmate 添加到标签中,因为 Sublime 与 text mate 插件兼容。
Is it possible to quickly create a method stub in Sublime Text 2? Perhaps a package I could install?
For example, I bind something in jquery -
$("p").bind("click", {foo: "bar"}, handler)
Could I rightclick on handler, then choose an option to stub out a function?
Doesn't have to be a right click, a keyboard shortcut would be even better.
I've added textmate to the tags, as Sublime is compatible with text mate plugins.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需输入
f
,然后按tab
奖励:输入
fun
然后按tab
将为您提供一个命名函数You just need to type
f
and then presstab
Bonus: typing
fun
and then pressingtab
will give you a named function使用插件可以很容易地做到这一点。 Sublime Text 有一个非常可扩展的 API,并使用 python 作为其插件。如果您将其发布到 sublimetext 的论坛上,您会得到更好的回复:sublimetext.com/forum/
许多人愿意在那里帮助您,并且可能会在几分钟内为您制作插件。
This would be very easy to do with a plugin. Sublime Text has a very extendable API and uses python for its plugins. You will get a much better response if you post this on sublime text's forum: sublimetext.com/forum/
Many people are willing to help you there and will probably make the plugin for you in a matter of minutes.