Skip to content

Commit 15857a8

Browse files
committed
Make write data and send seqeunce commands use same supprots label
Part of microsoft#250669
1 parent 177a6ea commit 15857a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/workbench/contrib/terminal/browser/terminalActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export const terminalSendSequenceCommand = async (accessor: ServicesAccessor, ar
135135
if (!text) {
136136
text = await quickInputService.input({
137137
value: '',
138-
placeHolder: 'Enter sequence to send (supports \\n, \\r, \\x{AB})',
138+
placeHolder: 'Enter sequence to send (supports \\n, \\r, \\xAB)',
139139
prompt: localize('workbench.action.terminal.sendSequence.prompt', "Enter sequence to send to the terminal"),
140140
});
141141
if (!text) {

src/vs/workbench/contrib/terminalContrib/developer/browser/terminal.developer.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ registerTerminalAction({
7575
}
7676
const data = await quickInputService.input({
7777
value: '',
78-
placeHolder: 'Enter data, use \\x to escape',
78+
placeHolder: 'Enter data (supports \\n, \\r, \\xAB)',
7979
prompt: localize('workbench.action.terminal.writeDataToTerminal.prompt', "Enter data to write directly to the terminal, bypassing the pty"),
8080
});
8181
if (!data) {

0 commit comments

Comments
 (0)