fish/functions/path_this.fish @ b1afc5432344

moooroe
author Steve Losh <steve@stevelosh.com>
date Sun, 02 Mar 2014 13:10:47 -0500
parents d66bfb2537fe
children (none)
function path_this -d "Add the cwd to the front of PATH"
    set PATH (pwd) $PATH
end