logstash.vim
logstash.vim copied to clipboard
Re-indentation does not happen properly
When ugging gg=G to re-indent a file, too much indenting happens:
date {
match => [ "timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
remove_field => "timestamp"
}
I would be expecting:
date {
match => [ "timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
remove_field => "timestamp"
}
I've tried disabling autoindent etc without avail
+1