Fix 'wildmode' documentation to be clearer in behavior#8078
Closed
ychin wants to merge 1 commit intovim:masterfrom
Closed
Fix 'wildmode' documentation to be clearer in behavior#8078ychin wants to merge 1 commit intovim:masterfrom
ychin wants to merge 1 commit intovim:masterfrom
Conversation
Make the doc explain the full functionality of how to join the different distinct values. For example, reading the current doc, it's not clear one could actually do `set wildmode=full:lastused` or that any value can be joined with any value. 1. Describe empty/full/longest/list independently and mention that they can be joined by using a colon. 2. Mention that setting "full" will activate wildmenu if enabled. 3. Make sure longest:full is given as an example as the "longest" overrides "full". 4. Elaborate on "lastused" and mention that it's only for buffer listing commands (since other usage of wildmenu like :edit won't be affected).
Codecov Report
@@ Coverage Diff @@
## master #8078 +/- ##
==========================================
- Coverage 89.33% 89.28% -0.05%
==========================================
Files 148 148
Lines 166047 165158 -889
==========================================
- Hits 148335 147460 -875
+ Misses 17712 17698 -14
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Contributor
|
Thanks. I'll include it and tweak it a bit more. |
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.
Make the doc explain the full functionality of how to join the different distinct values. For example, reading the current doc, it's not clear one could actually do
set wildmode=full:lastusedor that any value can be joined with any value.