3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

fzfとfdで超高速ファイル検索

Posted at

fzffuzzy finder (ファジーファインダー)のこと、つまり曖昧検索
fdfind コマンドの代わり

この二つを組み合わせれば最強。一瞬で開発環境に飛べます

使い方は <C-t> (コントロールとT)でファイル検索
<M-c> (オプションとC)で検索フォルダ移動

インストールは、下のコマンドで終わり。
fzfはbrewからもできるけどこっちの方がおすすめ。 zshrcにスクリプトが書いてくれる

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

brew install fd

.bash_profile.zshrc に以下を追加

export FZF_DEFAULT_COMMAND='fd --type f'
export FZF_CTRL_T_COMMAND='fd --type f'
export FZF_ALT_C_COMMAND='fd --type d'

あと、一番使うのは (コントロールR) コマンドヒストリーを曖昧検索してくれる

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?