diff options
author | A-Walrus | 2022-10-11 07:00:41 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-10-17 15:38:16 +0000 |
commit | 2c36e33e0ac55d01baacb9714d9d77d7dd532d98 (patch) | |
tree | 89cd8565c7354133c2bed0e0eacef4b3e621a2fe /helix-view/src | |
parent | 3ba665d804c8d88bc3d59a52296f349acdb6d436 (diff) |
Make skip_levels a u8
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index dd1e30f9..e9a3c639 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 { |