vim-es6
vim-es6 copied to clipboard
vim-es6 doesn't indent properly regexes containing dot star .*
Hi,
with the following code :
function f() {
const r = /foo.*/;
console.log(r);
}
If you run gg=G to reindent the full file, you will get :
function f() {
const r = /foo.*/;
console.log(r);
}
which is obviously not expected