diff options
author | 2018-05-22 23:24:06 -0400 | |
---|---|---|
committer | 2018-05-22 23:24:06 -0400 | |
commit | de4c56ecb834631a3c42595ebf5dad87656dae01 (patch) | |
tree | c36bce35e7b53b25c839fc92d9303c568c957083 /doc/manual.md | |
parent | 213cb37d1d2571f26f970f4b4fff2ba6b0018797 (diff) | |
download | textadept-de4c56ecb834631a3c42595ebf5dad87656dae01.tar.gz textadept-de4c56ecb834631a3c42595ebf5dad87656dae01.zip |
Note lack of ability to search for newline characters in regexes.
Diffstat (limited to 'doc/manual.md')
-rw-r--r-- | doc/manual.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/manual.md b/doc/manual.md index dbbd3e2e..44922487 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1829,12 +1829,16 @@ Textadept has a [mailing list][] and a [wiki][]. ## Regular Expressions Textadept's regular expressions are based on the C++11 standard for ECMAScript. -There are a number of references for this syntax on the internet including: +There are a number of references for this syntax on the internet, including: * [ECMAScript syntax C++ reference](http://www.cplusplus.com/reference/regex/ECMAScript/) * [Modified ECMAScript regular expression grammar](http://en.cppreference.com/w/cpp/regex/ecmascript) * [Regular Expressions (C++)](https://docs.microsoft.com/en-us/cpp/standard-library/regular-expressions-cpp) +Note that Textadept's editing component, Scintilla, does not allow for matching +newline characters (`\r` and `\n`). Use Lua scripts and +[Lua patterns](#Lua.Patterns) instead. + ## Lua Patterns The following is from the [Lua 5.3 Reference Manual][]. |