use fifo buffers for grep and make command
This commit is contained in:
parent
db98bcc278
commit
2b8c636377
|
@ -1,12 +1,11 @@
|
|||
def -env-params grep %{ echo grep in progress, please wait...; %sh{
|
||||
output=$(mktemp -t kak-grep.XXXXXXXX)
|
||||
grep -PHn $kak_param0 $kak_param1 $kak_param2 $kak_param3 $kak_param4 >& ${output}
|
||||
grep -PHn $kak_param0 $kak_param1 $kak_param2 $kak_param3 $kak_param4 >& ${output} < /dev/null &
|
||||
echo "echo
|
||||
try %{ db *grep* } catch %{ }
|
||||
edit -scratch *grep*
|
||||
edit -fifo ${output} *grep*
|
||||
setb filetype grep
|
||||
exec %{|cat ${output}<ret>gg}
|
||||
%sh{ rm ${output} }"
|
||||
hook buffer BufClose .* %{ %sh{ rm ${output} } }"
|
||||
}}
|
||||
|
||||
hook global WinSetOption filetype=grep %{
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
def -env-params make %{ echo make in progress, please wait...; %sh{
|
||||
output=$(mktemp -t kak-make.XXXXXXXX)
|
||||
make $kak_param_0 $kak_param_1 $kak_param_2 $kak_param_3 $kak_param_4 >& ${output}
|
||||
make $kak_param_0 $kak_param_1 $kak_param_2 $kak_param_3 $kak_param_4 >& ${output} < /dev/null &
|
||||
echo "echo
|
||||
try %{ db *make* } catch %{ }
|
||||
edit -scratch %{*make*}
|
||||
edit -fifo ${output} *make*
|
||||
setb filetype make
|
||||
exec %{|cat ${output}<ret>gg}
|
||||
%sh{ rm ${output} }"
|
||||
hook buffer BufClose .* %{ %sh{ rm ${output} } }"
|
||||
}}
|
||||
|
||||
hook global WinSetOption filetype=make %{
|
||||
|
|
Loading…
Reference in New Issue
Block a user