kakoune/src/rc/grep.kak

20 lines
657 B
Plaintext
Raw Normal View History

2012-09-12 14:22:01 +02:00
def -shell-params -file-completion \
grep %{ echo grep in progress, please wait...; %sh{
output=$(mktemp -t kak-grep.XXXXXXXX)
2012-09-09 17:14:08 +02:00
grep -PHn $@ >& ${output} < /dev/null &
echo "echo
try %{ db *grep* } catch %{ }
edit -fifo ${output} *grep*
setb filetype grep
hook buffer BufClose .* %{ %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; }
2012-08-11 12:14:17 +02:00
def gjump %{ exec 'xs^([^:]+):(\d+)<ret>'; edit %reg{1} %reg{2} }