如何像这样教vim缩进
var Comments = new Schema({
title : String
, body : String
, date : Date
});
var BlogPost = new Schema({
author : ObjectId
, title : String
, body : String
, date : Date
, comments : [Comments]
, meta : {
votes : Number
, favs : Number
}
});
我的 vim 现在缩进如下:
Offer = new Schema({
'title': {type: String},
'discount': {type: String},
});
var Comments = new Schema({
title : String
, body : String
, date : Date
});
var BlogPost = new Schema({
author : ObjectId
, title : String
, body : String
, date : Date
, comments : [Comments]
, meta : {
votes : Number
, favs : Number
}
});
my vim now indents like this:
Offer = new Schema({
'title': {type: String},
'discount': {type: String},
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢大家,我已经从这个 github 存储库安装了新的 javascript 缩进文件:
JavaScript 缩进 : JavaScript 缩进(包含 HTML 缩进)
thanks guys, i've installed new indent file for javascript from this github repo:
JavaScript Indent : Javascript indenter (HTML indent is included)