Open
Description
Info
- Platform: Any
- Vetur version: 0.21.1
- VS Code version: 1.36
Problem
Command "Expand Selection" does not work properly in Vue files. It behaves Vue files as JavaScript file. It should work in Template as HTML and in Script section as JS
Reproducible Case
<div class="some random classes">
<p>Some random paragraph</p>
</div>
- Take the above html example, move your cursor to the any of the given class of div
- Ctrl + Shft + P
- Expand Selection
- Consecutively doing Steps 2,3 should work select in these order
a. random
b. some random classes
c. class="some random classes"
d: <div class="some random classes">
e: whole div