diff options
author | 2020-10-11 22:43:59 -0400 | |
---|---|---|
committer | 2020-10-11 22:43:59 -0400 | |
commit | ff7f869ae0a02535dcc7f44a65dd3ea2fed87d01 (patch) | |
tree | 2457467679904d4be7d1322e0bfcfc416368d080 /core/.buffer.luadoc | |
parent | 4f49182b3f4359829449aca2b3b8ca9b6a73180f (diff) | |
download | textadept-ff7f869ae0a02535dcc7f44a65dd3ea2fed87d01.tar.gz textadept-ff7f869ae0a02535dcc7f44a65dd3ea2fed87d01.zip |
Updated LuaDoc.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r-- | core/.buffer.luadoc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index be71940a..8253f22a 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -655,8 +655,8 @@ function convert_eols(buffer, mode) end function copy(buffer) end --- --- Copies the range of text between positions *start_pos* and *end_pos* to the --- clipboard. +-- Copies to the clipboard the range of text between positions *start_pos* and +-- *end_pos*. -- @param buffer A buffer. -- @param start_pos The start position of the range of text in *buffer* to copy. -- @param end_pos The end position of the range of text in *buffer* to copy. @@ -1789,6 +1789,7 @@ function reload(buffer) end --- -- Saves the buffer to its file. +-- If the buffer does not have a file, the user is prompted for one. -- Emits `FILE_BEFORE_SAVE` and `FILE_AFTER_SAVE` events. -- @param buffer A buffer. -- @name save @@ -1815,7 +1816,7 @@ function save_as(buffer, filename) end function close(buffer, force) end --- --- Converts the current buffer's contents to encoding *encoding*. +-- Converts the buffer's contents to encoding *encoding*. -- @param buffer A buffer. -- @param encoding The string encoding to set. Valid encodings are ones that GNU -- iconv accepts. If `nil`, assumes a binary encoding. |