-
Notifications
You must be signed in to change notification settings - Fork 722
/
Copy pathgrep.kak
70 lines (60 loc) · 2.31 KB
/
grep.kak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
declare-option -docstring "shell command run to search for subtext in a file/directory" \
str grepcmd 'grep -RHn'
provide-module grep %{
require-module fifo
require-module jump
define-command -params .. -docstring %{
grep [<arguments>]: grep utility wrapper
All optional arguments are forwarded to the grep utility
Passing no argument will perform a literal-string grep for the current selection
} grep %{
evaluate-commands -save-regs gs %{
set-register g %opt{grepcmd}
set-register s %val{selection}
evaluate-commands -try-client %opt{toolsclient} %{
fifo -name *grep* -script %{
trap - INT QUIT
grepcmd=${kak_reg_g}
selection=${kak_reg_s}
if [ $# -eq 0 ]; then
case "$grepcmd" in
ag\ * | git\ grep\ * | grep\ * | rg\ * | ripgrep\ * | ugrep\ * | ug\ *)
set -- -F -- "$selection"
;;
ack\ *)
set -- -Q -- "$selection"
;;
*)
set -- -- "$selection"
;;
esac
fi
eval "$grepcmd \"\$@\"" 2>&1 | tr -d '\r'
} -- %arg{@}
set-option buffer filetype grep
set-option buffer jump_current_line 0
}
}
}
complete-command grep file
hook -group grep-highlight global WinSetOption filetype=grep %{
add-highlighter window/grep group
add-highlighter window/grep/ regex "^([^:\n]+):(\d+):(\d+)?" 1:cyan 2:green 3:green
add-highlighter window/grep/ line %{%opt{jump_current_line}} default+b
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/grep }
}
hook global WinSetOption filetype=grep %{
hook buffer -group grep-hooks NormalKey <ret> jump
hook -once -always window WinSetOption filetype=.* %{ remove-hooks buffer grep-hooks }
}
define-command -hidden grep-jump %{
jump
}
define-command grep-next-match -docstring %{alias for "jump-next *grep*"} %{
jump-next -matching \*grep(-.*)?\*
}
define-command grep-previous-match -docstring %{alias for "jump-previous *grep*"} %{
jump-previous -matching \*grep(-.*)?\*
}
}
hook -once global KakBegin .* %{ require-module grep }