Browse Source

Remove unused file

index-subcmd
Vincent Prouillet 6 years ago
parent
commit
4719dca100
1 changed files with 0 additions and 16 deletions
  1. +0
    -16
      components/highlighting/src/highlighting.rs

+ 0
- 16
components/highlighting/src/highlighting.rs View File

@@ -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"));
}


Loading…
Cancel
Save