Closed
Description
When chaining calls together via the .
operator, the following lines are not indented correctly
Desired
one()
.then(two)
.then(function() {
})
.fail(failHandler)
Current
one()
.then(two)
.then(function() {
})
.fail(failHandler)
Is there a way I can add a custom regular expression to perform additional indentation after the standard vim-javascript indent plugin has finished? Adding an additional two spaces to any line that begins with .
would be a vast improvement