aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/editor.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-02-24 08:29:28 +0000
committerBlaž Hrastnik2021-02-25 07:49:30 +0000
commit01907b349771106865853dc2ea90aaa0913a7297 (patch)
tree42b0cb2288912148d7b86ba3ac55dadb5952d260 /helix-view/src/editor.rs
parent5fa1ba6b1c0a3ac4f93112b94be8477dc4d06b46 (diff)
commands: Implement count for a few more commands.
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r--helix-view/src/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index b70a6abd..1c737b3e 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -12,7 +12,7 @@ pub struct Editor {
pub tree: Tree,
// pub documents: Vec<Document>,
pub count: Option<usize>,
- pub theme: Theme, // TODO: share one instance
+ pub theme: Theme,
pub language_servers: helix_lsp::Registry,
}