Skip to content
New issue

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

Emmet (HTML) not honoring grouping syntax #30446

Closed
dskad opened this issue Jul 12, 2017 · 1 comment
Closed

Emmet (HTML) not honoring grouping syntax #30446

dskad opened this issue Jul 12, 2017 · 1 comment
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug *duplicate Issue identified as a duplicate of another issue(s) emmet Emmet related issues

Comments

@dskad
Copy link

dskad commented Jul 12, 2017

  • VSCode Version: Code 1.14.0 (b8cd5b9, 2017-07-10T18:36:31.751Z)
  • OS Version: Windows_NT ia32 10.0.16237
  • Extensions: (tested with all extensions disabled)
Extension Author (truncated) Version
npm-intellisense chr 1.3.0
path-intellisense chr 1.4.2
vscode-eslint dba 1.2.11
vscode-npm-script eg2 0.2.0
LogFileHighlighter emi 1.1.1
auto-close-tag for 0.4.3
auto-rename-tag for 0.0.14
search-node-modules jas 1.1.1
PowerShell ms- 1.4.1
debugger-for-chrome msj 3.1.6
vuejs-extension-pack mub 0.1.7
vetur oct 0.9.0
vuehelper oys 0.1.0
Align ste 0.2.0
JavaScriptSnippets xab 1.4.1

Steps to Reproduce:

div#app>(div>p#test*2) correctly expands to:

<div id="app">
  <div>
    <p id="test"></p>
    <p id="test"></p>
  </div>
</div>

while div#app>(div>p#test*2)*2 incorrectly expands to:

<div id="app">
</div>

it should expand to:

<div id="app">
  <div>
    <p id="test"></p>
    <p id="test"></p>
  </div>
  <div>
    <p id="test"></p>
    <p id="test"></p>
  </div>
</div>

The same abbreviation expands correctly in Atom with the official Emmet plugin. (Tested just in case I was typing emmet jibberish!)

Reproduces without extensions: Yes

@vscodebot vscodebot bot added new release html HTML support issues labels Jul 12, 2017
@chrmarti chrmarti added emmet Emmet related issues and removed html HTML support issues labels Jul 12, 2017
@ramya-rao-a
Copy link
Contributor

We are tracking this in #27784 and emmetio/atom-plugin#23

Thanks for reporting!

@ramya-rao-a ramya-rao-a added bug Issue identified by VS Code Team member as probable bug *duplicate Issue identified as a duplicate of another issue(s) labels Jul 12, 2017
@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 17, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug *duplicate Issue identified as a duplicate of another issue(s) emmet Emmet related issues
Projects
None yet
Development

No branches or pull requests

3 participants