12
12

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 5 years have passed since last update.

qfcというファイルパスを補完してくれるプラグインが便利

Posted at

##qfc

qfcというファイルパスを補完してくれるzsh, bashのプラグインが公開されています。

便利そうなので使ってみました。

インストール方法は以下のような感じです。

  • git clone https://github.com/pindexis/qfc $HOME/.qfc
  • Add the following line to your *rc (.zshrc, .bashrc, .bash_profile in OSX):
    [[ -s "$HOME/.qfc/bin/qfc.sh" ]] && source "$HOME/.qfc/bin/qfc.sh"

これで、C-fを押せば候補が表示されます。パスはTabで追加していきます。

##qfcz

似たようなの作れるかも知れないと思い、さっそくqfczというやつを作ってみました。zの履歴をしようします。あと、インターフェイスはpecoを利用。

Install
$ git clone https://github.com/syui/qfcz $HOME/.qfcz

$ touch ~/.zshrc && echo '[[ -s "$HOME/.qfcz/bin/qfcz.zsh" ]] && source "$HOME/.qfcz/bin/qfcz.zsh"' >> ~/.zshrc

$ source ~/.zshrc

あまり便利でもないのだけど、ファイルパスを選択的に補完します。C-f

また、移動しながらパスを補完するやつは、C-f,C-fです。

機能は似てるけど内容はぜんぜん違う...。いつかqfcのように全部自前でやるツール作ってみたいです。

機能追加とか修正とかがあれば、お願いします。

12
12
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
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?