Try to fix asset building

This commit is contained in:
Jonathan Turner 2019-12-18 07:05:12 +13:00
parent d7ddaa376b
commit df778afd1f
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -255,12 +255,12 @@ fn view_text_value(value: &Value) {
Some(extension) => {
// Load these once at the start of your program
let ps: SyntaxSet = syntect::dumps::from_binary(include_bytes!(
"../../../assets/syntaxes.bin"
"assets/syntaxes.bin"
));
if let Some(syntax) = ps.find_syntax_by_extension(&extension) {
let ts: ThemeSet = syntect::dumps::from_binary(include_bytes!(
"../../../assets/themes.bin"
"assets/themes.bin"
));
let mut h = HighlightLines::new(syntax, &ts.themes["OneHalfDark"]);