fish/functions/path_this.fish @ be6bc1ce4ad3

Fix hours
author Steve Losh <steve@stevelosh.com>
date Tue, 03 Jul 2018 04:58:57 +0000
parents d66bfb2537fe
children (none)
function path_this -d "Add the cwd to the front of PATH"
    set PATH (pwd) $PATH
end