From 4719dca1001e2840819278e287269aae547f5e38 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Tue, 31 Oct 2017 08:36:20 +0100 Subject: [PATCH] Remove unused file --- components/highlighting/src/highlighting.rs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 components/highlighting/src/highlighting.rs diff --git a/components/highlighting/src/highlighting.rs b/components/highlighting/src/highlighting.rs deleted file mode 100644 index 229c1f21..00000000 --- a/components/highlighting/src/highlighting.rs +++ /dev/null @@ -1,16 +0,0 @@ -use syntect::dumps::from_binary; -use syntect::parsing::SyntaxSet; -use syntect::highlighting::ThemeSet; - -thread_local!{ - pub static SYNTAX_SET: SyntaxSet = { - let mut ss: SyntaxSet = from_binary(include_bytes!("../../../sublime_syntaxes/newlines.packdump")); - ss.link_syntaxes(); - ss - }; -} - -lazy_static!{ - pub static ref THEME_SET: ThemeSet = from_binary(include_bytes!("../../../sublime_themes/all.themedump")); -} -