Environment: Win7 + gVim 7.3
Script version: 1.4.6
See screenshot:
http://minus.com/mbkxBCRmSn#1
Description
I have the below code but the indentation is wrong:
var _form = this
, $form = $(this)
, options = {
a: 1
, b: 2
}
;
$form.bind('submit', function(){});
What I expected:
var _form = this
, $form = $(this)
, options = {
a: 1
, b: 2
}
;
$form.bind('submit', function(){});