Skip to content

Commit 40e2e5c

Browse files
authored
Merge branch 'master' into 1.16beta
2 parents 9c8e07c + a5c34f1 commit 40e2e5c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

debugger-launchjson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configurating launch.json for C# debugging
1+
# Configuring launch.json for C# debugging
22
The launch.json file is used to configure the debugger in Visual Studio Code.
33

44
Visual Studio Code generates a launch.json with almost all of the required information.

src/features/processPicker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export class AttachPicker {
2727
return this.attachItemsProvider.getAttachItems()
2828
.then(processEntries => {
2929
let attachPickOptions: vscode.QuickPickOptions = {
30+
ignoreFocusOut: true,
3031
matchOnDescription: true,
3132
matchOnDetail: true,
3233
placeHolder: "Select the process to attach to"
@@ -223,6 +224,7 @@ export class RemoteAttachPicker {
223224
.then(async pipeCmd => RemoteAttachPicker.getRemoteOSAndProcesses(pipeCmd, pipeTransport.pipeCwd, platformInfo))
224225
.then(processes => {
225226
let attachPickOptions: vscode.QuickPickOptions = {
227+
ignoreFocusOut: true,
226228
matchOnDescription: true,
227229
matchOnDetail: true,
228230
placeHolder: "Select the process to attach to"

0 commit comments

Comments
 (0)