diff options
author | 2013-10-02 23:17:21 -0400 | |
---|---|---|
committer | 2013-10-02 23:17:21 -0400 | |
commit | 8a00242a16b0a3935d1b0f88b26132d2cc9f69ed (patch) | |
tree | 9362ab11955d98b869abf5630d926d1d37f4127d /core/.buffer.luadoc | |
parent | 489e6c1f8b460afbd169384053d94411431e0969 (diff) | |
download | textadept-8a00242a16b0a3935d1b0f88b26132d2cc9f69ed.tar.gz textadept-8a00242a16b0a3935d1b0f88b26132d2cc9f69ed.zip |
Renamed `buffer.FIND_POSIX` to `buffer.FIND_REGEX` for Lua-like captures syntax.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r-- | core/.buffer.luadoc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index ac4dd8a5..3c6264c4 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -627,9 +627,6 @@ -- Match text only when the previous character is a non-word character. -- * `buffer.FIND_REGEXP` -- Interpret the search string as a regular expression. --- * `buffer.FIND_POSIX` --- Interpret '(' and ')' as tags instead of "\\(" and "\\)" in a regular --- expression. -- -- The default value is `0`. -- @@ -653,9 +650,9 @@ -- Matches the start of a line unless inside a set. -- * `$` -- Matches the end of a line unless inside a set. --- * `\(` +-- * `(` -- The beginning of a tagged matching region. --- * `\)` +-- * `)` -- The end of a tagged matching region. -- * `\n` -- The matched text of the *n*th tagged region. In replacement text, "\0" is |