15 lines
618 B
Plaintext
15 lines
618 B
Plaintext
|
def -env-params grep %{ echo grep in progress, please wait...; %sh{
|
||
|
output=$(mktemp -t kak-grep.XXXXXXXX)
|
||
|
grep -Hn $kak_param0 $kak_param1 $kak_param2 $kak_param3 $kak_param4 >& ${output}
|
||
|
echo "echo; edit ${output}; setb filetype grep; hook buffer BufClose ${output} %{ %sh{rm ${output} } }"
|
||
|
}}
|
||
|
|
||
|
hook global WinSetOption filetype=grep %{
|
||
|
addhl group grep-highlight
|
||
|
addhl -group grep-highlight regex "^([^:]+):(\d+):" 1:cyan 2:green
|
||
|
}
|
||
|
|
||
|
hook global WinSetOption filetype=(?!grep).* %{ rmhl grep-highlight; }
|
||
|
|
||
|
def gjump %{ exec 'xs^([^:]+):(\d+)<ret>'; edit %sh{ echo ${kak_reg_1} ${kak_reg_2} } }
|