Issue #819: extend hint for regular expression search/replace mode, as we now support uppercase replacements

This commit is contained in:
Ansgar Becker
2020-04-13 13:20:54 +02:00
parent 145c2ba51e
commit cedf8359ad
2 changed files with 7 additions and 3 deletions

View File

@ -72,9 +72,10 @@ begin
' $ '+_('End of line')+CRLF+
' \w '+_('Any word character')+CRLF+
' \d '+_('Digit')+' (0-9)'+CRLF+
' \s '+_('Whitespace')+CRLF+
' \s '+_('Whitespace')+CRLF+CRLF+
_('Replacement patterns:')+CRLF+
' $0 .. $n '+_('Callback parentheses')
' $0 .. $n '+_('Callback parentheses')+CRLF+
' \U '+_('uppercase of back reference')
;
end;