-
Notifications
You must be signed in to change notification settings - Fork 0
/
tab-to-find.plugin.zsh
373 lines (319 loc) · 13.4 KB
/
tab-to-find.plugin.zsh
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
#!/usr/bin/env zsh
# 20220820 hangzhou
# 依赖 fd 和 fzf
# cd into the directory of the selected file
cd() {
if [ -z $1 ]; then
# echo "\n z : "$1
builtin cd
return
fi
if [ -d $1 ]; then
builtin cd "$1"
else
if [ -e $1 ]; then
local dir=$(dirname "$1")
# echo "\n dir : "${dir}
builtin cd "$dir"
else
builtin cd "$1"
fi
fi
}
__tab_fzf_bindings() {
autoload is-at-least
fzf=$(__fzf_cmd_ex)
if $(is-at-least '0.21.0' $(${=fzf} --version)); then
echo 'shift-tab:up,tab:down,bspace:backward-delete-char/eof'
else
echo 'shift-tab:up,tab:down'
fi
}
__fzf_cmd_ex() {
[ -n "$TMUX_PANE" ] && { [ "${FZF_TMUX:-0}" != 0 ] || [ -n "$FZF_TMUX_OPTS" ]; } &&
echo "fzf-tmux ${FZF_TMUX_OPTS:--d${FZF_TMUX_HEIGHT:-40%}} -- " || echo "fzf"
}
__pre_gen_subdir_res() {
local dir length last_str seg type_arg
dir="$1"
type_arg="$2"
last_str="$3"
seg="$4"
# echo "\n __pre_gen_subdir_res last_str: ${last_str}"
# echo "\n __pre_gen_subdir_res type_arg: ${type_arg}"
# echo "\n __pre_gen_subdir_res seg: ${seg}"
# echo "\n __pre_gen_subdir_res dir: ${dir}"
# 能进来这个函数就说明 `! -e $last_str` 肯定为真, 也就是 last_str 这个文件/目录 肯定存在
if [[ "$last_str" == *// && ! -e $last_str ]]; then
type_arg=" --type d"
fi
if [[ "$last_str" == *.. && ! -e $last_str ]]; then
type_arg=" --type file --type symlink"
fi
if [ -z "$seg" ]; then
length=3
elif [ "$dir" = "/" ]; then
length=2
else
dir="${dir/#'~'/$HOME}" # 把 ~/blabla 转为 /Users/musk 不然 -d 判断会有问题
length=$(( $(echo -n "$dir" | wc -c) + 2 )) # 得到 dir 的字符串长度
fi
# echo "fd . $dir --follow -HI --exclude '.git' --exclude '.svn' $type_arg --max-depth 1 2>/dev/null | cut -b $(( ${length} ))- | command sed s'/\/$//'"
fd . "$dir" --follow -HI --exclude '.git' --exclude '.svn' $(echo $type_arg) --max-depth 1 2>/dev/null | cut -b ${length}"-" | command sed s'/\/$//' | while read -r line; do
if [[ "$line:u" == *"$seg:u"* ]]; then
echo "$line"
fi
done
}
__gen_fd_cmd() {
local dir length type_arg max_depth_arg last_str seg
dir="$1"
type_arg="$2"
last_str="$3"
seg="$4"
# 一共有几种情况:
# - `cd doc/test_folder/` ,而 test_folder 存在, 此时应该要递归搜索 doc下的所有目录和文件, 因为这个最后的/大概率是本脚本帮用户加上的
# - `cd doc/test_folder` , 而 test_folder 存在, 此时应该要递归搜索 doc下的所有
# - `cd doc/dafadfa` , 而 dafadfa 不存在, 此时应该要递归搜索 doc下的所有
# - `cd doc/dafadfa/` , 而 dafadfa/ 不存在, 此时应该要只搜索 doc下的这一层的目录, 而非递归
# echo "\n __gen_fd_cmd last_str: ${last_str}"
# echo "\n __gen_fd_cmd type_arg: ${type_arg}"
# echo "\n __gen_fd_cmd dir: ${dir}"
if [[ "$last_str" == *// ]]; then
max_depth_arg=" --max-depth 1"
type_arg=" --type d"
elif [[ "$last_str" == */ && ! -e $last_str ]]; then
max_depth_arg=" --max-depth 1"
type_arg=" --type d"
fi
if [[ "$last_str" == *.. ]]; then
max_depth_arg=" --max-depth 1"
type_arg=" --type file --type symlink"
fi
if [ -z "$seg" ]; then
length=3
elif [ "$dir" = "/" ]; then
length=2
else
dir="${dir/#'~'/$HOME}" # 把 ~/blabla 转为 /Users/musk 不然 -d 判断会有问题
length=$(( $(echo -n "$dir" | wc -c) + 2 )) # 得到 dir 的字符串长度
fi
# echo "fd . $dir --follow -HI --exclude '.git' --exclude '.svn' $type_arg --max-depth 1 2>/dev/null | cut -b ${length}"-" | command sed s'/\/$//'"
echo "fd . $dir --follow -HI --exclude '.git' --exclude '.svn' $type_arg $max_depth_arg 2>/dev/null | cut -b ${length}"-" | command sed s'/\/$//'"
}
# Paste the selected file path(s) into the command line
__get_fd_result() {
# echo "\n s1 : \n"$1
# echo "\n"
# local cmd="command fd . --follow -HI --exclude '.git' --exclude '.svn' --type f --max-depth 5 2>/dev/null"
local cmd="$1"
fzf_bindings=$(__tab_fzf_bindings)
setopt localoptions pipefail no_aliases 2> /dev/null
local item
# eval "$cmd" | FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse --bind=ctrl-z:ignore $FZF_DEFAULT_OPTS $FZF_CTRL_T_OPTS" $(__fzf_cmd_ex) -m "$@" | while read item; do
eval "$cmd" | FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse --bind=ctrl-z:ignore --bind '${fzf_bindings}' $FZF_DEFAULT_OPTS $FZF_CTRL_T_OPTS" $(__fzf_cmd_ex) -m --query "$2" | while read item; do
echo -n "${(q)item}"
done
local ret=$?
echo
return $ret
}
# 这个不是提前fd生成好结果供挑选, 而是直接 fzf 动态 fd 的, 适合深度搜索, depth 在 1 层的用 _tab_complete 函数比较适合
_tab_complete() {
setopt localoptions nonomatch
local l matches fzf tokens last_str fd_cmd fd_res seg cmd dir
local is_pre_gen=0
tokens=(${(z)LBUFFER})
cmd=${tokens[1]}
dir="$1"
last_str="$3"
seg="$4"
# echo "\n __fzf_file_widget_ex s1: $1"
# echo "\n __fzf_file_widget_ex s2: $2"
# echo "\n __fzf_file_widget_ex s3: $3"
# echo "\n __fzf_file_widget_ex s4: $4"
# echo "\n __fzf_file_widget_ex cmd: ${cmd}"
# echo "\n __fzf_file_widget_ex seg: ${seg}"
# echo "\n __fzf_file_widget_ex dir: ${dir}"
# echo "\n __fzf_file_widget_ex last_str: ${last_str}"
# 如果用户要搜索的东西已经存在了, 用户还是按了tab, 那说明不是用户想要的结果, 那就继续递归搜索下面的所有的
# 如果用户要搜索的东西不存在那就先试着搜索当前文件夹下的
if [[ ! -e $last_str && -n $seg ]]; then
# echo "\n enter pre gen"
# __pre_gen_subdir_res $@
# return
l=$(__pre_gen_subdir_res $@)
# 如果检测当前文件夹的只有一个返回结果, 而且不为空字符串则直接补全, 否则在子文件夹里递归搜索
if [[ $(echo $l | wc -l) -eq 1 && -n "$l" ]]; then
# echo "\n only 1: "$l
# echo "\n"
is_pre_gen=1
fd_res=${(q)l}
fi
fi
if ! [ -n "$fd_res" ]; then
# __gen_fd_cmd $@
# return
fd_cmd=$(__gen_fd_cmd $@)
# echo "__fzf_file_widget_ex fd_cmd:\n "${fd_cmd}
# echo "\n __fzf_file_widget_ex 2 last_str: "${last_str}
# echo "\n __fzf_file_widget_ex seg: "${seg}
fd_res=$(__get_fd_result $fd_cmd $seg)
fi
# echo "\n __fzf_file_widget_ex fd_res: "${fd_res}
if [ -n "$fd_res" ]; then
# echo "4 LBUFFER: "${LBUFFER}
# echo "tokens: "${tokens}
# echo "1 last_str: "${last_str}
# - 需要删除最后一个斜杠后面的字符串的情况:
# 1. 比如用户输入 `cd /home/musk/bb/` 如果 bb 这个文件目录不存在, 那用户如果选了候选的 `bilibili`, 那应该去掉`bb/`替换成`bilibili/`
# 2. `cd /home/musk/bb` , 注意此时没有最后的斜杠, 如果 bb 这个文件目录不存在, 那用户如果选了候选的 `bilibili` , bb 替换成 `bilibili/`
# - 不需要删除最后一个斜杠后面的字符串的情况:
# 1. 比如用户输入 `cd /home/musk/doc/` 如果 doc 这个文件目录存在, 那用户如果选了候选的 `acfun`, 那应该变为 `cd /home/musk/acfun/`
# 2. `cd /home/musk/doc/acfun` , 那用户如果选了候选的 `acfun`, 那用户的输入应该保持不变, 而不是变为 `cd /home/musk/doc/acfunacfun`
if [[ ${dir[-1]} != / ]]; then
dir="$dir/"
fi
tokens_cnt=${#tokens[*]}
# echo "#tokens: "${tokens_cnt}
# 当已经有的用户输入用空格 split 之后的元素大于 2 之后, 比如 `mv doc ppt` , 那此时 tokens_cnt 为 3
# 当大于 2 的时候此时应该把 LBUFFER 变成 `mv doc `
# 当小于等于 2 的时候, 比如 `cd do/` 此时应该把 LBUFFER 变成 `cd `
if [ $tokens_cnt -gt 2 ]; then
LBUFFER=""
i=1
while [ $i -lt $tokens_cnt ]
do
LBUFFER=$LBUFFER"${tokens[$i]} "
let i++
done
else
LBUFFER="${tokens[1]} "
fi
# echo "\n before LBUFFER: "${LBUFFER}
# echo "\n 2 last_str : "${last_str}
# echo "after LBUFFER: "${LBUFFER}
# echo "5 last_str : "${last_str}
# echo "dir : "${dir}
# echo "fd_res : "${fd_res}
# echo "last_str+fd_res : "${last_str}${fd_res}
# if [ "$dir" = "~/" ]; then
# # 因为这个搜出来的就直接是 /Users/muskblabla 的形式, 所以 dir 得置空
# dir=""
# fi
local final_path_str="${dir}${fd_res}"
final_path_str="${final_path_str/#$HOME/~}" # 把 `/Users/musk` 这种替换成 `~/`
LBUFFER="${LBUFFER}${final_path_str}"
# echo "\n final_path_str: "${final_path_str}
local absPath="${final_path_str/#'~'/$HOME}" # 把 ~/blabla 转为 /Users/musk 不然 -d 判断会有问题
# echo "\n absPath: "${absPath}
if [[ -d ${absPath} && ! -L ${absPath} ]]; then # 如果是文件夹且不是符号链接(因为软链接也能通过 -d 检测)就在后面加个 /
LBUFFER="${LBUFFER}/"
fi
# echo "\n after LBUFFER: "${LBUFFER}
fi
if [ $is_pre_gen -eq 1 ]; then
zle redisplay
typeset -f zle-line-init >/dev/null && zle zle-line-init
return
fi
local ret=$?
zle reset-prompt
return $ret
}
tab-completion() {
setopt localoptions noshwordsplit noksh_arrays noposixbuiltins
local tokens cmd dir seg
local last_str=""
local type_arg="--type file --type directory --type symlink"
tokens=(${(z)LBUFFER})
tokens_cnt=${#tokens[*]}
cmd=${tokens[1]}
if [ $tokens_cnt -ge 2 ]; then
last_str=${tokens[-1]}
fi
if [[ "$last_str" = "../" || "$last_str" = ".." ]]; then
dir=".."
elif [[ "$last_str" = "~/" || "$last_str" = "~" ]]; then
dir="~"
else
dir="$(dirname -- "$last_str")"
fi
# 获取要放到 fzf 窗口的待搜字符串 seg
if [[ "${last_str}" == "-"* || "${last_str}" == "--"* || "$last_str" = "../" || "$last_str" = ".." || "$last_str" = "~/" || "$last_str" = "~" ]]; then
seg=""
else
seg="$(basename -- "$last_str")"
if [[ "${seg}" == *".." || "${seg}" == *"//" ]]; then
seg=${seg%??}
fi
fi
# 空tab 直接搜索
if [ -z "${LBUFFER}" ]; then
# 注意这些参数的摆放位置, 因为 seg 和 last_str 是有可能为空的, 如果放在中间的话, shell 会导致 $3 变 $2 , 因为空字符串不被视为一个参数
_tab_complete ${dir} ${type_arg} ${last_str} ${seg}
return
fi
# 类似 `ln -` 和 `ln --` 这种就不用补了
if [[ "${LBUFFER}" == *" -" || "${LBUFFER}" == *" --" ]]; then
zle ${__tab_default_completion:-expand-or-complete}
return
fi
declare -A fd_type_2_cmd
fd_type_2_cmd["file"]="cat tac nl more less head tail vim vi"
fd_type_2_cmd["directory"]="rmdir mkdir cd ls ll l"
fd_type_2_cmd["anything"]="rm chmod chown cp mv ln"
local shouldTakeover=0
# 注意下方代码的 $(echo ${fd_type_2_cmd["directory"]}) 比如得这么写不然会和 zsh 不兼容导致错误, 这么写是最好的兼容性
for cmd_str in $(echo ${fd_type_2_cmd["directory"]}); do
if [ "$cmd" = "$cmd_str" ]; then
shouldTakeover=1
type_arg="--type directory"
break
fi
done
if [ $shouldTakeover -ne 1 ]; then
for cmd_str in $(echo ${fd_type_2_cmd["file"]}); do
if [ "$cmd" = "$cmd_str" ]; then
shouldTakeover=1
type_arg="--type file"
break
fi
done
if [ $shouldTakeover -ne 1 ]; then
for cmd_str in $(echo ${fd_type_2_cmd["anything"]}); do
if [ "$cmd" = "$cmd_str" ]; then
shouldTakeover=1
break
fi
done
fi
fi
# echo "\n tab-completion dir: "${dir}
# echo "\n tab-completion seg: "${seg}
# echo "\n tab-completion type_arg: "${type_arg}
# echo "\n tab-completion last_str: "${last_str}
# echo "\n tab-completion cmd: "${cmd}
# echo "\n tab-completion shouldTakeover: "${shouldTakeover}
if [ $shouldTakeover -eq 1 ]; then
# 注意这些参数的摆放位置, 因为 seg 和 last_str 是有可能为空的, 如果放在中间的话, shell 会导致 $3 变 $2 , 因为空字符串不被视为一个参数
_tab_complete ${dir} ${type_arg} ${last_str} ${seg}
else
zle ${__tab_default_completion:-expand-or-complete}
fi
}
[ -z "$__tab_default_completion" ] && {
binding=$(bindkey '^I')
# $binding[(s: :w)2]
# The command substitution and following word splitting to determine the
# default zle widget for ^I formerly only works if the IFS parameter contains
# a space via $binding[(w)2]. Now it specifically splits at spaces, regardless
# of IFS.
[[ $binding =~ 'undefined-key' ]] || __tab_default_completion=$binding[(s: :w)2]
unset binding
}
zle -N tab-completion
if [ -z $tab_custom_binding ]; then
tab_custom_binding='^I'
fi
bindkey "${tab_custom_binding}" tab-completion