forked from oh-my-fish/plugin-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
as described at jorgebucaran/fisher#651 (comment)
- Loading branch information
Showing
3 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
set SOURCE_DIR (dirname (status -f)) | ||
|
||
if not functions -q __wrapped_cd | ||
functions -c cd __wrapped_cd | ||
functions -e cd | ||
end | ||
|
||
functions -c __plugin_cd cd | ||
|
||
function _cd_uninstall --on-event cd_uninstall | ||
functions -e cd | ||
|
||
if functions -q __wrapped_cd | ||
functions -c __wrapped_cd cd | ||
functions -e __wrapped_cd | ||
end | ||
|
||
functions -e __plugin_cd | ||
end |
This file was deleted.
Oops, something went wrong.