diff options
author | 2010-06-16 23:03:26 -0400 | |
---|---|---|
committer | 2010-06-16 23:03:26 -0400 | |
commit | 8a7566b91ed01957f635d21362b039cb41a76280 (patch) | |
tree | 7e65c75111e7873b10f053b46c8c8378b41b42f8 /core/.buffer.lua | |
parent | c94eb63139d7ca800a05596157a65f560f610a91 (diff) | |
download | textadept-8a7566b91ed01957f635d21362b039cb41a76280.tar.gz textadept-8a7566b91ed01957f635d21362b039cb41a76280.zip |
Updated documentation.
Diffstat (limited to 'core/.buffer.lua')
-rw-r--r-- | core/.buffer.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/.buffer.lua b/core/.buffer.lua index 579c70f0..de553c2f 100644 --- a/core/.buffer.lua +++ b/core/.buffer.lua @@ -199,6 +199,8 @@ module('buffer') -- captured when its button is pressed. -- * `mouse_dwell_time`: The time in milliseconds the mouse must sit still to -- generate a mouse dwell event. +-- * `multi_paste`: Flag indicating whether or not pasted text goes into each +-- multiple selection. -- * `multiple_selection`: Flag indicating whether or not to enable multiple -- selection. -- * `overtype`: Flag indicating whether or not overtype mode is active. @@ -543,6 +545,8 @@ function buffer:get_property_expanded() function buffer:get_sel_text() --- Returns the name of the style associated with a style number. function buffer:get_style_name(style_num) +--- Returns the text matched by a tagged expression in a regexp search. +function buffer:get_tag(tag_num) --- Returns all text in the document and its length. function buffer:get_text() --- Sets the caret to the start of a line and ensure it is visible. |