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
For HTML files, VS Code just changes the pair of matching opening and closing tag when renaming in with F2.
But in templates of Vue SFCs, this:
<template> <div></div> <di|v></div> <!-- cursor here --> <div></div> </template>
...becomes this:
<template> <span></span> <span|></span> <span></span> </template>
...although it should become this:
<template> <div></div> <span|></span> <div></div> </template>
The text was updated successfully, but these errors were encountered:
fix: use html renaming instead of ts renaming on tags
fe4cef4
close #1201
Squashed commit of the following:
e8feb2e
commit fe4cef4 Author: johnsoncodehk <johnsoncodehk@gmail.com> Date: Fri Apr 15 22:07:42 2022 +0800 fix: use html renaming instead of ts renaming on tags close #1201 commit 83b922f Author: johnsoncodehk <johnsoncodehk@gmail.com> Date: Fri Apr 15 21:33:49 2022 +0800 feat: add option `experimentalShamefullySupportOptionsApi`
0a3d7b6
No branches or pull requests
For HTML files, VS Code just changes the pair of matching opening and closing tag when renaming in with F2.
But in templates of Vue SFCs, this:
...becomes this:
...although it should become this:
The text was updated successfully, but these errors were encountered: