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 was archived by the owner on Dec 15, 2022. It is now read-only.
Checked that there is not already an Atom package that provides the described functionality: https://atom.io/packages
Description
Backspacing on second tabstop deletes part of text in first tabstop when tabstops are contiguous.
Steps to Reproduce
Create a simple "foo" snippet, such as:
"foo":prefix:"foo"body:""" ${2:bar}${3:baz}"""
Open a new file and change the syntax to the one the snippet was placed under.
Activate the "foo" snippet
Type something of 2 characters or more to replace "bar" ("xyzz" for this example)
Tab to "baz"
Expected behavior: [What you expect to happen]
Only "baz" should be selected for replacement
Actual behavior: [What actually happens]
"yzzbaz" is selected for replacement. Only the first character of the first tabstop replacement ("x") is left unselected.
Reproduces how often: [What percentage of the time does it reproduce?]
100%