diff options
author | Blaž Hrastnik | 2020-10-19 08:18:03 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-03 04:07:55 +0000 |
commit | 64b5b23315f12125a2c5b2f810fe5ac285bdfa79 (patch) | |
tree | f8caf756f461727e454c94b8e8c2abfeffa943e6 /helix-core/src | |
parent | b2b3083a623ec3dc5e2d1ea9c6ba35970efe19a3 (diff) |
Move theme from view to editor, support multiple views in editor.
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs index 1b0a67ae..35e20aef 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -23,7 +23,7 @@ pub struct State { pub restore_cursor: bool, - // + // TODO: move these to a Document wrapper? pub syntax: Option<Syntax>, /// Pending changes since last history commit. pub changes: ChangeSet, |