plugin stop for plugin
Stop an installed plugin if it was running.
Signature
> plugin stop {flags} (name)
Parameters
name: The name, or filename, of the plugin to stop.
Input/output types:
| input | output |
|---|---|
| nothing | nothing |
Examples
Stop the plugin named inc.
> plugin stop incStop the plugin with the filename ~/.cargo/bin/nu_plugin_inc.
> plugin stop ~/.cargo/bin/nu_plugin_incStop all plugins.
> plugin list | each { |p| plugin stop $p.name }