paired bracket highlight, part 1

This commit is contained in:
Vadim Lopatin 2015-02-10 18:27:44 +03:00
parent 9fd6a1e513
commit 84bf895d06
1 changed files with 4 additions and 0 deletions

View File

@ -438,6 +438,7 @@ interface SyntaxHighlighter {
@property bool supportsToggleLineComment();
/// return true if can toggle line comments for specified text range
bool canToggleLineComment(TextRange range);
/// toggle line comments for specified text range
void toggleLineComment(TextRange range, Object source);
/// return true if toggle block comment is supported for file type
@ -446,6 +447,9 @@ interface SyntaxHighlighter {
bool canToggleBlockComment(TextRange range);
/// toggle block comments for specified text range
void toggleBlockComment(TextRange range, Object source);
/// returns paired bracket {} () [] for char at position p, returns paired char position or p if not found or not bracket
TextPosition findPairedBracket(TextPosition p);
}
/// measure line text (tabs, spaces, and nonspace positions)