Branch: refs/heads/master Author: Thomas Martitz thomas.martitz@mailbox.org Committer: Thomas Martitz thomas.martitz@mailbox.org Date: Wed, 04 Oct 2023 19:54:27 UTC Commit: 7f78ddf694cda6a50f93dacb2d6008d6c6bcfdfe https://github.com/geany/geany/commit/7f78ddf694cda6a50f93dacb2d6008d6c6bcfd...
Log Message: ----------- Map new ruby lex classes to existing styles, for now.
%i, %I, %w and %s are newly recognized by Scintilla.
See also: https://docs.ruby-lang.org/en/master/syntax/literals_rdoc.html#label-Percent...
Modified Paths: -------------- src/highlightingmappings.h
Modified: src/highlightingmappings.h 4 lines changed, 4 insertions(+), 0 deletions(-) =================================================================== @@ -1421,6 +1421,10 @@ static const HLStyle highlighting_styles_RUBY[] = { SCE_RB_STRING_QX, "string_qx", FALSE }, { SCE_RB_STRING_QR, "string_qr", FALSE }, { SCE_RB_STRING_QW, "string_qw", FALSE }, + { SCE_RB_STRING_W, "string_qw", FALSE }, + { SCE_RB_STRING_QI, "symbol", FALSE }, + { SCE_RB_STRING_QS, "symbol", FALSE }, + { SCE_RB_STRING_I, "symbol", FALSE }, { SCE_RB_UPPER_BOUND, "upper_bound", FALSE }, { SCE_RB_ERROR, "error", FALSE }, { SCE_RB_POD, "pod", FALSE }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).