diff options
author | 2015-01-20 23:02:57 -0500 | |
---|---|---|
committer | 2015-01-20 23:02:57 -0500 | |
commit | e98ebc0455850212919b1db20270fc1d4a759608 (patch) | |
tree | d41c31c2b2d125018f3ddcef45cbc2beba288e43 /modules/textadept/editing.lua | |
parent | 251e1935d5bd5f356f53f3ae5a40a35f62ca420f (diff) | |
download | textadept-e98ebc0455850212919b1db20270fc1d4a759608.tar.gz textadept-e98ebc0455850212919b1db20270fc1d4a759608.zip |
Updated Lua autocompletion and documentation.
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index ad010f9f..f4d728d4 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -131,9 +131,9 @@ M.autocompleters = {} --- -- Map of lexer names to API documentation file tables. --- Each line in an API file consists of the name of a symbol (not the full --- symbol), a space character, and that symbol's documentation. '\n' represents --- a newline character. +-- Each line in an API file consists of a symbol name (not a fully qualified +-- symbol name), a space character, and that symbol's documentation. '\n' +-- represents a newline character. -- @class table -- @name api_files -- @see show_documentation @@ -209,7 +209,7 @@ if CURSES and not WIN32 then events.connect(events.SUSPEND, disable_bracketed_paste_mode) events.connect(events.RESUME, enable_bracketed_paste_mode) events.connect(events.QUIT, disable_bracketed_paste_mode) - + local reenable_autopair, reenable_autoindent events.connect('csi', function(cmd, args) if cmd ~= string.byte('~') then return end |