admin管理员组文章数量:1344220
As I type the following javascript code (exact keystrokes):
myObject
.doSomething()
.doSomethingElse();
I'd expect it to automatically bee the following...
myObject
.doSomething()
.doSomethingElse();
... as would any other programmer, right?
How do I enable this, and why isn't it enabled by default?
As I type the following javascript code (exact keystrokes):
myObject
.doSomething()
.doSomethingElse();
I'd expect it to automatically bee the following...
myObject
.doSomething()
.doSomethingElse();
... as would any other programmer, right?
How do I enable this, and why isn't it enabled by default?
Share Improve this question asked Nov 24, 2014 at 3:46 eye_meweye_mew 9,1637 gold badges34 silver badges52 bronze badges 1- I am searching for this feature as well. Have you found anything? – japrescott Commented Mar 12, 2015 at 15:21
2 Answers
Reset to default 13 +125You can use Sublime Code formatter with support JavaScript/JSON Beautifier, this link will show you how to usage this plugin.
Or another way is to insert your code inside Key Bindings - User
file:
{"keys": ["alt+shift+f"], "mand": "reindent", "args": {"single_line": false}}
This happens because sublime's smart_indent
is not smart enough.
You can fix indentation post factum using code formatter plugin like JsFomat.
Or preventively indent first chained method call. Following lines will have same level of indentation. This solution can be slightly improved by creating new key binding:
{ "keys": ["alt+enter"], "mand": "insert", "args": {"characters": "\n\t"} }
Press alt+enter
instead of enter, tab
for newline to have extra indentation.
本文标签: javascriptAuto indent method chaining in Sublime Text 3Stack Overflow
版权声明:本文标题:javascript - Auto indent method chaining in Sublime Text 3 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743680356a2521023.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论