CARVIEW |
Select Language
HTTP/2 200
date: Sat, 19 Jul 2025 16:55:53 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/"b3e6a4f816965bae16429ba67067af29"
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=3BQu1jWhrAq2DBC99lke2rom03XItiM6vkzBKmrQthWOdc0NIZZecIf%2Fpz%2Fh6ZKSgLUKcadJWnC5%2Bw7%2F%2BtLzqVQQtsVwPkLwAo3dnj%2B6VPaaFrkA3wHFX0RLymM0uEEuwe9dtPy%2B0It%2Bs8FbIW%2FpNMTZ2HpldmKgvv5EXoD2DYMGoeagwunaCXHvsvSk40V%2BMtsCicjyxm95OcycTGxoni14FlSsYz8GuAtbzZHDit%2Bnz3QY38jMxRdJCAmUN6kpsJpCs63RCZ3QL0gF7OcQZA%3D%3D--CM295DbO9n%2BQb%2BBT--3Z6G80pyWRIUvJvGyZnPjA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.1274744384.1752944152; Path=/; Domain=github.com; Expires=Sun, 19 Jul 2026 16:55:52 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Sun, 19 Jul 2026 16:55:52 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: C658:0A87:6D76D1:8997A5:687BCE18
patch 9.1.1520: completion: search completion doesn't handle 'smartca… · vim/vim@af22007 · GitHub
Copy file name to clipboardExpand all lines: src/testdir/test_cmdline.vim
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit af22007
patch 9.1.1520: completion: search completion doesn't handle 'smartcase' well
Problem: When using `/` or `?` in command-line mode with 'ignorecase' and
'smartcase' enabled, the completion menu could show items that
don't actually match any text in the buffer due to case mismatches
Solution: Instead of validating menu items only against the user-typed
pattern, the new logic also checks whether the completed item
matches actual buffer content. If needed, it retries the match
using a lowercased version of the candidate, respecting
smartcase semantics.
closes: #17665
Signed-off-by: Girish Palya <girishji@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>1 parent faed074 commit af22007Copy full SHA for af22007
File tree
Expand file treeCollapse file tree
3 files changed
+107
-30
lines changedFilter options
- src
- testdir
Expand file treeCollapse file tree
3 files changed
+107
-30
lines changed+96-29Lines changed: 96 additions & 29 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4686 | 4686 |
| |
4687 | 4687 |
| |
4688 | 4688 |
| |
| 4689 | + | |
| 4690 | + | |
| 4691 | + | |
| 4692 | + | |
| 4693 | + | |
| 4694 | + | |
| 4695 | + | |
| 4696 | + | |
| 4697 | + | |
| 4698 | + | |
| 4699 | + | |
| 4700 | + | |
| 4701 | + | |
| 4702 | + | |
| 4703 | + | |
| 4704 | + | |
| 4705 | + | |
| 4706 | + | |
| 4707 | + | |
| 4708 | + | |
| 4709 | + | |
| 4710 | + | |
| 4711 | + | |
| 4712 | + | |
| 4713 | + | |
| 4714 | + | |
| 4715 | + | |
| 4716 | + | |
| 4717 | + | |
| 4718 | + | |
| 4719 | + | |
| 4720 | + | |
| 4721 | + | |
| 4722 | + | |
| 4723 | + | |
| 4724 | + | |
| 4725 | + | |
| 4726 | + | |
| 4727 | + | |
| 4728 | + | |
| 4729 | + | |
| 4730 | + | |
| 4731 | + | |
| 4732 | + | |
| 4733 | + | |
| 4734 | + | |
| 4735 | + | |
| 4736 | + | |
| 4737 | + | |
| 4738 | + | |
| 4739 | + | |
| 4740 | + | |
| 4741 | + | |
| 4742 | + | |
| 4743 | + | |
| 4744 | + | |
| 4745 | + | |
| 4746 | + | |
| 4747 | + | |
| 4748 | + | |
| 4749 | + | |
| 4750 | + | |
| 4751 | + | |
| 4752 | + | |
| 4753 | + | |
| 4754 | + | |
| 4755 | + | |
| 4756 | + | |
| 4757 | + | |
| 4758 | + | |
| 4759 | + | |
| 4760 | + | |
| 4761 | + | |
| 4762 | + | |
| 4763 | + | |
| 4764 | + | |
4689 | 4765 |
| |
4690 | 4766 |
| |
4691 | 4767 |
| |
| |||
4701 | 4777 |
| |
4702 | 4778 |
| |
4703 | 4779 |
| |
4704 |
| - | |
| 4780 | + | |
4705 | 4781 |
| |
4706 | 4782 |
| |
4707 | 4783 |
| |
4708 |
| - | |
4709 |
| - | |
| 4784 | + | |
4710 | 4785 |
| |
4711 | 4786 |
| |
4712 | 4787 |
| |
| |||
4731 | 4806 |
| |
4732 | 4807 |
| |
4733 | 4808 |
| |
4734 |
| - | |
4735 |
| - | |
4736 |
| - | |
4737 |
| - | |
4738 |
| - | |
4739 | 4809 |
| |
4740 | 4810 |
| |
4741 | 4811 |
| |
| |||
4796 | 4866 |
| |
4797 | 4867 |
| |
4798 | 4868 |
| |
4799 |
| - | |
| 4869 | + | |
4800 | 4870 |
| |
4801 | 4871 |
| |
4802 | 4872 |
| |
4803 |
| - | |
4804 |
| - | |
4805 |
| - | |
| 4873 | + | |
| 4874 | + | |
| 4875 | + | |
| 4876 | + | |
| 4877 | + | |
| 4878 | + | |
| 4879 | + | |
| 4880 | + | |
4806 | 4881 |
| |
4807 | 4882 |
| |
4808 |
| - | |
| 4883 | + | |
| 4884 | + | |
| 4885 | + | |
| 4886 | + | |
| 4887 | + | |
| 4888 | + | |
| 4889 | + | |
| 4890 | + | |
4809 | 4891 |
| |
4810 |
| - | |
4811 |
| - | |
4812 |
| - | |
4813 |
| - | |
4814 |
| - | |
4815 |
| - | |
4816 |
| - | |
4817 |
| - | |
4818 |
| - | |
4819 |
| - | |
4820 |
| - | |
4821 |
| - | |
4822 |
| - | |
| 4892 | + | |
4823 | 4893 |
| |
4824 | 4894 |
| |
4825 | 4895 |
| |
| |||
4842 | 4912 |
| |
4843 | 4913 |
| |
4844 | 4914 |
| |
4845 |
| - | |
4846 |
| - | |
4847 | 4915 |
| |
4848 | 4916 |
| |
4849 | 4917 |
| |
4850 | 4918 |
| |
4851 | 4919 |
| |
4852 |
| - | |
4853 | 4920 |
| |
4854 | 4921 |
| |
4855 | 4922 |
|
src/testdir/test_cmdline.vim
Copy file name to clipboardExpand all lines: src/testdir/test_cmdline.vim+9-1Lines changed: 9 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4481 | 4481 |
| |
4482 | 4482 |
| |
4483 | 4483 |
| |
| 4484 | + | |
| 4485 | + | |
4484 | 4486 |
| |
4485 | 4487 |
| |
4486 | 4488 |
| |
4487 | 4489 |
| |
4488 | 4490 |
| |
4489 | 4491 |
| |
4490 | 4492 |
| |
| 4493 | + | |
| 4494 | + | |
4491 | 4495 |
| |
4492 | 4496 |
| |
4493 |
| - | |
| 4497 | + | |
4494 | 4498 |
| |
4495 | 4499 |
| |
4496 | 4500 |
| |
4497 | 4501 |
| |
| 4502 | + | |
| 4503 | + | |
| 4504 | + | |
| 4505 | + | |
4498 | 4506 |
| |
4499 | 4507 |
| |
4500 | 4508 |
| |
|
+2Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
719 | 719 |
| |
720 | 720 |
| |
721 | 721 |
| |
| 722 | + | |
| 723 | + | |
722 | 724 |
| |
723 | 725 |
| |
724 | 726 |
| |
|
You can’t perform that action at this time.
0 commit comments