mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.39k stars 411 forks source link

Limit to express size. Is it possible to increase maximum expression size? #531

Open Rz-Rz opened 2 years ago

Rz-Rz commented 2 years ago

There is a limit to the size of an expression For example, this works: .form-body>.form-content>.form-items>form>(div.mb-3>label.form-label[for='exampleInputEmail1']{Email address}+input.form-control#exampleInputEmail1[type='email' aria- describedby='emailHelp']+div.form-text#emailHelp{We'll never share your email with anyone else.})+(.mb-3>label.form-label[for="exampleInputPassword1"]{Password}+ input[type='password' class='form-control' id='exampleInputPassword1']) But if I add another complex expression like this: .form-body>.form-content>.form-items>form>(div.mb-3>label.form-label[for='exampleInputEmail1']{Email address}+input.form-control#exampleInputEmail1[type='email' aria- describedby='emailHelp']+div.form-text#emailHelp{We'll never share your email with anyone else.})+(.mb-3>label.form-label[for="exampleInputPassword1"]{Password}+ input[type='password' class='form-control' id='exampleInputPassword1'])+(div.mb-3.form-check>input[type="checkbox" class="form-check-input" id="exampleCheck1"]+label[class="form- check-label" for="exampleCheck1"]{Check me out!}) Then the new expression is not expanded.