grep.kak: use perl regex syntax and quote parameters

This commit is contained in:
Maxime Coste 2012-08-17 12:39:57 +02:00
parent c1fcc593a1
commit 4b93a90047

View File

@ -1,6 +1,6 @@
def -env-params grep %{ echo grep in progress, please wait...; %sh{ def -env-params grep %{ echo grep in progress, please wait...; %sh{
output=$(mktemp -t kak-grep.XXXXXXXX) output=$(mktemp -t kak-grep.XXXXXXXX)
grep -Hn $kak_param0 $kak_param1 $kak_param2 $kak_param3 $kak_param4 >& ${output} grep -PHn "$kak_param0" "$kak_param1" "$kak_param2" "$kak_param3" "$kak_param4" >& ${output}
echo "echo echo "echo
try %{ db *grep* } catch %{ } try %{ db *grep* } catch %{ }
edit -scratch *grep* edit -scratch *grep*