Markus Faerevaag a6b655fae9 [wd] v0.2.2: Added MIT-License 10 years ago
..
LICENSE a6b655fae9 [wd] v0.2.2: Added MIT-License 10 years ago
README.md b4ffe5cf0a wd.plugin: Added checks, readme and completion 10 years ago
_wd.sh d41ac7fe3e Updated wd plugin to v0.3.0 10 years ago
wd.plugin.zsh 76e23e62c6 Fix permissions on wd plugin 10 years ago
wd.sh 6adc89131c Fix typo in warp directory plugin 10 years ago

README.md

wd

Maintainer: mfaerevaag

wd (warp directory) lets you jump to custom directories in zsh, without using cd. Why? Because cd seems ineffecient when the folder is frequently visited or has a long path. Source

Usage

  • Add warp point to current working directory:

    wd add test
    

    If a warp point with the same name exists, use add! to overwrite it.

  • From an other directory, warp to test with:

    wd test
    
  • You can warp back to previous directory, and so on, with the puncticulation syntax:

    wd ..
    wd ...
    

    This is a wrapper for the zsh dirs function.

  • Remove warp point test point:

    wd rm test
    
  • List warp points to current directory (stored in ~/.warprc):

    wd show
    
  • List all warp points (stored in ~/.warprc):

    wd ls
    
  • Print usage with no opts or the help argument.