Skip to content

Commit

Permalink
Merge pull request #2926 from Roshanjossey/fix-tablast
Browse files Browse the repository at this point in the history
Fix :tablast breaking in vscode 1.25 #2813
  • Loading branch information
jpoon authored Aug 1, 2018
2 parents d03a473 + 051e889 commit ca15469
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 32 deletions.
41 changes: 11 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"url": "https://github.com/VSCodeVim/Vim/issues"
},
"engines": {
"vscode": "^1.22.0"
"vscode": "^1.25.0"
},
"categories": [
"Other",
Expand Down
2 changes: 1 addition & 1 deletion src/cmd_line/commands/tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class TabCommand extends node.CommandBase {
await vscode.commands.executeCommand('workbench.action.openEditorAtIndex1');
break;
case Tab.Last:
await vscode.commands.executeCommand('workbench.action.openLastEditorInGroup');
await vscode.commands.executeCommand('workbench.action.lastEditorInGroup');
break;
case Tab.New: {
const hasFile = !(this.arguments.file === undefined || this.arguments.file === '');
Expand Down

0 comments on commit ca15469

Please sign in to comment.