Add support for # argument to the :tabnext, :tabclose, :tabmove and :tabonly commands#6677
Closed
yegappan wants to merge 1 commit intovim:masterfrom
Closed
Add support for # argument to the :tabnext, :tabclose, :tabmove and :tabonly commands#6677yegappan wants to merge 1 commit intovim:masterfrom
yegappan wants to merge 1 commit intovim:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #6677 +/- ##
==========================================
+ Coverage 88.26% 88.28% +0.01%
==========================================
Files 147 147
Lines 160391 160398 +7
==========================================
+ Hits 141576 141602 +26
+ Misses 18815 18796 -19
Continue to review full report at Codecov.
|
seandewar
added a commit
to seandewar/neovim
that referenced
this pull request
Mar 14, 2022
Problem: Previous tab page not usable from an Ex command.
Solution: Add the "#" argument for :tabnext et al. (Yegappan Lakshmanan,
closes vim/vim#6677)
vim/vim@94f4ffa
Do not rename old_curtab to prev_tp in win_new_tabpage, this can be confused
with the previous tabpage (`:tabprevious`).
Cherry-pick ex_errmsg from v8.2.1280.
vim/vim@8930caa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for using the last accessed tab page in Ex commands.
Also fix a problem in setting the correct last tabpage after using a
count with tabnew to create a new tabpage.