The Wayback Machine - https://web.archive.org/web/20200910064422/https://github.com/redhat-developer/vscode-xml/issues/225
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

Automatically closing tags in multi-cursor mode only closes one tag #225

Open
ckoppelman opened this issue Feb 5, 2020 · 0 comments
Open

Automatically closing tags in multi-cursor mode only closes one tag #225

ckoppelman opened this issue Feb 5, 2020 · 0 comments

Comments

@ckoppelman
Copy link

@ckoppelman ckoppelman commented Feb 5, 2020

Description

In multi-cursor mode, the autocompletion only completes one XML Tag.

Steps to reproduce

  1. Set "xml.completion.autoCloseTags": true.
  2. Type the following (pipes indicate multiple cursor locations):
    <lib|
    <lib|
    <lib|
    <lib|
  1. Type >

Expected

I expect the document to look like this:

    <lib>|</lib>
    <lib>|</lib>
    <lib>|</lib>
    <lib>|</lib>

Actual

Instead, the document looks like this:

    <lib>|</lib>
    <lib>|
    <lib>|
    <lib>|
@ckoppelman ckoppelman changed the title Automatically closing tags in multi-cursor mode is broken Feb 5, 2020
@ckoppelman ckoppelman changed the title Automatically closing tags in multi-cursor mode only completes one tag Feb 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
1 participant
You can’t perform that action at this time.