diff options
author | 2017-11-18 21:45:20 -0500 | |
---|---|---|
committer | 2017-11-18 21:45:20 -0500 | |
commit | 9526d491e7c01e74bbcec0fe25fb13384f9036c9 (patch) | |
tree | ae1d15c7659424e55a60e896beffeb4a4b2d3879 /core/.buffer.luadoc | |
parent | a8a0f88ae32effeb328b71903b0976129065c360 (diff) | |
download | textadept-9526d491e7c01e74bbcec0fe25fb13384f9036c9.tar.gz textadept-9526d491e7c01e74bbcec0fe25fb13384f9036c9.zip |
Enforce extra argument to `buffer:brace_match()` introduced in Scintilla 3.7.0.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r-- | core/.buffer.luadoc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index 49e4309b..a028beb9 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -1437,8 +1437,9 @@ function brace_highlight_indicator(buffer, use_indicator, indicator) end -- '>' and must have the same style. -- @param buffer A buffer. -- @param pos The position of the brace in *buffer* to match. +-- @param max_re_style Must be `0`. Reserved for expansion. -- @return number -function brace_match(buffer, pos) end +function brace_match(buffer, pos, max_re_style) end --- -- Returns whether or not a call tip is visible. |