Skip to content

Commit 5abd226

Browse files
authored
increase search area of quick fixes (microsoft#172471)
fix microsoft#172068
1 parent e55ad94 commit 5abd226

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export function gitPushSetUpstream(): IInternalOptions {
129129
lineMatcher: GitPushOutputRegex,
130130
anchor: 'bottom',
131131
offset: 0,
132-
length: 5
132+
length: 15
133133
},
134134
commandExitResult: 'error',
135135
getQuickFixes: (matchResult: ITerminalCommandMatchResult) => {
@@ -175,7 +175,7 @@ export function gitCreatePr(): IInternalOptions {
175175
lineMatcher: GitCreatePrOutputRegex,
176176
anchor: 'bottom',
177177
offset: 0,
178-
length: 5
178+
length: 15
179179
},
180180
commandExitResult: 'success',
181181
getQuickFixes: (matchResult: ITerminalCommandMatchResult) => {

0 commit comments

Comments
 (0)