Skip to content

Commit 5ba6282

Browse files
committed
Merge remote-tracking branch 'upstream/master' into tabsidebar
2 parents 4e0d09e + 83d7440 commit 5ba6282

13 files changed

+292
-23
lines changed

Filelist

+1
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,7 @@ RT_ALL = \
807807
runtime/pack/dist/opt/editorconfig/plugin/editorconfig.vim \
808808
runtime/pack/dist/opt/helptoc/autoload/helptoc.vim \
809809
runtime/pack/dist/opt/helptoc/plugin/helptoc.vim \
810+
runtime/pack/dist/opt/hlyank/plugin/hlyank.vim \
810811
runtime/pack/dist/opt/justify/plugin/justify.vim \
811812
runtime/pack/dist/opt/matchit/plugin/matchit.vim \
812813
runtime/pack/dist/opt/matchit/doc/matchit.txt \

runtime/doc/builtin.txt

+2
Original file line numberDiff line numberDiff line change
@@ -4998,6 +4998,8 @@ getregionpos({pos1}, {pos2} [, {opts}]) *getregionpos()*
49984998
Can also be used as a |method|: >
49994999
getpos('.')->getregionpos(getpos("'a"))
50005000
<
5001+
For an example, see the highlight-yank plugin |52.6|
5002+
50015003
Return type: list<list<list<number>>>
50025004

50035005

runtime/doc/tags

+2
Original file line numberDiff line numberDiff line change
@@ -8265,6 +8265,7 @@ hlexists() builtin.txt /*hlexists()*
82658265
hlget() builtin.txt /*hlget()*
82668266
hlsearch-variable eval.txt /*hlsearch-variable*
82678267
hlset() builtin.txt /*hlset()*
8268+
hlyank-install usr_05.txt /*hlyank-install*
82688269
holy-grail index.txt /*holy-grail*
82698270
home intro.txt /*home*
82708271
home-replace editing.txt /*home-replace*
@@ -9429,6 +9430,7 @@ package-doc repeat.txt /*package-doc*
94299430
package-documentation repeat.txt /*package-documentation*
94309431
package-editorconfig usr_05.txt /*package-editorconfig*
94319432
package-helptoc helphelp.txt /*package-helptoc*
9433+
package-hlyank usr_05.txt /*package-hlyank*
94329434
package-justify usr_25.txt /*package-justify*
94339435
package-matchit usr_05.txt /*package-matchit*
94349436
package-nohlsearch usr_05.txt /*package-nohlsearch*

runtime/doc/usr_05.txt

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_05.txt* For Vim version 9.1. Last change: 2025 Jan 11
1+
*usr_05.txt* For Vim version 9.1. Last change: 2025 Mar 18
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -437,7 +437,7 @@ After restarting your Vim, the plugin is active and you can read about it at: >
437437
:h editorconfig.txt
438438
439439
440-
Adding comment package *comment-install* *package-comment*
440+
Adding the comment package *comment-install* *package-comment*
441441

442442
Load the plugin with this command: >
443443
packadd comment
@@ -450,7 +450,7 @@ the package loaded. Once the package is loaded, read about it at: >
450450
:h comment.txt
451451
452452
453-
Adding nohlsearch package *nohlsearch-install* *package-nohlsearch*
453+
Adding the nohlsearch package *nohlsearch-install* *package-nohlsearch*
454454

455455
Load the plugin with this command: >
456456
packadd nohlsearch
@@ -464,6 +464,29 @@ To disable the effect of the plugin after it has been loaded: >
464464
au! nohlsearch
465465
<
466466

467+
Adding the highlight-yank package *hlyank-install* *package-hlyank*
468+
469+
Load the plugin with this command: >
470+
packadd hlyank
471+
<
472+
This package briefly highlights the affected region of the last |yank|
473+
command. See |52.6| for a simplified implementation using the |getregionpos()|
474+
function.
475+
476+
The plugin understands the following configuration variables (the settings
477+
show the default values).
478+
479+
To specify a different highlighting group, use: >
480+
:let g:hlyank_hlgroup = 'IncSearch'
481+
<
482+
To use a different highlighting duration, use: >
483+
:let g:hlyank_duration = 300
484+
<
485+
To highlight in visual mode, use: >
486+
:let g:hlyank_invisual = v:true
487+
488+
To disable the effect of the plugin after it has been loaded: >
489+
au! hlyank
467490
468491
More information about packages can be found here: |packages|.
469492

runtime/doc/usr_52.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_52.txt* For Vim version 9.1. Last change: 2025 Mar 12
1+
*usr_52.txt* For Vim version 9.1. Last change: 2025 Mar 17
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -346,11 +346,8 @@ Have a look at the package located at $VIMRUNTIME/pack/dist/opt/comment/
346346

347347
HIGHLIGHT YANK PLUGIN
348348

349-
Here is an example for highlighting the yanked region. It makes use of the
350-
|getregionpos()| function, available since Vim 9.1.0446.
351-
352-
Copy the following example into a new file and place it into your plugin directory
353-
and it will be active next time you start Vim. |add-plugin|: >
349+
Vim comes with the highlight-yank plugin, written in Vim9 script
350+
|hlyank-install|, here is a simplified implementation: >vim
354351

355352
vim9script
356353

@@ -375,6 +372,9 @@ and it will be active next time you start Vim. |add-plugin|: >
375372

376373
autocmd TextYankPost * HighlightedYank()
377374
<
375+
For the complete example, have a look into the package located at
376+
`$VIMRUNTIME/pack/dist/opt/hlyank/`
377+
378378
==============================================================================
379379

380380
Next chapter: |usr_90.txt| Installing Vim

runtime/doc/version9.txt

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

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41556,7 +41556,8 @@ Support for protected _new() method
4155641556
*new-other-9.2*
4155741557
Other new features ~
4155841558
------------------
41559-
The new plugins |comment-install| and |nohlsearch-install| are included.
41559+
The new packages |package-comment|, |package-nohlsearch| and |package-hlyank|
41560+
are included.
4156041561

4156141562
Support for Wayland UI.
4156241563

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
vim9script
2+
3+
# Highlight Yank plugin
4+
# Last Change: 2025 Mar 17
5+
6+
def HighlightedYank()
7+
8+
var hlgroup = get(g:, "hlyank_hlgroup", "IncSearch")
9+
var duration = get(g:, "hlyank_duration", 300)
10+
var in_visual = get(g:, "hlyank_invisual", true)
11+
12+
if v:event.operator ==? 'y'
13+
if !in_visual && visualmode() != null_string
14+
visualmode(1)
15+
return
16+
endif
17+
# if clipboard has autoselect (default on linux) exiting from Visual with ESC
18+
# generates bogus event and this highlights previous yank
19+
if &clipboard =~ 'autoselect' && v:event.regname == "*" && v:event.visual
20+
return
21+
endif
22+
var [beg, end] = [getpos("'["), getpos("']")]
23+
var type = v:event.regtype ?? 'v'
24+
var pos = getregionpos(beg, end, {type: type, exclusive: false})
25+
var m = matchaddpos(hlgroup, pos->mapnew((_, v) => {
26+
var col_beg = v[0][2] + v[0][3]
27+
var col_end = v[1][2] + v[1][3] + 1
28+
return [v[0][1], col_beg, col_end - col_beg]
29+
}))
30+
var winid = win_getid()
31+
timer_start(duration, (_) => m->matchdelete(winid))
32+
endif
33+
enddef
34+
35+
augroup hlyank
36+
autocmd!
37+
autocmd TextYankPost * HighlightedYank()
38+
augroup END

src/cmdexpand.c

+14-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
static int cmd_showtail; // Only show path tail in lists ?
1717

18+
static void set_context_for_wildcard_arg(exarg_T *eap, char_u *arg, int usefilter, expand_T *xp, int *complp);
1819
static int ExpandFromContext(expand_T *xp, char_u *, char_u ***, int *, int);
1920
static char_u *showmatches_gettail(char_u *s);
2021
static int expand_showtail(expand_T *xp);
@@ -230,17 +231,17 @@ nextwild(
230231
if (xp->xp_numfiles == -1)
231232
{
232233
#ifdef FEAT_EVAL
233-
if (ccline->input_fn && ccline->xp_context == EXPAND_COMMANDS)
234+
if (ccline->input_fn && ccline->xp_context == EXPAND_COMMANDS)
234235
{
235236
// Expand commands typed in input() function
236237
set_cmd_context(xp, ccline->cmdbuff, ccline->cmdlen, ccline->cmdpos, FALSE);
237-
}
238-
else
238+
}
239+
else
239240
#endif
240-
{
241+
{
241242
set_expand_context(xp);
242-
}
243-
cmd_showtail = expand_showtail(xp);
243+
}
244+
cmd_showtail = expand_showtail(xp);
244245
}
245246

246247
if (xp->xp_context == EXPAND_UNSUCCESSFUL)
@@ -2723,6 +2724,7 @@ set_cmd_context(
27232724
{
27242725
#ifdef FEAT_EVAL
27252726
cmdline_info_T *ccline = get_cmdline_info();
2727+
int context;
27262728
#endif
27272729
int old_char = NUL;
27282730
char_u *nextcomm;
@@ -2745,6 +2747,12 @@ set_cmd_context(
27452747
xp->xp_context = ccline->xp_context;
27462748
xp->xp_pattern = ccline->cmdbuff;
27472749
xp->xp_arg = ccline->xp_arg;
2750+
if (xp->xp_context == EXPAND_SHELLCMDLINE)
2751+
{
2752+
context = xp->xp_context;
2753+
set_context_for_wildcard_arg(NULL, xp->xp_pattern, FALSE, xp,
2754+
&context);
2755+
}
27482756
}
27492757
else
27502758
#endif

src/macros.h

+2-5
Original file line numberDiff line numberDiff line change
@@ -360,11 +360,8 @@
360360
*/
361361
#define VIM_CLEAR(p) \
362362
do { \
363-
if ((p) != NULL) \
364-
{ \
365-
vim_free(p); \
366-
(p) = NULL; \
367-
} \
363+
vim_free(p); \
364+
(p) = NULL; \
368365
} while (0)
369366

370367
/*

src/testdir/Make_all.mak

+2
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ NEW_TESTS = \
239239
test_partial \
240240
test_paste \
241241
test_perl \
242+
test_plugin_comment \
242243
test_plugin_glvs \
243244
test_plugin_man \
244245
test_plugin_matchparen \
@@ -502,6 +503,7 @@ NEW_TESTS_RES = \
502503
test_partial.res \
503504
test_paste.res \
504505
test_perl.res \
506+
test_plugin_comment.res \
505507
test_plugin_glvs.res \
506508
test_plugin_man.res \
507509
test_plugin_matchparen.res \

src/testdir/test_functions.vim

+11-1
Original file line numberDiff line numberDiff line change
@@ -2245,10 +2245,20 @@ func Test_input_func()
22452245
call assert_fails("call input('F:', '', 'invalid')", 'E180:')
22462246
call assert_fails("call input('F:', '', [])", 'E730:')
22472247

2248-
" Test for using 'command' as the completion function
2248+
" Test for using "command" as the completion function
22492249
call feedkeys(":let c = input('Command? ', '', 'command')\<CR>"
22502250
\ .. "echo bufnam\<C-A>\<CR>", 'xt')
22512251
call assert_equal('echo bufname(', c)
2252+
2253+
" Test for using "shellcmdline" as the completion function
2254+
call feedkeys(":let c = input('Shell? ', '', 'shellcmdline')\<CR>"
2255+
\ .. "vim test_functions.\<C-A>\<CR>", 'xt')
2256+
call assert_equal('vim test_functions.vim', c)
2257+
if executable('whoami')
2258+
call feedkeys(":let c = input('Shell? ', '', 'shellcmdline')\<CR>"
2259+
\ .. "whoam\<C-A>\<CR>", 'xt')
2260+
call assert_match('\<whoami\>', c)
2261+
endif
22522262
endfunc
22532263

22542264
" Test for the inputdialog() function

0 commit comments

Comments
 (0)