grep.kak: Fix some missed used of jump instead of grep-jump

This commit is contained in:
Maxime Coste 2015-08-05 18:37:25 +01:00
parent c01956726a
commit c41870ec98

View File

@ -47,7 +47,7 @@ def grep-next -docstring 'Jump to next grep match' %{
eval -try-client %opt{jumpclient} %{
buffer '*grep*'
exec "%opt{_grep_current_line}g<a-l>/^[^:]+:\d+:<ret>"
jump
grep-jump
}
}
@ -55,6 +55,6 @@ def grep-prev -docstring 'Jump to previous grep match' %{
eval -try-client %opt{jumpclient} %{
buffer '*grep*'
exec "%opt{_grep_current_line}g<a-/>^[^:]+:\d+:<ret>"
jump
grep-jump
}
}