Skip to content

Commit

Permalink
Fix gt/gT
Browse files Browse the repository at this point in the history
Fixes #7988
  • Loading branch information
J-Fields committed Sep 27, 2022
1 parent 741f410 commit 1a5fd1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## Unreleased

### Fixed

- Fixed `gt` and `gT` ([@J-Fields](https://github.com/J-Fields)).

## [v1.24.0](https://github.com/vscodevim/vim/tree/v1.24.0) (2022-09-26)

### Added
Expand Down
2 changes: 0 additions & 2 deletions src/actions/commands/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1311,7 +1311,6 @@ class CommandTabNext extends BaseCommand {
new TabCommand({
type: TabCommandType.Next,
bang: false,
count: 1,
}).execute(vimState);
}
}
Expand All @@ -1327,7 +1326,6 @@ class CommandTabPrevious extends BaseCommand {
new TabCommand({
type: TabCommandType.Previous,
bang: false,
count: 1,
}).execute(vimState);
}
}
Expand Down

0 comments on commit 1a5fd1d

Please sign in to comment.