fisher/man/man1/fisher-uninstall.md
Jorge Bucaran ee0338d5b0
Ahoy! Fisherman gets a super patch v0.3.1
This patch contains several amends for 0.3.0 and
other minor documentation corrections.  Major
documentation revision and rewrite.

fisher help shows fisher(1) by default now.

Fix a critical bug that was causing fisher uninstall
--force to remove not the symbolic link, but the
actual files. Closes #24

Rename orphan tag to custom for plugins installed
using a custom URL.

warning Remove fisher --link flag and create symbolic
links by default for local paths. The user does not
have to worry about symbolic links or whether the
copy is as symbolic link or not anymore. If the user
tries to install a local path, then the best thing
to do is to create a symbolic link. This also
eliminates the need to call update.

warning Remove fisher --cache and fisher --validate.
Now, that these options are separated into their own
function and they are intentionally private, there
is no need for them.
2016-01-10 16:13:46 +09:00

1.1 KiB

fisher-uninstall(1) -- Uninstall Plugins

SYNOPSIS

fisher uninstall [plugins ...]
fisher uninstall [--force] [--quiet] [--help]

USAGE

fisher uninstall plugin
fisher uninstall owner/repo
fisher uninstall path

DESCRIPTION

Uninstall one or more plugins, by name, URL or local path. If no arguments are given, read the standard input. This process is the inverse of Install. See fisher help install.

Uninstall does not remove any copies of the given plugin in $fisher_cache. To erase the copy from the cache, use the --force option.

Uninstall does not remove any dependencies installed with other plugins. This behavior prevents breaking plugins that share the same dependency. See Flat Tree in fisher(7).

OPTIONS

  • -f --force: Delete copy from cache.

  • -q --quiet: Enable quiet mode.

  • -h --help: Show usage help.

EXAMPLES

  • Uninstall all plugins and flush the cache.
fisher --list | fisher uninstall --force

SEE ALSO

fisher(1)
fisher help plugins