summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-08-15 09:39:23 -0400
committerDan Davison <dandavison7@gmail.com>2020-08-15 09:39:23 -0400
commit98d1da411e185130fe4c167786107cb90725bdef (patch)
treeec4c08debf8a854cc2349c8f267742256c9309de /src/cli.rs
parent5f00f29d73b47fa14aa123a7d16ee9622f3eb02b (diff)
Rearrange
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 72ca762b..b2e27886 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -561,16 +561,16 @@ pub struct Opt {
#[derive(Default, Clone, Debug)]
pub struct ComputedValues {
+ pub available_terminal_width: usize,
+ pub background_color_extends_to_terminal_width: bool,
+ pub decorations_width: Width,
pub inspect_raw_lines: InspectRawLines,
pub is_light_mode: bool,
+ pub paging_mode: PagingMode,
+ pub syntax_dummy_theme: SyntaxTheme,
pub syntax_set: SyntaxSet,
pub syntax_theme: Option<SyntaxTheme>,
- pub syntax_dummy_theme: SyntaxTheme,
pub true_color: bool,
- pub available_terminal_width: usize,
- pub decorations_width: Width,
- pub background_color_extends_to_terminal_width: bool,
- pub paging_mode: PagingMode,
}
#[derive(Clone, Debug, PartialEq)]