summaryrefslogtreecommitdiffstats
path: root/core/src/text.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-17 15:29:14 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-17 15:29:14 +0200
commit76dc82e8e8b5201ec10f8d00d851c1decf998583 (patch)
tree18b48610e48ee90821a2c7678e9ce2f236868f01 /core/src/text.rs
parent723111bb0df486bffaedcaed0722b1793d65bfe3 (diff)
downloadiced-76dc82e8e8b5201ec10f8d00d851c1decf998583.tar.gz
iced-76dc82e8e8b5201ec10f8d00d851c1decf998583.tar.bz2
iced-76dc82e8e8b5201ec10f8d00d851c1decf998583.zip
Draft `Highlighter` API
Diffstat (limited to 'core/src/text.rs')
-rw-r--r--core/src/text.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/text.rs b/core/src/text.rs
index 90581fea..9b9c753c 100644
--- a/core/src/text.rs
+++ b/core/src/text.rs
@@ -2,8 +2,10 @@
mod paragraph;
pub mod editor;
+pub mod highlighter;
pub use editor::Editor;
+pub use highlighter::Highlighter;
pub use paragraph::Paragraph;
use crate::alignment;