diff --git a/Cargo.toml b/Cargo.toml index 53a39bb..6b1012c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,6 @@ self_cell = "1.0.1" swash = { version = "0.1.8", optional = true } syntect = { version = "5.1.0", optional = true } sys-locale = { version = "0.3.1", optional = true } -two-face = { version = "0.3.0", optional = true } unicode-linebreak = "0.1.5" unicode-script = "0.5.5" unicode-segmentation = "1.10.1" diff --git a/src/edit/syntect.rs b/src/edit/syntect.rs index 9ba06dd..ec55671 100644 --- a/src/edit/syntect.rs +++ b/src/edit/syntect.rs @@ -22,7 +22,6 @@ pub struct SyntaxSystem { impl SyntaxSystem { /// Create a new [`SyntaxSystem`] - #[cfg(not(feature = "two-face"))] pub fn new() -> Self { Self { //TODO: store newlines in buffer @@ -30,17 +29,6 @@ impl SyntaxSystem { theme_set: ThemeSet::load_defaults(), } } - - /// Create a new [`SyntaxSystem`] using `[two-face]` definitions - #[cfg(feature = "two-face")] - pub fn new() -> Self { - Self { - //TODO: store newlines in buffer - syntax_set: two_face::syntax::extra_no_newlines(), - //TODO: use two-face themes - theme_set: ThemeSet::load_defaults(), - } - } } /// A wrapper of [`Editor`] with syntax highlighting provided by [`SyntaxSystem`]