diff options
author | Bjorn Ove Hay Andersen | 2023-10-18 08:45:05 +0000 |
---|---|---|
committer | GitHub | 2023-10-18 08:45:05 +0000 |
commit | e6d2835b0907102831a8979688a8464c064ff842 (patch) | |
tree | 0fe84faa8dd583f318596a593f4c286c9a4b7222 /helix-term/src/args.rs | |
parent | fc16449efe58a49c15e19c9fde6584d8625493fd (diff) |
Fixed issue when the first file specified as an argument was a relative directory (#8520)
Diffstat (limited to 'helix-term/src/args.rs')
-rw-r--r-- | helix-term/src/args.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/args.rs b/helix-term/src/args.rs index 6a49889b..99ce3992 100644 --- a/helix-term/src/args.rs +++ b/helix-term/src/args.rs @@ -17,6 +17,7 @@ pub struct Args { pub log_file: Option<PathBuf>, pub config_file: Option<PathBuf>, pub files: Vec<(PathBuf, Position)>, + pub open_cwd: bool, pub working_directory: Option<PathBuf>, } |