Skip to content

Commit b47337d

Browse files
committed
Format terminalActions.ts
1 parent 670d678 commit b47337d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const terminalSendSequenceCommand = async (accessor: ServicesAccessor, ar
128128
}
129129

130130
let text = isObject(args) && 'text' in args ? toOptionalString(args.text) : undefined;
131-
131+
132132
// If no text provided, prompt user for input
133133
if (!text) {
134134
const quickInputService = accessor.get(IQuickInputService);
@@ -146,7 +146,7 @@ export const terminalSendSequenceCommand = async (accessor: ServicesAccessor, ar
146146
let processedText = text
147147
.replace(/\\n/g, '\n')
148148
.replace(/\\r/g, '\r');
149-
149+
150150
// Process hex escape sequences (\xNN)
151151
while (true) {
152152
const match = processedText.match(/\\x([0-9a-fA-F]{2})/);

0 commit comments

Comments
 (0)