Make grep-(next|prev)-match use the latest buffer matching \*grep(-.*)\*

This commit is contained in:
Maxime Coste 2024-04-19 16:49:58 +10:00
parent 5fd9bb59e3
commit da1c302a37
2 changed files with 8 additions and 8 deletions

View File

@ -54,11 +54,11 @@ define-command -hidden grep-jump %{
}
define-command grep-next-match -docstring %{alias for "jump-next *grep*"} %{
jump-next *grep*
jump-next -matching \*grep(-.*)?\*
}
define-command grep-previous-match -docstring %{alias for "jump-previous *grep*"} %{
jump-previous *grep*
jump-previous -matching \*grep(-.*)?\*
}
}

View File

@ -21,17 +21,17 @@ define-command -hidden jump %{
}
}
define-command jump-next -params 1 -docstring %{
define-command jump-next -params 1.. -docstring %{
jump-next <bufname>: jump to next location listed in the given *grep*-like location list buffer.
} %{
evaluate-commands -try-client %opt{jumpclient} -save-regs / %{
buffer %arg{1}
buffer %arg{@}
jump-select-next
jump
}
try %{
evaluate-commands -client %opt{toolsclient} %{
buffer %arg{1}
buffer %arg{@}
execute-keys gg %opt{jump_current_line}g
}
}
@ -44,17 +44,17 @@ define-command -hidden jump-select-next %{
execute-keys ge %opt{jump_current_line}g<a-l> /^[^:\n]+:\d+:<ret>
}
define-command jump-previous -params 1 -docstring %{
define-command jump-previous -params 1.. -docstring %{
jump-previous <bufname>: jump to previous location listed in the given *grep*-like location list buffer.
} %{
evaluate-commands -try-client %opt{jumpclient} -save-regs / %{
buffer %arg{1}
buffer %arg{@}
jump-select-previous
jump
}
try %{
evaluate-commands -client %opt{toolsclient} %{
buffer %arg{1}
buffer %arg{@}
execute-keys gg %opt{jump_current_line}g
}
}