Skip to content

Commit

Permalink
Merge pull request #5 from ShawnLin013/feature/Fix-new-version-of-vscode
Browse files Browse the repository at this point in the history
Feature/fix new version of vscode
  • Loading branch information
ShawnLin013 authored Jan 10, 2018
2 parents 80364f4 + 6c31d2f commit 48f3872
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ function activate(context) {
var name = path.basename(fileUri.fsPath);
ncp.copy(name, function() {
vscode.commands.executeCommand('workbench.action.findInFiles');
vscode.commands.executeCommand('workbench.action.search.toggleQueryDetails');
vscode.commands.executeCommand('workbench.action.search.toggleQueryDetails');
vscode.commands.executeCommand('editor.action.clipboardPasteAction');
vscode.commands.executeCommand('toggleSearchWholeWord');
vscode.commands.executeCommand('toggleSearchWholeWord');
})
});
}
});
context.subscriptions.push(disposable);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "file-name-search",
"displayName": "File Name Search",
"description": "Quickly search file name over all files.",
"version": "0.0.3",
"version": "0.0.4",
"publisher": "Shawn",
"icon": "images/logo.png",
"license": "MIT",
Expand Down

0 comments on commit 48f3872

Please sign in to comment.