use syntect::{dumps, parsing::SyntaxSet};
pub fn extra_no_newlines() -> SyntaxSet {
#[cfg(feature = "syntect-onig")]
let bytes = include_bytes!("../generated/syntaxes-onig-no-newlines.bin");
#[cfg(not(feature = "syntect-onig"))]
let bytes = include_bytes!("../generated/syntaxes-fancy-no-newlines.bin");
dumps::from_uncompressed_data(bytes).unwrap()
}
pub fn extra_newlines() -> SyntaxSet {
#[cfg(feature = "syntect-onig")]
let bytes = include_bytes!("../generated/syntaxes-onig-newlines.bin");
#[cfg(not(feature = "syntect-onig"))]
let bytes = include_bytes!("../generated/syntaxes-fancy-newlines.bin");
dumps::from_uncompressed_data(bytes).unwrap()
}