diff options
author | Blaž Hrastnik | 2021-02-24 08:29:28 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-25 07:49:30 +0000 |
commit | 01907b349771106865853dc2ea90aaa0913a7297 (patch) | |
tree | 42b0cb2288912148d7b86ba3ac55dadb5952d260 /helix-view/src | |
parent | 5fa1ba6b1c0a3ac4f93112b94be8477dc4d06b46 (diff) |
commands: Implement count for a few more commands.
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 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, } |