mirror of
https://github.com/denisidoro/navi
synced 2024-11-10 14:04:17 +00:00
Fix navi fn url::open (#503)
This commit is contained in:
parent
293965e220
commit
1e6dfc1ec9
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ pub enum Command {
|
|||
/// Performs ad-hoc functions provided by navi
|
||||
Fn {
|
||||
/// Function name (example: "url::open")
|
||||
#[clap(possible_values = &["welcome", "open", "widget::last_command"], case_insensitive = true)]
|
||||
#[clap(possible_values = &["welcome", "url::open", "widget::last_command"], case_insensitive = true)]
|
||||
func: Func,
|
||||
/// List of arguments (example: "https://google.com")
|
||||
args: Vec<String>,
|
||||
|
|
Loading…
Reference in a new issue