From 2c36e33e0ac55d01baacb9714d9d77d7dd532d98 Mon Sep 17 00:00:00 2001 From: A-Walrus Date: Tue, 11 Oct 2022 10:00:41 +0300 Subject: [PATCH] Make skip_levels a u8 --- helix-term/src/ui/editor.rs | 3 ++- helix-view/src/editor.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index c6a835467..e05136d02 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -465,7 +465,8 @@ impl EditorView { return; } - let starting_indent = (offset.col / tab_width) + config.indent_guides.skip_levels; + let starting_indent = + (offset.col / tab_width) + config.indent_guides.skip_levels as usize; // TODO: limit to a max indent level too. It doesn't cause visual artifacts but it would avoid some // extra loops if the code is deeply nested. diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index dd1e30f95..e9a3c6397 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -558,7 +558,7 @@ impl Default for WhitespaceCharacters { pub struct IndentGuidesConfig { pub render: bool, pub character: char, - pub skip_levels: usize, + pub skip_levels: u8, } impl Default for IndentGuidesConfig {