Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 884 Bytes

File metadata and controls

18 lines (14 loc) · 884 Bytes
tags
computer-science/tool
computer-science/Linux
finished true

zoxide

Zoxide is a CLI tool written in Rust that adds intelligent ranking and selection to the traditional cd command. It remembers the top paths visited and allows fuzzy commands. Use it and type long paths no more.

Usage

  • Install.
  • Run z long/path/somewhere where the path is exact.
  • Run z. This tells zoxide to remember this path and return to $HOME.
  • Now, z somewhere would call [[fzf]] to search for somewhere in the paths it knows, and find the "top choice" defined by zoxide's algorithm. In this case, it take you to long/path/somewhere.
  • Use zi <keyword> to search for <keyword> and produce an interactive choice panel (hence the added i). This is useful when <keyword> appears in many paths known to zoxide.