aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-22 03:26:04 +0000
committerBlaž Hrastnik2021-03-22 03:29:55 +0000
commitc4792efead160859d17f8ca969869037b7d2e1d5 (patch)
tree9a263833913836ab7dd7598d14c8196c832c92f8 /helix-view
parent798dbd27c50296d260fe13483e4a3aacd240c6ad (diff)
clippy lints
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/theme.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs
index b200fa0e..e51fab3e 100644
--- a/helix-view/src/theme.rs
+++ b/helix-view/src/theme.rs
@@ -139,7 +139,7 @@ impl Default for Theme {
let scopes = mapping.keys().map(ToString::to_string).collect();
- Self { mapping, scopes }
+ Self { scopes, mapping }
}
}