diff options
author | 2007-08-09 03:45:47 -0400 | |
---|---|---|
committer | 2007-08-09 03:45:47 -0400 | |
commit | b708fa97b490c351f237d22397b8b562d7fb9950 (patch) | |
tree | 24a9e569d3c82f61ce1c0e274c99f33438aa80a1 /core/handlers.lua | |
parent | a0ae12838a95c88be4ea1ca83af905a25563faff (diff) | |
download | textadept-b708fa97b490c351f237d22397b8b562d7fb9950.tar.gz textadept-b708fa97b490c351f237d22397b8b562d7fb9950.zip |
Added new LuaDoc, updated existing LuaDoc to be more consistent.
Diffstat (limited to 'core/handlers.lua')
-rw-r--r-- | core/handlers.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/handlers.lua b/core/handlers.lua index 81e76f60..5d7433d6 100644 --- a/core/handlers.lua +++ b/core/handlers.lua @@ -154,7 +154,8 @@ add_function_to_handler('char_added', end) --- --- [Local] Sets the title of the Textadept window to the buffer's filename. +-- [Local function] Sets the title of the Textadept window to the buffer's +-- filename. -- @param buffer The currently focused buffer. local function set_title(buffer) local buffer = buffer @@ -185,7 +186,7 @@ local _braces = { -- () [] {} <> } --- --- [Local] Highlights matching/mismatched braces appropriately. +-- [Local function] Highlights matching/mismatched braces appropriately. -- @param current_pos The position to match braces at. local function match_brace(current_pos) local buffer = buffer |