Modify the winnr() function to return neighbor window information#3993
Closed
yegappan wants to merge 6 commits intovim:masterfrom
Closed
Modify the winnr() function to return neighbor window information#3993yegappan wants to merge 6 commits intovim:masterfrom
yegappan wants to merge 6 commits intovim:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3993 +/- ##
==========================================
+ Coverage 79.51% 79.52% +<.01%
==========================================
Files 106 106
Lines 141494 141516 +22
==========================================
+ Hits 112512 112540 +28
+ Misses 28982 28976 -6
Continue to review full report at Codecov.
|
fdf3b77 to
f0eed6f
Compare
f69cf32 to
656a68f
Compare
4762b82 to
5facd99
Compare
d3f0083 to
9c2d7c9
Compare
Update the help
…turn the number of the window below/above/right/left of the current window
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.
Modify the winnr() function to return the neighbor window information using
the following arguments:
{N}j - Nth window below the current window.
{N}k - Nth window above the current window.
{N}h - Nth window left of the current window.
{N}l - Nth window right of the current window.
These are same as the windows used by the CTRL-W_j, CTRL-W_k,
CTRL-W_h and CTRL-W_l commands.