diff options
author | 2013-10-21 16:12:30 -0400 | |
---|---|---|
committer | 2013-10-21 16:12:30 -0400 | |
commit | 2cccb55923ef95aa657ba69f12d84610a811aa6d (patch) | |
tree | 1e4af695d94173ace76a91ccdd35f74c77dd94ff /core/.buffer.luadoc | |
parent | 814b5e96cafb83807ab1d6e3dacebe7fabc01cb1 (diff) | |
download | textadept-2cccb55923ef95aa657ba69f12d84610a811aa6d.tar.gz textadept-2cccb55923ef95aa657ba69f12d84610a811aa6d.zip |
More LuaDoc updates.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r-- | core/.buffer.luadoc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index 39ea2ccf..1d3b946d 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -360,17 +360,17 @@ -- * `buffer.INDIC_SQUIGGLE` -- A squiggly underline 3 pixels in height. -- * `buffer.INDIC_TT` --- A line of small 'T' shapes. +-- An underline of small 'T' shapes. -- * `buffer.INDIC_DIAGONAL` --- Diagonal hatching. +-- An underline of diagonal hatches. -- * `buffer.INDIC_STRIKE` -- Strike out. -- * `buffer.INDIC_HIDDEN` -- Invisible. -- * `buffer.INDIC_BOX` --- A rectangle around the text. +-- A bounding box. -- * `buffer.INDIC_ROUNDBOX` --- A translucent rectangle with rounded corners around the text. Use +-- A translucent box with rounded corners around the text. Use -- [`buffer.indic_alpha`](#indic_alpha) and -- [`buffer.indic_outline_alpha`](#indic_outline_alpha) to set the fill and -- outline transparency, respectively. Their default values are `30` and @@ -1115,7 +1115,7 @@ function can_undo(buffer) end function cancel(buffer) end --- --- Tells the lexer to reprocess the range of text between *start_pos* and +-- Instructs the lexer to reprocess the range of text between *start_pos* and -- *end_pos*. -- @param buffer The buffer. -- @param start_pos The start position of the range of text in *buffer* to @@ -1209,8 +1209,8 @@ function clear_registered_images(buffer) end function clear_selections(buffer) end --- --- Tells the lexer to style and fold the range of text between *start_pos* and --- *end_pos*. +-- Instructs the lexer to style and fold the range of text between *start_pos* +-- and *end_pos*. -- If *end_pos* is `-1`, styles and folds to the end of the buffer. -- @param buffer The buffer. -- @param start_pos The start position of the range of text in *buffer* to @@ -2701,13 +2701,13 @@ function text_range(buffer, start_pos, end_pos) end function get_lexer(buffer, current) end --- --- Changes the buffer's lexer name to *lang* or the auto-detected language and +-- Associates lexer name *lexer* or auto-detected lexer name with the buffer and -- then loads the appropriate language module if the module exists. -- @param buffer The buffer. --- @param lang Optional string language name to set. If `nil`, attempts to --- auto-detect the buffer's language. --- @usage buffer.set_lexer(buffer, 'language_name') -function set_lexer(buffer, lang) end +-- @param lexer Optional string lexer name to set. If `nil`, attempts to +-- auto-detect the buffer's lexer. +-- @usage buffer.set_lexer(buffer, 'lexer_name') +function set_lexer(buffer, lexer) end -- Unused Fields. -- * annotation_styles |