diff options
author | Blaž Hrastnik | 2021-03-16 06:30:29 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-16 06:41:42 +0000 |
commit | 143cfe13e05b17840a9f2c69417ed98bc3b8cb0e (patch) | |
tree | 45cdea8a84a51a1cbf53daf55e5d9415d840762b /helix-term/src/application.rs | |
parent | 4f77d80e74b1406b8701f5569b3bec8da2e5ed03 (diff) |
minor: TODO comment cleanup
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index c22cf996..f239a2f0 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -221,15 +221,3 @@ impl Application { Ok(()) } } - -// TODO: language configs: -// tabSize, fileExtension etc, mapping to tree sitter parser -// themes: -// map tree sitter highlights to color values -// -// TODO: expand highlight thing so we're able to render only viewport range -// TODO: async: maybe pre-cache scopes as empty so we render all graphemes initially as regular -////text until calc finishes -// TODO: scope matching: biggest union match? [string] & [html, string], [string, html] & [ string, html] -// can do this by sorting our theme matches based on array len (longest first) then stopping at the -// first rule that matches (rule.all(|scope| scopes.contains(scope))) |