Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
find gulp processes too; fixes microsoft/vscode#8292
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Jun 29, 2016
1 parent cd9eaa9 commit 1975747
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function listProcesses() : Promise<ProcessItem[]> {

return new Promise((resolve, reject) => {

const NODE = new RegExp('^(?:node|iojs)$', 'i');
const NODE = new RegExp('^(?:node|iojs|gulp)$', 'i');

if (process.platform === 'win32') {

Expand Down Expand Up @@ -153,7 +153,7 @@ export function activate(context: vscode.ExtensionContext) {
return listProcesses().then(items => {

let options : vscode.QuickPickOptions = {
placeHolder: "Pick the node.js process to attach to",
placeHolder: "Pick the node.js or gulp process to attach to",
matchOnDescription: true,
matchOnDetail: true
};
Expand Down

0 comments on commit 1975747

Please sign in to comment.