kakoune/src/rc/grep.kak

20 lines
665 B
Plaintext
Raw Normal View History

2012-09-12 14:22:01 +02:00
def -shell-params -file-completion \
2012-12-06 20:12:44 +01:00
grep %{ %sh{
output=$(mktemp -d -t kak-grep.XXXXXXXX)/fifo
mkfifo ${output}
( grep -PHn "$@" >& ${output} ) >& /dev/null < /dev/null &
2012-12-06 20:12:44 +01:00
echo "try %{ db *grep* } catch %{ }
edit -fifo ${output} *grep*
setb filetype grep
hook buffer BufClose .* %{ %sh{ rm -r $(dirname ${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} }