dotfiles/oh-my-zsh-bak/plugins/wd
2014-08-28 22:26:43 +02:00
..
_wd.sh Cloned oh-my-zsh repositry 2014-08-28 22:26:43 +02:00
README.md Cloned oh-my-zsh repositry 2014-08-28 22:26:43 +02:00
wd.plugin.zsh Cloned oh-my-zsh repositry 2014-08-28 22:26:43 +02:00
wd.sh Cloned oh-my-zsh repositry 2014-08-28 22:26:43 +02:00

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.