We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduction:
.vimrc:
Plug 'mattn/emmet-vim', { 'for': ['html', 'javascriptreact', 'typescriptreact'] } autocmd BufNewFile,BufRead *.tsx set filetype=typescriptreact autocmd BufNewFile,BufRead *.jsx set filetype=javascriptreact
foo.tsx:
.foo>.bar*5
results in
<div class="foo"> <div class="bar"></div> <div class="bar"></div> <div class="bar"></div> <div class="bar"></div> <div class="bar"></div> </div>
Expected:
<div className="foo"> <div className="bar"></div> <div className="bar"></div> <div className="bar"></div> <div className="bar"></div> <div className="bar"></div> </div>
When not using the multiplication operator, the correct expansion is observed:
.foo>.bar
<div className="foo"> <div className="bar"></div> </div>
The text was updated successfully, but these errors were encountered:
Possibly related: #516
https://github.com/mattn/emmet-vim/blob/master/autoload/emmet.vim#L2075-L2092
Sorry, something went wrong.
No branches or pull requests
Reproduction:
.vimrc:
foo.tsx:
results in
Expected:
When not using the multiplication operator, the correct expansion is observed:
results in
The text was updated successfully, but these errors were encountered: