Unnamed repository; edit this file 'description' to name the repository.
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 9b1b4409..090c1192 100644 --- a/helix-term/src/args.rs +++ b/helix-term/src/args.rs @@ -102,6 +102,7 @@ impl Args { } } } + "+" => line_number = usize::MAX, arg if arg.starts_with('+') => { match arg[1..].parse::<usize>() { Ok(n) => line_number = n.saturating_sub(1), |