diff options
-rw-r--r-- | main.c | 1 | ||||
-rw-r--r-- | syntax.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -6,6 +6,7 @@ - texlab bug report: - textDocument/definition gives LocationLink regardless of client capabilities FUTURE FEATURES: +- better interaction between language-specific and path-specific settings - manual.md - better handling of backspace with space indentation - CSS highlighting @@ -185,7 +185,7 @@ static bool syntax_keyword_matches(const char32_t *text, size_t len, const char } char32_t syntax_matching_bracket(Language lang, char32_t c) { - if (lang == LANG_HTML) { + if (lang == LANG_HTML || lang == LANG_XML) { // for most languages, this would look weird since // v cursor // if (x < 5 && y >| 6) @@ -208,7 +208,7 @@ char32_t syntax_matching_bracket(Language lang, char32_t c) { } bool syntax_is_opening_bracket(Language lang, char32_t c) { - if (lang == LANG_HTML) { + if (lang == LANG_HTML || lang == LANG_XML) { if (c == '<') return true; } |