Skip to content

Commit 268c3b6

Browse files
committed
Merge remote-tracking branch 'upstream/master' into tabsidebar
2 parents 5ba6282 + 19d4f99 commit 268c3b6

23 files changed

+558
-60
lines changed

runtime/doc/pattern.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*pattern.txt* For Vim version 9.1. Last change: 2024 Dec 26
1+
*pattern.txt* For Vim version 9.1. Last change: 2025 Mar 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -141,6 +141,7 @@ CTRL-C Interrupt current (search) command. Use CTRL-Break on
141141
help users who use "vim file | grep word" and don't
142142
know how to get out (blindly typing :qa<CR> would
143143
work).
144+
If a popup is open, the active popup will be closed.
144145

145146
*:noh* *:nohlsearch*
146147
:noh[lsearch] Stop the highlighting for the 'hlsearch' option. It

runtime/doc/syntax.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*syntax.txt* For Vim version 9.1. Last change: 2025 Mar 15
1+
*syntax.txt* For Vim version 9.1. Last change: 2025 Mar 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3512,25 +3512,25 @@ cases pertain, then the first line of the file is examined (ex. looking for
35123512
/bin/sh /bin/ksh /bin/bash). If the first line specifies a shelltype, then
35133513
that shelltype is used. However some files (ex. .profile) are known to be
35143514
shell files but the type is not apparent. Furthermore, on many systems sh is
3515-
symbolically linked to "bash" (Linux, Windows+cygwin) or "ksh" (Posix).
3515+
symbolically linked to "bash" (Linux, Windows+cygwin) or "ksh" (POSIX).
35163516

35173517
One may specify a global default by instantiating one of the following
35183518
variables in your <.vimrc>:
35193519

35203520
ksh: >
35213521
let g:is_kornshell = 1
3522-
< posix: (using this is nearly the same as setting g:is_kornshell to 1) >
3522+
< posix: (default) >
35233523
let g:is_posix = 1
35243524
< bash: >
35253525
let g:is_bash = 1
3526-
< sh: (default) Bourne shell >
3526+
< dash: >
3527+
let g:is_dash = 1
3528+
< sh: Bourne shell >
35273529
let g:is_sh = 1
35283530
3529-
< (dash users should use posix)
3530-
35313531
If there's no "#! ..." line, and the user hasn't availed himself/herself of a
35323532
default sh.vim syntax setting as just shown, then syntax/sh.vim will assume
3533-
the Bourne shell syntax. No need to quote RFCs or market penetration
3533+
the POSIX shell syntax. No need to quote RFCs or market penetration
35343534
statistics in error reports, please -- just select the default version of the
35353535
sh your system uses and install the associated "let..." in your <.vimrc>.
35363536

runtime/doc/version9.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim version 9.1. Last change: 2025 Mar 19
1+
*version9.txt* For Vim version 9.1. Last change: 2025 Mar 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41653,6 +41653,7 @@ Others: ~
4165341653
- add |dist#vim9#Launch()| and |dist#vim9#Open()| to the |vim-script-library|
4165441654
and decouple it from |netrw|
4165541655
- new digraph "APPROACHES THE LIMIT" using ".="
41656+
- |CTRL-C| always closes the active |popup-window|.
4165641657

4165741658
*added-9.2*
4165841659
Added ~

runtime/pack/dist/opt/comment/autoload/comment.vim

+86-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
vim9script
22

33
# Maintainer: Maxim Kim <[email protected]>
4-
# Last Update: 2024 Oct 05
4+
# Last Update: 2025 Mar 21
55
#
66
# Toggle comments
77
# Usage:
@@ -76,3 +76,88 @@ export def Toggle(...args: list<string>): string
7676
noautocmd keepjumps setline(lnum1, lines)
7777
return ''
7878
enddef
79+
80+
81+
# Comment text object
82+
# Usage:
83+
# import autoload 'dist/comment.vim'
84+
# onoremap <silent>ic <scriptcmd>comment.ObjComment(v:true)<CR>
85+
# onoremap <silent>ac <scriptcmd>comment.ObjComment(v:false)<CR>
86+
# xnoremap <silent>ic <esc><scriptcmd>comment.ObjComment(v:true)<CR>
87+
# xnoremap <silent>ac <esc><scriptcmd>comment.ObjComment(v:false)<CR>
88+
export def ObjComment(inner: bool)
89+
def IsComment(): bool
90+
var stx = map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')->join()
91+
return stx =~? 'Comment'
92+
enddef
93+
94+
# requires syntax support
95+
if !exists("g:syntax_on")
96+
return
97+
endif
98+
99+
var pos_init = getcurpos()
100+
101+
# If not in comment, search next one,
102+
if !IsComment()
103+
if search('\v\k+', 'W', line(".") + 100, 100, () => !IsComment()) <= 0
104+
return
105+
endif
106+
endif
107+
108+
# Search for the beginning of the comment block
109+
if IsComment()
110+
if search('\v%(\S+)|$', 'bW', 0, 200, IsComment) > 0
111+
search('\v%(\S)|$', 'W', 0, 200, () => !IsComment())
112+
else
113+
cursor(1, 1)
114+
search('\v\S+', 'cW', 0, 200)
115+
endif
116+
endif
117+
118+
var pos_start = getcurpos()
119+
120+
if !inner
121+
var col = pos_start[2]
122+
var prefix = getline(pos_start[1])[ : col - 2]
123+
while col > 0 && prefix[col - 2] =~ '\s'
124+
col -= 1
125+
endwhile
126+
pos_start[2] = col
127+
endif
128+
129+
# Search for the comment end.
130+
if pos_init[1] > pos_start[1]
131+
cursor(pos_init[1], pos_init[2])
132+
endif
133+
if search('\v%(\S+)|$', 'W', 0, 200, IsComment) > 0
134+
search('\S', 'beW', 0, 200, () => !IsComment())
135+
else
136+
if search('\%$', 'W', 0, 200) > 0
137+
search('\ze\S', 'beW', 0, 200, () => !IsComment())
138+
endif
139+
endif
140+
141+
var pos_end = getcurpos()
142+
143+
if !inner
144+
var spaces = matchstr(getline(pos_end[1]), '\%>.c\s*')
145+
pos_end[2] += spaces->len()
146+
if getline(pos_end[1])[pos_end[2] : ] =~ '^\s*$'
147+
&& (pos_start[2] == 1 || getline(pos_start[1])[ : pos_start[2]] =~ '^\s*$')
148+
if search('\v\s*\_$(\s*\n)+', 'eW', 0, 200) > 0
149+
pos_end = getcurpos()
150+
endif
151+
endif
152+
endif
153+
154+
if (pos_end[2] == (getline(pos_end[1])->len() ?? 1)) && pos_start[2] == 1
155+
cursor(pos_end[1], 1)
156+
normal! V
157+
cursor(pos_start[1], 1)
158+
else
159+
cursor(pos_end[1], pos_end[2])
160+
normal! v
161+
cursor(pos_start[1], pos_start[2])
162+
endif
163+
enddef

runtime/pack/dist/opt/comment/doc/comment.txt

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*comment.txt* For Vim version 9.1. Last change: 2024 Oct 01
1+
*comment.txt* For Vim version 9.1. Last change: 2025 Mar 21
22

33

44
VIM REFERENCE MANUAL
@@ -32,11 +32,20 @@ back to `gcc` otherwise, add the following mapping to your vimrc: >
3232
Note: using `gC` may not always result in valid comment markers depending on
3333
the language used.
3434

35+
Additionally, the plugin defines a comment text-object which requires syntax
36+
highlighting to be enabled.
37+
*v_ac* *ac*
38+
ac "a comment", select current or next comment.
39+
Leading and trailing white space is included.
40+
Trailing newlines are included too.
41+
*v_ic* *ic*
42+
ic "inner comment", select current or next comment.
43+
3544
This plugin uses the buffer-local 'commentstring' option value to add or remove
3645
comment markers to the selected lines. Whether it will comment or un-comment
37-
depends on the first line of the range of lines to act upon. When it matches
38-
a comment marker, the line will be un-commented, if it doesn't, the line will
39-
be commented out. Blank and empty lines are ignored.
46+
depends on the range of lines to act upon. When all of the lines in range
47+
have comment markers, all lines will be un-commented, if it doesn't, the lines
48+
will be commented out. Blank and empty lines are ignored.
4049

4150
The value of 'commentstring' is the same for the entire buffer and determined
4251
by its filetype (|filetypes|). To adapt it within the buffer for embedded
+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
ac comment.txt /*ac*
12
b:comment_first_col comment.txt /*b:comment_first_col*
23
comment.txt comment.txt /*comment.txt*
34
g:comment_first_col comment.txt /*g:comment_first_col*
45
gcc comment.txt /*gcc*
6+
ic comment.txt /*ic*
57
o_gc comment.txt /*o_gc*
8+
v_ac comment.txt /*v_ac*
69
v_gc comment.txt /*v_gc*
10+
v_ic comment.txt /*v_ic*
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
vim9script
22

33
# Maintainer: Maxim Kim <[email protected]>
4-
# Last Update: 2024-04-26
4+
# Last Update: 2025 Mar 21
55

66
import autoload 'comment.vim'
7+
78
nnoremap <silent> <expr> gc comment.Toggle()
89
xnoremap <silent> <expr> gc comment.Toggle()
910
nnoremap <silent> <expr> gcc comment.Toggle() .. '_'
11+
12+
onoremap <silent>ic <scriptcmd>comment.ObjComment(v:true)<CR>
13+
onoremap <silent>ac <scriptcmd>comment.ObjComment(v:false)<CR>
14+
xnoremap <silent>ic <esc><scriptcmd>comment.ObjComment(v:true)<CR>
15+
xnoremap <silent>ac <esc><scriptcmd>comment.ObjComment(v:false)<CR>

runtime/syntax/sh.vim

+42-42
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
" 2024 Nov 03 by Aliaksei Budavei <0x000c70 AT gmail DOT com> (improved bracket expressions, #15941)
88
" 2025 Jan 06 add $PS0 to bashSpecialVariables (#16394)
99
" 2025 Jan 18 add bash coproc, remove duplicate syn keywords (#16467)
10+
" 2025 Mar 21 update shell capability detection (#16939)
1011
" Version: 208
1112
" Former URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH
1213
" For options and settings, please use: :help ft-sh-syntax
@@ -17,69 +18,68 @@ if exists("b:current_syntax")
1718
finish
1819
endif
1920

21+
" Ensure this is set unless we find another shell
22+
let b:is_sh = 1
23+
2024
" If the shell script itself specifies which shell to use, use it
2125
if getline(1) =~ '\<ksh\>'
2226
let b:is_kornshell = 1
2327
elseif getline(1) =~ '\<bash\>'
2428
let b:is_bash = 1
2529
elseif getline(1) =~ '\<dash\>'
2630
let b:is_dash = 1
27-
elseif !exists("g:is_kornshell") && !exists("g:is_bash") && !exists("g:is_posix") && !exists("g:is_sh") && !exists("g:is_dash")
28-
" user did not specify which shell to use, and
29-
" the script itself does not specify which shell to use. FYI: /bin/sh is ambiguous.
30-
" Assuming /bin/sh is executable, and if its a link, find out what it links to.
31-
let s:shell = ""
32-
if executable("/bin/sh")
33-
let s:shell = resolve("/bin/sh")
34-
elseif executable("/usr/bin/sh")
35-
let s:shell = resolve("/usr/bin/sh")
36-
endif
37-
if s:shell =~ '\<ksh\>'
38-
let b:is_kornshell= 1
39-
elseif s:shell =~ '\<bash\>'
40-
let b:is_bash = 1
41-
elseif s:shell =~ '\<dash\>'
42-
let b:is_dash = 1
43-
endif
44-
unlet s:shell
45-
endif
46-
4731
" handling /bin/sh with is_kornshell/is_sh {{{1
4832
" b:is_sh will be set when "#! /bin/sh" is found;
4933
" However, it often is just a masquerade by bash (typically Linux)
5034
" or kornshell (typically workstations with Posix "sh").
51-
" So, when the user sets "g:is_bash", "g:is_kornshell",
52-
" or "g:is_posix", a b:is_sh is converted into b:is_bash/b:is_kornshell,
53-
" respectively.
54-
if !exists("b:is_kornshell") && !exists("b:is_bash") && !exists("b:is_dash")
55-
if exists("g:is_posix") && !exists("g:is_kornshell")
56-
let g:is_kornshell= g:is_posix
35+
" So, when the user sets "g:is_kornshell", "g:is_bash",
36+
" "g:is_posix" or "g:is_dash", a b:is_sh is converted into
37+
" b:is_kornshell/b:is_bash/b:is_posix/b:is_dash, respectively.
38+
elseif !exists("b:is_kornshell") && !exists("b:is_bash") && !exists("b:is_posix") && !exists("b:is_dash")
39+
if exists("g:is_kornshell")
40+
let b:is_kornshell= 1
41+
elseif exists("g:is_bash")
42+
let b:is_bash= 1
43+
elseif exists("g:is_dash")
44+
let b:is_dash= 1
45+
elseif exists("g:is_posix")
46+
let b:is_posix= 1
47+
elseif exists("g:is_sh")
48+
let b:is_sh= 1
49+
else
50+
" user did not specify which shell to use, and
51+
" the script itself does not specify which shell to use. FYI: /bin/sh is ambiguous.
52+
" Assuming /bin/sh is executable, and if its a link, find out what it links to.
53+
let s:shell = ""
54+
if executable("/bin/sh")
55+
let s:shell = resolve("/bin/sh")
56+
elseif executable("/usr/bin/sh")
57+
let s:shell = resolve("/usr/bin/sh")
5758
endif
58-
if exists("g:is_kornshell")
59-
let b:is_kornshell= 1
60-
if exists("b:is_sh")
61-
unlet b:is_sh
62-
endif
63-
elseif exists("g:is_bash")
64-
let b:is_bash= 1
65-
if exists("b:is_sh")
66-
unlet b:is_sh
67-
endif
68-
elseif exists("g:is_dash")
69-
let b:is_dash= 1
70-
if exists("b:is_sh")
71-
unlet b:is_sh
72-
endif
59+
if s:shell =~ '\<ksh\>'
60+
let b:is_kornshell= 1
61+
elseif s:shell =~ '\<bash\>'
62+
let b:is_bash = 1
63+
elseif s:shell =~ '\<dash\>'
64+
let b:is_dash = 1
7365
else
74-
let b:is_sh= 1
66+
let b:is_posix = 1
7567
endif
68+
unlet s:shell
69+
endif
7670
endif
7771

7872
" if b:is_dash, set b:is_posix too
7973
if exists("b:is_dash")
8074
let b:is_posix= 1
8175
endif
8276

77+
if exists("b:is_kornshell") || exists("b:is_bash")
78+
if exists("b:is_sh")
79+
unlet b:is_sh
80+
endif
81+
endif
82+
8383
" set up default g:sh_fold_enabled {{{1
8484
" ================================
8585
if !exists("g:sh_fold_enabled")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
" Replace known non-Latin-1 characters.
2+
%s+[🍌猫�]+?+ge

src/popupwin.c

+14
Original file line numberDiff line numberDiff line change
@@ -3586,6 +3586,20 @@ popup_do_filter(int c)
35863586
&& (wp->w_filter_mode & state) != 0)
35873587
res = invoke_popup_filter(wp, c);
35883588

3589+
// when Ctrl-C and no popup has been processed (res is still FALSE)
3590+
// Try to find and close a popup that has no filter callback
3591+
if (c == Ctrl_C && res == FALSE)
3592+
{
3593+
popup_reset_handled(POPUP_HANDLED_2);
3594+
wp = find_next_popup(FALSE, POPUP_HANDLED_2);
3595+
if (wp != NULL)
3596+
{
3597+
popup_close_with_retval(wp, -1);
3598+
res = TRUE;
3599+
}
3600+
}
3601+
3602+
35893603
if (must_redraw > was_must_redraw)
35903604
{
35913605
int save_got_int = got_int;

src/search.c

-1
Original file line numberDiff line numberDiff line change
@@ -5392,7 +5392,6 @@ search_for_fuzzy_match(
53925392
}
53935393

53945394
*len = next_word_end - *ptr;
5395-
current_pos.col = *len;
53965395
}
53975396
}
53985397
*pos = current_pos;

0 commit comments

Comments
 (0)