57585960616263
* @param project the project to which the lexer is connected. * @return an {@link EmptyLexer} instance. */ @NotNull public Lexer createLexer(Project project) { return new EmptyLexer(); }
25262728293031
public class PlainSyntaxHighlighter implements SyntaxHighlighter { private static final TextAttributesKey[] ATTRS = new TextAttributesKey[] {HighlighterColors.TEXT}; @NotNull public Lexer getHighlightingLexer() { return new EmptyLexer(); }
32333435363738
* @since 0.9 */ public class MarkdownIdIndexer extends LexerBasedIdIndexer { public static Lexer createIndexingLexer(OccurrenceConsumer consumer) { return new MarkdownFilterLexer(new EmptyLexer(), consumer); }