diff options
author | 2007-08-09 03:45:47 -0400 | |
---|---|---|
committer | 2007-08-09 03:45:47 -0400 | |
commit | b708fa97b490c351f237d22397b8b562d7fb9950 (patch) | |
tree | 24a9e569d3c82f61ce1c0e274c99f33438aa80a1 /modules/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 'modules/lua')
-rw-r--r-- | modules/lua/commands.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/lua/commands.lua b/modules/lua/commands.lua index 8cf25c87..1f6d25a5 100644 --- a/modules/lua/commands.lua +++ b/modules/lua/commands.lua @@ -15,7 +15,7 @@ local control_structure_patterns = { } --- --- Try to autocomplete Lua's 'end' keyword for control structures like 'if', +-- Tries to autocomplete Lua's 'end' keyword for control structures like 'if', -- 'while', 'for', etc. -- @see control_structure_patterns function try_to_autocomplete_end() @@ -38,8 +38,8 @@ function try_to_autocomplete_end() end --- --- Determine the Lua file being 'require'd, and search through package.path for --- that file and open it in Textadept. +-- Determines the Lua file being 'require'd, searches through package.path for +-- that file, and opens it in Textadept. function goto_required() local buffer = buffer local line = buffer:get_line( buffer:line_from_position(buffer.current_pos) ) |