Mercurial > vim
annotate runtime/syntax/messages.vim @ 34416:0a458b49e1e6 v9.1.0131
patch 9.1.0131: buffer-completion may not always find all matches
Commit: https://github.com/vim/vim/commit/0dc0bff000fd804c6b0778ccc4554a4e4c82c8c9
Author: Christian Brabandt <cb@256bit.org>
Date: Sat Feb 24 14:12:13 2024 +0100
patch 9.1.0131: buffer-completion may not always find all matches
Problem: buffer-completion code too complicated and does not always
find all matches (irisjae)
Solution: do not try to anchor pattern to beginning of line or
directory-separator, always return all matches
Note: we are considering the non-fuzzy buffer-matching here.
Currently, the buffer-completion code makes 2 attempts to match a
pattern against the list of available patterns. First try is to match
the pattern and anchor it to either the beginning of the file name or
at a directory-separator (// or \\).
When a match is found, Vim returns the matching buffers and does not try
to find a match anywhere within a buffer name. So if you have opened two
buffers like /tmp/Foobar.c and /tmp/MyFoobar.c using `:b Foo` will only
complete to the first filename, but not the second (the same happens
with `getcompletion('Foo', 'buffer')`).
It may make sense, that completion priorities buffer names at directory
boundaries, but it inconsistent, may cause confusion why a certain
buffer name is not completed when typing `:b Foo<C-D>` which returns
only a single file name and then pressing Enter (to switch to that
buffer), Vim will error with 'E93: More than one match for Foo').
Similar things may happen when wiping the /tmp/Foobar.c pattern and
afterwards the completion starts completing other buffers.
So let's simplify the code and always match the pattern anywhere in the
buffer name, do not try to favor matches at directory boundaries. This
is also simplifies the code a bit, we do not need to run over the list
of buffers several times, but only twice.
fixes #13894
closes: #14082
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 24 Feb 2024 14:30:03 +0100 |
parents | 5b37a0bf7e3a |
children |
rev | line source |
---|---|
1125 | 1 " Vim syntax file |
2 " Language: /var/log/messages file | |
3 " Maintainer: Yakov Lerner <iler.ml@gmail.com> | |
1668 | 4 " Latest Revision: 2008-06-29 |
5 " Changes: 2008-06-29 support for RFC3339 tuimestamps James Vega | |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
1668
diff
changeset
|
6 " 2016 Jan 19: messagesDate changed by Bram |
23931 | 7 " 2021 Jan 27: messagesHourRFC3339 changed from #946 |
1125 | 8 |
9 if exists("b:current_syntax") | |
10 finish | |
11 endif | |
12 | |
13 let s:cpo_save = &cpo | |
14 set cpo&vim | |
15 | |
1668 | 16 syn match messagesBegin display '^' nextgroup=messagesDate,messagesDateRFC3339 |
1125 | 17 |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
1668
diff
changeset
|
18 syn match messagesDate contained display '[[:lower:][:upper:]][[:lower:][:upper:]][[:lower:][:upper:]] [ 0-9]\d *' |
1125 | 19 \ nextgroup=messagesHour |
20 | |
21 syn match messagesHour contained display '\d\d:\d\d:\d\d\s*' | |
22 \ nextgroup=messagesHost | |
23 | |
1668 | 24 syn match messagesDateRFC3339 contained display '\d\{4}-\d\d-\d\d' |
25 \ nextgroup=messagesRFC3339T | |
26 | |
27 syn match messagesRFC3339T contained display '\cT' | |
28 \ nextgroup=messagesHourRFC3339 | |
29 | |
23931 | 30 syn match messagesHourRFC3339 contained display '\c\d\d:\d\d:\d\d\(\.\d\+\)\=\([+-]\d\d:\d\d\|Z\)\s*' |
1668 | 31 \ nextgroup=messagesHost |
32 | |
1125 | 33 syn match messagesHost contained display '\S*\s*' |
34 \ nextgroup=messagesLabel | |
35 | |
36 syn match messagesLabel contained display '\s*[^:]*:\s*' | |
37 \ nextgroup=messagesText contains=messagesKernel,messagesPID | |
38 | |
39 syn match messagesPID contained display '\[\zs\d\+\ze\]' | |
40 | |
41 syn match messagesKernel contained display 'kernel:' | |
42 | |
43 | |
44 syn match messagesIP '\d\+\.\d\+\.\d\+\.\d\+' | |
45 | |
46 syn match messagesURL '\w\+://\S\+' | |
47 | |
48 syn match messagesText contained display '.*' | |
49 \ contains=messagesNumber,messagesIP,messagesURL,messagesError | |
50 | |
51 syn match messagesNumber contained '0x[0-9a-fA-F]*\|\[<[0-9a-f]\+>\]\|\<\d[0-9a-fA-F]*' | |
52 | |
53 syn match messagesError contained '\c.*\<\(FATAL\|ERROR\|ERRORS\|FAILED\|FAILURE\).*' | |
54 | |
55 | |
56 hi def link messagesDate Constant | |
57 hi def link messagesHour Type | |
1668 | 58 hi def link messagesDateRFC3339 Constant |
59 hi def link messagesHourRFC3339 Type | |
60 hi def link messagesRFC3339T Normal | |
1125 | 61 hi def link messagesHost Identifier |
62 hi def link messagesLabel Operator | |
63 hi def link messagesPID Constant | |
64 hi def link messagesKernel Special | |
65 hi def link messagesError ErrorMsg | |
66 hi def link messagesIP Constant | |
67 hi def link messagesURL Underlined | |
68 hi def link messagesText Normal | |
69 hi def link messagesNumber Number | |
70 | |
71 let b:current_syntax = "messages" | |
72 | |
73 let &cpo = s:cpo_save | |
74 unlet s:cpo_save |