[][src]Struct syntect::parsing::SyntaxSet

pub struct SyntaxSet { /* fields omitted */ }

A syntax set holds multiple syntaxes that have been linked together.

Use a SyntaxSetBuilder to load syntax definitions and build a syntax set.

After building, the syntax set is immutable and can no longer be modified. But you can convert it back to a builder by using into_builder.

Implementations

impl SyntaxSet[src]

pub fn load_defaults_nonewlines() -> SyntaxSet[src]

Instantiates a new syntax set from a binary dump of Sublime Text's default open source syntax definitions. These dumps are included in this library's binary for convenience.

This method loads the version for parsing line strings with no \n characters at the end. If you're able to efficiently include newlines at the end of strings, use load_defaults_newlines since it works better. See SyntaxSetBuilder::add_from_folder for more info on this issue.

This is the recommended way of creating a syntax set for non-advanced use cases. It is also significantly faster than loading the YAML files.

Note that you can load additional syntaxes after doing this. If you want you can even use the fact that SyntaxDefinitions are serializable with the bincode crate to cache dumps of additional syntaxes yourself.

pub fn load_defaults_newlines() -> SyntaxSet[src]

Same as load_defaults_nonewlines but for parsing line strings with newlines at the end. These are separate methods because thanks to linker garbage collection, only the serialized dumps for the method(s) you call will be included in the binary (each is ~200kb for now).

impl SyntaxSet[src]

pub fn new() -> SyntaxSet[src]

pub fn load_from_folder<P: AsRef<Path>>(
    folder: P
) -> Result<SyntaxSet, LoadingError>
[src]

Convenience constructor for creating a builder, then loading syntax definitions from a folder and then building the syntax set.

Note that this uses lines_include_newline set to false, see the add_from_folder method docs on SyntaxSetBuilder for an explanation as to why this might not be the best.

pub fn syntaxes(&self) -> &[SyntaxReference][src]

The list of syntaxes in the set

pub fn find_syntax_by_scope(&self, scope: Scope) -> Option<&SyntaxReference>[src]

Finds a syntax by its default scope, for example source.regexp finds the regex syntax. This and all similar methods below do a linear search of syntaxes, this should be fast because there aren't many syntaxes, but don't think you can call it a bajillion times per second.

pub fn find_syntax_by_name<'a>(
    &'a self,
    name: &str
) -> Option<&'a SyntaxReference>
[src]

pub fn find_syntax_by_extension<'a>(
    &'a self,
    extension: &str
) -> Option<&'a SyntaxReference>
[src]

pub fn find_syntax_by_token<'a>(
    &'a self,
    s: &str
) -> Option<&'a SyntaxReference>
[src]

Searches for a syntax first by extension and then by case-insensitive name useful for things like Github-flavoured-markdown code block highlighting where all you have to go on is a short token given by the user

pub fn find_syntax_by_first_line<'a>(
    &'a self,
    s: &str
) -> Option<&'a SyntaxReference>
[src]

Try to find the syntax for a file based on its first line. This uses regexes that come with some sublime syntax grammars for matching things like shebangs and mode lines like -*- Mode: C -*-

pub fn find_syntax_by_path<'a>(
    &'a self,
    path: &str
) -> Option<&'a SyntaxReference>
[src]

Searches for a syntax by it's original file path when it was first loaded from disk primarily useful for syntax tests some may specify a Packages/PackageName/SyntaxName.sublime-syntax path others may just have SyntaxName.sublime-syntax this caters for these by matching the end of the path of the loaded syntax definition files

pub fn find_syntax_for_file<P: AsRef<Path>>(
    &self,
    path_obj: P
) -> Result<Option<&SyntaxReference>>
[src]

Convenience method that tries to find the syntax for a file path, first by extension/name and then by first line of the file if that doesn't work. May IO Error because it sometimes tries to read the first line of the file.

Examples

When determining how to highlight a file, use this in combination with a fallback to plain text:

use syntect::parsing::SyntaxSet;
let ss = SyntaxSet::load_defaults_newlines();
let syntax = ss.find_syntax_for_file("testdata/highlight_test.erb")
    .unwrap() // for IO errors, you may want to use try!() or another plain text fallback
    .unwrap_or_else(|| ss.find_syntax_plain_text());
assert_eq!(syntax.name, "HTML (Rails)");

pub fn find_syntax_plain_text(&self) -> &SyntaxReference[src]

Finds a syntax for plain text, which usually has no highlighting rules. Good as a fallback when you can't find another syntax but you still want to use the same highlighting pipeline code.

This syntax should always be present, if not this method will panic. If the way you load syntaxes doesn't create one, use add_plain_text_syntax.

Examples

use syntect::parsing::SyntaxSetBuilder;
let mut builder = SyntaxSetBuilder::new();
builder.add_plain_text_syntax();
let ss = builder.build();
let syntax = ss.find_syntax_by_token("rs").unwrap_or_else(|| ss.find_syntax_plain_text());
assert_eq!(syntax.name, "Plain Text");

pub fn into_builder(self) -> SyntaxSetBuilder[src]

Converts this syntax set into a builder so that more syntaxes can be added to it.

Note that newly added syntaxes can have references to existing syntaxes in the set, but not the other way around.

Trait Implementations

impl Clone for SyntaxSet[src]

impl Debug for SyntaxSet[src]

impl Default for SyntaxSet[src]

impl<'de> Deserialize<'de> for SyntaxSet[src]

impl Serialize for SyntaxSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.