ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

我最喜欢的工具fzf

2022-05-29 22:02:47  阅读:357  来源: 互联网

标签:git -- Items 搜索 喜欢 工具 fzf match


模糊搜索神器fzf;

fzf是一个交互式的搜索工具,他从标准输入读取一个候选列表,并将选择项写入标准输出。

你在任何地方用到搜索或者从多个候选项中选择一个时,都应该想到fzf,用fzf增强原来的搜索选择,让你爽的飞起!

安装

git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install

几个小样例

交互式搜索文件

find * -type f | fzf > selected

搜索文件并使用vim打开

vim $(fzf)

灵魂-简洁的搜索语法

TokenMatch typeDescription
sbtrkt fuzzy-match Items that match sbtrkt
'wild exact-match (quoted) Items that include wild
^music prefix-exact-match Items that start with music
.mp3$ suffix-exact-match Items that end with .mp3
!fire inverse-exact-match Items that do not include fire
!^music inverse-prefix-exact-match Items that do not start with music
!.mp3$ inverse-suffix-exact-match Items that do not end with .mp3

命令行按键绑定和增强

快捷键 描述
ctrl+t 搜索当前目录下的文件或者目录并打印到命令行中
ctrl+r 将原来的历史命令搜索增强
alt+c 选择目录并切换到选择的目录

模糊补全

# Files under the current directory
# - You can select multiple items with TAB key
vim **<TAB>

# Files under parent directory
vim ../**<TAB>

# Files under parent directory that match `fzf`
vim ../fzf**<TAB>

# Files under your home directory
vim ~/**<TAB>


# Directories under current directory (single-selection)
cd **<TAB>

# Directories under ~/github that match `fzf`
cd ~/github/fzf**<TAB>

还有我不常用的,进程号搜索,环境变量设置,host搜索

搜索并预览文件内容

然后在.zshrc里用函数或别名

alias tt='fzf --preview '"'"'[[ $(file --mime {}) =~ binary ]] && echo {} is a binary file || (bat --style=numbers --color=always {} || rougify {}  || highlight -O ansi -l {} || coderay {} || cat {}) 2> /dev/null | head -500'"'"

git命令增强

切换git分支

alias gcof='git checkout ${$(git branch --remote | fzf)#"origin/"}'

merge指定分支内容

alias gmf='git merge ${$(git branch --remote | fzf)#"origin/"}'

参考

官方git:https://github.com/junegunn/fzf

https://segmentfault.com/a/1190000011328080

https://www.jianshu.com/p/b48131e4ad06

 

标签:git,--,Items,搜索,喜欢,工具,fzf,match
来源: https://www.cnblogs.com/halu126/p/16324914.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有