We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sound meta -a
1 parent 10adbf2 commit 1e7f55bCopy full SHA for 1e7f55b
src/audio_meta.rs
@@ -48,13 +48,8 @@ impl SimplePluginCommand for SoundMetaGetCmd {
48
49
fn signature(&self) -> Signature {
50
Signature::new("sound meta")
51
- .named(
52
- "all",
53
- SyntaxShape::Nothing,
54
- "List all possible frame names",
55
- Some('a'),
56
- )
57
- .required("File Path", SyntaxShape::Filepath, "file to play")
+ .switch("all", "List all possible frame names", Some('a'))
+ .optional("File Path", SyntaxShape::Filepath, "file to play")
58
.category(Category::Experimental)
59
}
60
0 commit comments