mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 12:15:42 +02:00
Plugins signature load (#349)
* saving signatures to file * loading plugin signature from file * is_plugin column for help command
This commit is contained in:
@ -215,8 +215,8 @@ impl Command for PluginDeclaration {
|
||||
Ok(pipeline_data)
|
||||
}
|
||||
|
||||
fn is_plugin(&self) -> bool {
|
||||
true
|
||||
fn is_plugin(&self) -> Option<&str> {
|
||||
Some(self.filename.as_str())
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user