aboutsummaryrefslogtreecommitdiff
path: root/modules/lua
AgeCommit message (Collapse)Author
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-24Add io.open, io.popen type assignments to Lua Adeptsense.mitchell
2011-06-24Add ability to fake modules for generating Adeptsense.mitchell
With the new absolute field recognition, it is possible have a non-existant module name in scripts/adeptsensedoc.lua's add_field() function. For example, A '_G._SCINTILLA.constants.SCLEX_LPEG' field would look-up the '_SCINTILLA.constants' module which does not exist; it is a table. Instead of throwing an error, create a fake module so the appropriate tags and apidoc are created ('SCLEX_LPEG _ 0;" F class:_SCINTILLA.constants') but do not create tags and apidoc for the fake module.
2011-06-23Use string constants for event names.mitchell
2011-06-23Write Lua table and module apidoc and fix absolute table tags.mitchell
An absolute table like '_G.keys.lua' used to be tagged as belonging to the '_m.lua' module, but it is tagged properly now.
2011-06-23Updated Luadoc and added extra fields to other modules.mitchell
2011-06-22Updated Luadoc and lua adeptsense.mitchell
2011-06-10Updated Lua Adeptsense.mitchell
2011-05-01Updated adeptsense and documentation.mitchell
2011-04-25Changed Mac OSX Adeptsense completion from '~' to 'Ctrl+Esc'.mitchell
2011-03-29Updated Lua module tags and apidoc.mitchell
2011-03-23Updated language modules to use new snippet syntax.mitchell
2011-03-23Rewrote _m.textadept.snippets module.mitchell
Snippet syntax has changed; see LuaDoc for details.
2011-03-20Add module field doc to Lua module apidoc.mitchell
2011-03-17Performance and speed improvements.mitchell
2011-03-14Added type inference through 'require' for Lua module; modules/lua/init.luamitchell
2011-02-28Updated lua module.mitchell
2011-02-28Condense language modules into single init.lua file.mitchell
2011-02-26Use Ctrl+H for showing apidoc in cpp and lua modules.mitchell
2011-02-25Fixed bug with Lua type assignments; modules/lua/adeptsense.luamitchell
2011-02-21Lua module changes.mitchell
2011-02-17Support type-inference through variable assignment.mitchell
2011-02-15Add sense.syntax.class_definition for class context completion.mitchell
2011-02-13Load user api files for adeptsense language modules.mitchell
2011-02-10Updated documentation.mitchell
2011-01-27Added Adeptsense info and screenshots to documentation.mitchell
2011-01-19Can navigate between bookmarks with a filteredlist.mitchell
2011-01-19Added gui.filteredlist() shortcut function for gui.dialog('filteredlist', ...).mitchell
2011-01-18Change cpp and lua module adeptsense key commands.mitchell
2011-01-17Added Adeptsense.mitchell
2010-12-28Updated copyright information.mitchell
2010-12-01Change back to Shift+Return for autocomplete end; modules/lua/commands.luamitchell
2010-11-30Added 'file_after_save' event.mitchell
2010-11-30Ignore shebang line when checking Lua syntax; modules/lua/commands.luamitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-11-15LuaDoc cleanup.mitchell
2010-11-11Code cleanup.mitchell
2010-11-10Updated LuaDoc; modules/lua/commands.luamitchell
2010-11-10Changes to Lua module.mitchell
Added syntax checking for file saving. Changed autocomplete of 'end' to take advantage of key propagation; Pressing Shift+Return is no longer necessary; Return is used.
2010-10-28Rename MAC variable in to OSX in Lua, __OSX__ in C.mitchell
2010-08-31Updated LuaDoc.mitchell
2010-08-21Added Lua autocompletion support.mitchell
2010-06-11Removed _G.textadept.mitchell
Created new _SCINTILLA core module. Renamed textadept.constants to _SCINTILLA.constants Renamed textadept.buffer_functions to _SCINTILLA.functions Renamed textadept.buffer_properties to _SCINTILLA.properties Created new gui core module. Renamed textadept._print() to gui._print(). Renamed textadept.check_focused_buffer() to gui.check_focused_buffer(). Renamed textadept.clipboard_text to gui.clipboard_text. Renamed textadept.context_menu to gui.context_menu Renamed textadept.command_entry to gui.command_entry. Renamed textadept.dialog to gui.dialog. Renamed textadept.docstatusbar_text to gui.docstatusbar_text. Renamed textadept.find to gui.find. Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer. Renamed textadept.get_split_table() to gui.get_split_table(). Renamed textadept.gtkmenu() to gui.gtkmenu(). Renamed textadept.goto_view() to gui.goto_view(). Renamed textadept.menubar to gui.menubar. Renamed textadept.print() to gui.print(). Renamed textadept.size to gui.size. Renamed textadept.statusbar_text to gui.statusbar_text. Renamed textadept.switch_buffer() to gui.switch_buffer(). Renamed textadept.title to gui.title. Renamed textadept.buffers to _G._BUFFERS. Renamed textadept.new_buffer() to _G.new_buffer(). Renamed textadept.quit() to _G.quit(). Renamed textadept.reset() to _G.reset(). Renamed textadept.views to _G._VIEWS. Renamed textadept.user_dofile() to _G.user_dofile(). Renamed textadept.iconv to string.iconv. Renamed textadept.session_file to _SESSIONFILE. Renamed appropriate C functions.
2010-06-10Moved textadept.io into Lua's io table.mitchell
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
2010-04-10Moved block comment strings to language-specific modules.mitchell
2010-04-09Moved _m.textadept.run module commands to language-specific modules.mitchell
2010-04-08Fixed bug in Lua module commands; modules/lua/commands.luamitchell
Thanks to Rob Gieseke.
2010-04-08Respect tab settings for snippets.mitchell
Thanks to Rob Gieseke.
2010-03-30Removed support for api files.mitchell
2010-01-07Updated copyright to 2010.mitchell