From 73cd346c1bfb2a7f3414b6c6e7937c8a63c1659e Mon Sep 17 00:00:00 2001 From: Denis Isidoro Date: Thu, 19 Mar 2020 15:27:34 -0300 Subject: [PATCH] fzf-overrides: no need for leading space --- src/structures/option.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/option.rs b/src/structures/option.rs index 88898ac..3f813f8 100644 --- a/src/structures/option.rs +++ b/src/structures/option.rs @@ -35,11 +35,11 @@ pub struct Config { #[structopt(long)] pub no_preview: bool, - /// FZF overrides for cheat selection (must start with an empty space) + /// FZF overrides for cheat selection #[structopt(long, env = "NAVI_FZF_OVERRIDES")] pub fzf_overrides: Option, - /// FZF overrides for variable selection (must start with an empty space) + /// FZF overrides for variable selection #[structopt(long, env = "NAVI_FZF_OVERRIDES_VAR")] pub fzf_overrides_var: Option,