-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Closed
Labels
Area-OutputRelated to output processing (inserting text into buffer, retrieving buffer text, etc.)Related to output processing (inserting text into buffer, retrieving buffer text, etc.)Issue-BugIt either shouldn't be doing this or needs an investigation.It either shouldn't be doing this or needs an investigation.Priority-2A description (P2)A description (P2)Product-TerminalThe new Windows Terminal.The new Windows Terminal.Resolution-Fix-CommittedFix is checked in, but it might be 3-4 weeks until a release.Fix is checked in, but it might be 3-4 weeks until a release.
Milestone
Description
Environment
Windows build number: Microsoft Windows [Version 10.0.18362.175]
Windows Terminal version (if applicable): built using d82eab4
Steps to reproduce
- open terminal with following profile:
{
"globals" :
{
"alwaysShowTabs" : false,
"defaultProfile" : "{9d2406b9-7e40-4e2b-a20d-82dc61c4cc24}",
"initialCols" : 80,
"initialRows" : 60,
"requestedTheme" : "dark",
"showTabsInTitlebar" : true,
"showTerminalTitleInTitlebar" : false
},
"profiles" :
[
{
"acrylicOpacity" : 0.80000001192092896,
"closeOnExit" : true,
"colorScheme" : "Solarized Dark",
"commandline" : "cmd.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "Consolas",
"fontSize" : 10,
"guid" : "{9d2406b9-7e40-4e2b-a20d-82dc61c4cc24}",
"historySize" : 9001,
"name" : "cmd",
"padding" : "0, 0, 0, 0",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : true
}
]
}
- input characters until the line wraps, backspace once, and enter an additional character
Expected behavior
- Cursor should return to the previous position following the last character on the previous line after hitting backspace.
- Additional input character (sent after backspace) should show up after the last character on the previous line.
Actual behavior
- Cursor returns to previous line, but with a whitespace between the last character input and the cursor position
- Additional input character does not show up in terminal, although it is recognized
'..789ab' is received as input in the example below, even though it is not shown:
Metadata
Metadata
Assignees
Labels
Area-OutputRelated to output processing (inserting text into buffer, retrieving buffer text, etc.)Related to output processing (inserting text into buffer, retrieving buffer text, etc.)Issue-BugIt either shouldn't be doing this or needs an investigation.It either shouldn't be doing this or needs an investigation.Priority-2A description (P2)A description (P2)Product-TerminalThe new Windows Terminal.The new Windows Terminal.Resolution-Fix-CommittedFix is checked in, but it might be 3-4 weeks until a release.Fix is checked in, but it might be 3-4 weeks until a release.