aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorOmnikar2022-08-04 05:32:59 +0000
committerGitHub2022-08-04 05:32:59 +0000
commitafd292e3b9616ea9098ca3a7d24a730508b84809 (patch)
treebd02d7728b4d8a0ed000fc0b06479921c692b70d /helix-term
parent5d33dbacac3564c50b9f3a74cfef6a956c35dd80 (diff)
Resolve clippy lints (#3307)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/ui/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index 6ed9799b..f5598095 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -1011,7 +1011,7 @@ impl EditorView {
None => return EventResult::Ignored(None),
}
- let offset = config.scroll_lines.abs() as usize;
+ let offset = config.scroll_lines.unsigned_abs();
commands::scroll(cxt, offset, direction);
cxt.editor.tree.focus = current_view;