什麼是模糊搜索?
廣義的模糊搜索是指容許被搜索信息和搜索提問之間存在必定的差別,這種差別就是「模糊」在搜索中的含義。例如,查找名字Smith時,就會找出與之類似的Smithe, Smythe, Smyth, Smitt等。
但咱們這裏模糊搜索特指搜索關鍵詞離散且亂序。
看以下的搜索,個人關鍵詞是「a t dir go 15 6」, 搜索到的結果是「app/go/test/fixedbugs/issue15609.dir/call_amd64.s」
能夠看到結果並非按照關鍵詞順序有序排列的php
最出名的fizzy finder固然是FZF, 這位韓國大神Junegunn Choi寫的幾個小工具都很神,證實了一個道理:牛人出品質量有保障。html
FZF只是一個模糊搜索的命令行工具,它須要結合其餘工具一塊兒來用,它的輸入要從其餘工具獲得,它的輸出通常也是送給其餘工具。node
目前比較多的是如下幾個工具git
後兩個是最新出的兩個搜索方面的新秀,應該是目前速度最快的。shell
能夠設置使用rg來獲得文件列表json
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!{.git,node_modules}/*" 2> /dev/null' export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_ALT_C_COMMAND="rg --sort-files --files --null 2> /dev/null | xargs -0 dirname | uniq"
在.vimrc裏能夠寫上vim
let g:rg_command = ' \ rg --column --line-number --no-heading --fixed-strings --ignore-case --no-ignore --hidden --follow --color "always" \ -g "*.{js,json,php,md,styl,jade,html,config,py,cpp,c,go,hs,rb,conf}" \ -g "!{.git,node_modules,vendor}/*" ' command! -bang -nargs=* F call fzf#vim#grep(g:rg_command .shellescape(<q-args>), 1, <bang>0)
這樣你在vim裏輸入:F <key word>就能夠進行相關rvapp
也能夠設置用fd來獲得文件列表,由於fd和rg的walkthrough代碼是共享的,因此速度基本同樣異步
export FZF_DEFAULT_COMMAND='fd --type f --color=never' export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_ALT_C_COMMAND="fd --type d --color=never"
注意若是用time來比較rg和fd的速度時,每每會得出rg比fd快的結論,其實這是由於fd會彩色輸出結果。
若是用fd --type f --color=never
和rg --files
來比較的話,結果基本是同樣的工具
好比下面進入所選文件所在文件夾
# cdf - cd into the directory of the selected file cdf() { local file local dir file=$(fzf +m -q "$1") && dir=$(dirname "$file") && cd "$dir" }
好比執行歷史命令
fh() { eval $( ([ -n "$ZSH_NAME" ] && fc -l 1 || history) | fzf +s --tac | sed 's/ *[0-9]* *//') }
好比checkout git分支
# fbr - checkout git branch (including remote branches), sorted by most recent commit, limit 30 last branches fbr() { local branches branch branches=$(git for-each-ref --count=30 --sort=-committerdate refs/heads/ --format="%(refname:short)") && branch=$(echo "$branches" | fzf-tmux -d $(( 2 + $(wc -l <<< "$branches") )) +m) && git checkout $(echo "$branch" | sed "s/.* //" | sed "s#remotes/[^/]*/##") }
FZF實際上是膠水工具,它須要讀入其餘工具的輸出作爲輸入,而後或者調用其餘工具讀取它的輸出,或者把本身的輸出送給其餘工具做爲輸入。
理解了這一點就可以很好的結合fzf和其餘工具。
有任何有趣的點子,歡迎和本人分享