CARVIEW |
Select Language
HTTP/2 200
date: Fri, 25 Jul 2025 23:54:10 GMT
content-type: text/html; charset=utf-8
vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With
x-repository-download: git clone https://github.com/vim/vim.git
etag: W/"4af3172b3725498c70db8f88eb840bdd"
cache-control: max-age=0, private, must-revalidate
strict-transport-security: max-age=31536000; includeSubdomains; preload
x-frame-options: deny
x-content-type-options: nosniff
x-xss-protection: 0
referrer-policy: no-referrer-when-downgrade
content-security-policy: default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/
server: github.com
content-encoding: gzip
accept-ranges: bytes
set-cookie: _gh_sess=5Eikde2J9u49UQOSYPNXU%2FDd9KTImRZoGubJ2Jnc4%2BL7FTNr3ECeDBYw5CDzmbLWE7X667YMNHtS2Sxb6CoMbCQMz87DjlwzSqiktmBsxcOg8fSfmxLIDm2BVq%2FmOlfMjxeqAh0lCFTntWvV0bM3n94rk%2B0PgwvzhSQnQSXvYjRN8rWhaflqGQTbkCERrrTxC2w7oDGXlFmxhWqeISFT%2BHKNgyVcoIZl1Y%2B7gKvAQFNzT2uBfj32uaeYdvUut5m3r5ibJ%2FechV7mg%2FkUTl0FQw%3D%3D--WUrsWotGJnbKl%2Blt--fmmbpu6FPYGnX70e2eQwUQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.1144800213.1753487647; Path=/; Domain=github.com; Expires=Sat, 25 Jul 2026 23:54:07 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Sat, 25 Jul 2026 23:54:07 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: B866:3ED739:39949:5C43B:6884191F
patch 9.1.1576: cannot easily trigger wildcard expansion · vim/vim@b486ed8 · GitHub
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit b486ed8
patch 9.1.1576: cannot easily trigger wildcard expansion
Problem: cannot easily trigger wildcard expansion
Solution: Introduce wildtrigger() function
(Girish Palya)
This PR introduces a new `wildtrigger()` function.
See `:h wildtrigger()`
`wildtrigger()` behaves like pressing the `wildchar,` but provides a
more refined and controlled completion experience:
- Suppresses beeps when no matches are found.
- Avoids displaying irrelevant completions (like full command lists)
when the prefix is insufficient or doesn't match.
- Skips completion if the typeahead buffer has pending input or if a
wildmenu is already active.
- Does not print "..." before completion.
This is an improvement on the `feedkeys()` based autocompletion script
given in #16759.
closes: #17806
Signed-off-by: Girish Palya <girishji@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>1 parent 689f3bf commit b486ed8Copy full SHA for b486ed8
File tree
Expand file treeCollapse file tree
15 files changed
+190
-69
lines changedFilter options
- runtime
- doc
- syntax
- src
- proto
- testdir
Expand file treeCollapse file tree
15 files changed
+190
-69
lines changed+29-1Lines changed: 29 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
757 | 757 |
| |
758 | 758 |
| |
759 | 759 |
| |
| 760 | + | |
760 | 761 |
| |
761 | 762 |
| |
762 | 763 |
| |
| |||
12331 | 12332 |
| |
12332 | 12333 |
| |
12333 | 12334 |
| |
| 12335 | + | |
| 12336 | + | |
| 12337 | + | |
| 12338 | + | |
| 12339 | + | |
| 12340 | + | |
| 12341 | + | |
| 12342 | + | |
| 12343 | + | |
| 12344 | + | |
| 12345 | + | |
| 12346 | + | |
| 12347 | + | |
| 12348 | + | |
| 12349 | + | |
| 12350 | + | |
| 12351 | + | |
| 12352 | + | |
| 12353 | + | |
| 12354 | + | |
| 12355 | + | |
| 12356 | + | |
| 12357 | + | |
| 12358 | + | |
| 12359 | + | |
| 12360 | + | |
| 12361 | + | |
12334 | 12362 |
| |
12335 | 12363 |
| |
12336 | 12364 |
| |
|
+3-1Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
479 | 479 |
| |
480 | 480 |
| |
481 | 481 |
| |
| 482 | + | |
| 483 | + | |
482 | 484 |
| |
483 | 485 |
| |
484 | 486 |
| |
|
+2-2Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
9797 | 9797 |
| |
9798 | 9798 |
| |
9799 | 9799 |
| |
9800 |
| - | |
| 9800 | + | |
9801 | 9801 |
| |
9802 | 9802 |
| |
9803 | 9803 |
| |
|
+2Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6620 | 6620 |
| |
6621 | 6621 |
| |
6622 | 6622 |
| |
| 6623 | + | |
6623 | 6624 |
| |
6624 | 6625 |
| |
6625 | 6626 |
| |
| |||
11608 | 11609 |
| |
11609 | 11610 |
| |
11610 | 11611 |
| |
| 11612 | + | |
11611 | 11613 |
| |
11612 | 11614 |
| |
11613 | 11615 |
| |
|
+2-1Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
1233 | 1233 |
| |
1234 | 1234 |
| |
1235 | 1235 |
| |
| 1236 | + | |
1236 | 1237 |
| |
1237 | 1238 |
| |
1238 | 1239 |
| |
|
+3-1Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
41601 | 41601 |
| |
41602 | 41602 |
| |
41603 | 41603 |
| |
| 41604 | + | |
41604 | 41605 |
| |
41605 | 41606 |
| |
41606 | 41607 |
| |
| |||
41765 | 41766 |
| |
41766 | 41767 |
| |
41767 | 41768 |
| |
| 41769 | + | |
41768 | 41770 |
| |
41769 | 41771 |
| |
41770 | 41772 |
| |
|
+4-4Lines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
| 5 | + | |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
| |||
141 | 141 |
| |
142 | 142 |
| |
143 | 143 |
| |
144 |
| - | |
| 144 | + | |
145 | 145 |
| |
146 | 146 |
| |
147 | 147 |
| |
| |||
159 | 159 |
| |
160 | 160 |
| |
161 | 161 |
| |
162 |
| - | |
163 |
| - | |
| 162 | + | |
| 163 | + | |
164 | 164 |
| |
165 | 165 |
| |
166 | 166 |
| |
|
+10-4Lines changed: 10 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
238 | 238 |
| |
239 | 239 |
| |
240 | 240 |
| |
| 241 | + | |
241 | 242 |
| |
242 | 243 |
| |
243 | 244 |
| |
| |||
269 | 270 |
| |
270 | 271 |
| |
271 | 272 |
| |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
272 | 281 |
| |
273 | 282 |
| |
274 |
| - | |
| 283 | + | |
275 | 284 |
| |
276 | 285 |
| |
277 | 286 |
| |
278 | 287 |
| |
279 | 288 |
| |
280 |
| - | |
281 |
| - | |
282 |
| - | |
283 | 289 |
| |
284 | 290 |
| |
285 | 291 |
| |
|
+2Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3126 | 3126 |
| |
3127 | 3127 |
| |
3128 | 3128 |
| |
| 3129 | + | |
| 3130 | + | |
3129 | 3131 |
| |
3130 | 3132 |
| |
3131 | 3133 |
| |
|
+42-7Lines changed: 42 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
957 | 957 |
| |
958 | 958 |
| |
959 | 959 |
| |
960 |
| - | |
| 960 | + | |
961 | 961 |
| |
962 | 962 |
| |
| 963 | + | |
| 964 | + | |
963 | 965 |
| |
964 | 966 |
| |
965 | 967 |
| |
| |||
1395 | 1397 |
| |
1396 | 1398 |
| |
1397 | 1399 |
| |
1398 |
| - | |
| 1400 | + | |
1399 | 1401 |
| |
1400 | 1402 |
| |
1401 | 1403 |
| |
| |||
1818 | 1820 |
| |
1819 | 1821 |
| |
1820 | 1822 |
| |
1821 |
| - | |
1822 |
| - | |
1823 |
| - | |
| 1823 | + | |
| 1824 | + | |
| 1825 | + | |
1824 | 1826 |
| |
1825 | 1827 |
| |
1826 | 1828 |
| |
| |||
2058 | 2060 |
| |
2059 | 2061 |
| |
2060 | 2062 |
| |
2061 |
| - | |
2062 |
| - | |
| 2063 | + | |
| 2064 | + | |
2063 | 2065 |
| |
| 2066 | + | |
| 2067 | + | |
2064 | 2068 |
| |
2065 | 2069 |
| |
2066 | 2070 |
| |
| |||
2069 | 2073 |
| |
2070 | 2074 |
| |
2071 | 2075 |
| |
| 2076 | + | |
| 2077 | + | |
2072 | 2078 |
| |
2073 | 2079 |
| |
| 2080 | + | |
| 2081 | + | |
2074 | 2082 |
| |
2075 | 2083 |
| |
2076 | 2084 |
| |
| |||
5109 | 5117 |
| |
5110 | 5118 |
| |
5111 | 5119 |
| |
| 5120 | + | |
| 5121 | + | |
| 5122 | + | |
| 5123 | + | |
| 5124 | + | |
| 5125 | + | |
| 5126 | + | |
| 5127 | + | |
| 5128 | + | |
| 5129 | + | |
| 5130 | + | |
| 5131 | + | |
| 5132 | + | |
| 5133 | + | |
| 5134 | + | |
| 5135 | + | |
| 5136 | + | |
| 5137 | + | |
| 5138 | + | |
| 5139 | + | |
| 5140 | + | |
| 5141 | + | |
| 5142 | + | |
| 5143 | + | |
| 5144 | + | |
| 5145 | + | |
| 5146 | + |
You can’t perform that action at this time.
0 commit comments