You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
In HTML Doctype, can't confirm tag autocomplete twice in a row.
Am I doing something wrong?
Steps to Reproduce
write first letters of a first tag (eg. 'p')
tab to autocomplete -> OK
now cursor is in between start and end tags
write first letters of a second tag (eg. 'str' for <strong>)
tab to autocomplete -> KO
problem: the expected second tags are not created.
Instead of <p><strong></strong></p>, I get <p>strong</p>.
Expected behavior:
I expect autocomplete to create two tags, eg. <strong></strong>, inside the previously created tags (<p></p> in my example).
Actual behavior:
When writing 'str' inside <p></p>, autocomplete suggest the 'strong' tag.
After pressing tab, Keybinding resolver returns autocomplete-plus:confirm, but 'strong' is written instead of <strong><\strong>.
Reproduces how often:
100% in HTML Doctypes
Versions
ATOM
Atom : 1.30.0
Electron: 2.0.5
Chrome : 61.0.3163.100
Node : 8.9.3
Description
In HTML Doctype, can't confirm tag autocomplete twice in a row.
Am I doing something wrong?
Steps to Reproduce
<strong>
)Instead of
<p><strong></strong></p>
, I get<p>strong</p>
.Expected behavior:
I expect autocomplete to create two tags, eg.
<strong></strong>
, inside the previously created tags (<p></p>
in my example).Actual behavior:
When writing 'str' inside
<p></p>
, autocomplete suggest the 'strong' tag.After pressing tab, Keybinding resolver returns autocomplete-plus:confirm, but 'strong' is written instead of
<strong><\strong>
.Reproduces how often:
100% in HTML Doctypes
Versions
Thanks to you all
The text was updated successfully, but these errors were encountered: