diff options
Diffstat (limited to 'helix-term/src/args.rs')
-rw-r--r-- | helix-term/src/args.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/args.rs b/helix-term/src/args.rs index 4f386aea..11bad08c 100644 --- a/helix-term/src/args.rs +++ b/helix-term/src/args.rs @@ -11,6 +11,7 @@ pub struct Args { pub load_tutor: bool, pub verbosity: u64, pub files: Vec<(PathBuf, Position)>, + pub edit_config: bool, } impl Args { @@ -26,6 +27,7 @@ impl Args { "--version" => args.display_version = true, "--help" => args.display_help = true, "--tutor" => args.load_tutor = true, + "--edit-config" => args.edit_config = true, "--health" => { args.health = true; args.health_arg = argv.next_if(|opt| !opt.starts_with('-')); |