-
Notifications
You must be signed in to change notification settings - Fork 30.1k
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
Test: Auto selecting matching tag position #85973
Comments
guys in the previous insider version I was able to disable this feature with auto select configuration, now I can't find it, what was it replaced with? |
@ayyash It's called |
Refs: #47069
Complexity: 3
For #47069, we added two features:
html.autoSelectingMatchingTags
is enabledTest that:
>
). Make sure the behavior works as expected in valid HTML and is understandable in invalid HTML.<div|></div|>
, only the first cursor inserts the space (the space inserted by second cursor is auto-removed)<br>
and<input>
. Try both the<br>
form and<br/>
and<br />
form. Make sure they do not interfere with this feature working on adjacent tag pairs.alt + Delete
,alt + Right
,cmd + c
. Make sure this feature works with them.hjkl
for left/down/up/right anddw
(delete word) andcw
(change word) can work property when you position your cursor in the tags<div|></div|>
, delete thediv
and enterd
to completediv
. (This will only work when primary cursor is in the beginning<div>
and mirrored cursor in the ending one, not the other way around).The text was updated successfully, but these errors were encountered: