Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-06 | Fixed bug in processing command line options introduced in r1546. | ||
2013-08-31 | Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup. | ||
A side effect is more efficient event emission during startup. | |||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-06-24 | Removed `_G.RESETTING`; test for `arg` instead. | ||
2013-05-15 | `_M.textadept = require('textadept')` in user init is superfluous. | ||
The module was being loaded by default anyway. Besides, the user's modules/textadept/init.lua controls which parts are loaded. | |||
2013-04-29 | More code cleanup. | ||
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses. | |||
2013-01-20 | Updated copyright date. | ||
2012-09-22 | Fixes to Lua paths. | ||
Do not look in the current working directory for modules. Look in _USERHOME for shared libraries. | |||
2012-07-21 | Lua code cleanup and API changes. | ||
2012-04-10 | Support for single-instance on Linux and BSD with GLib 2.28. | ||
Also added documentation on running with LuaJIT and require GTK+ 2.18 now. | |||
2012-03-07 | Updated contact email address. | ||
2012-01-06 | Updated copyright information. | ||
2012-01-05 | Code cleanup. | ||
2010-12-28 | Updated copyright information. | ||
2010-11-23 | Code cleanup. | ||
Also modified the editing module's enclose() and select_enclosed() functions. | |||
2010-06-17 | Added dynamic command line argument handling. | ||
2010-06-16 | Code and documentation cleanup. | ||
2010-06-14 | Fixes from Robert Gieseke. | ||
2010-06-11 | Moved core extension modules into textadept module. | ||
2010-06-11 | Removed _G.textadept. | ||
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-10 | Moved textadept.mime_types into the textadept module. | ||
2010-06-10 | Moved core/ext/keys.lua into core/ext/key_commands.lua. | ||
2010-06-10 | Moved textadept.io into Lua's io table. | ||
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts. | |||
2010-05-07 | Put _USERHOME package paths before _HOME for more extensibility; init.lua | ||
2010-04-05 | Code cleanup. | ||
2010-03-29 | Use textadept.user_dofile() for user init.lua. | ||
2010-03-10 | Removed side pane. | ||
2010-02-23 | Added '~/.textadept/modules/' to package.path; init.lua | ||
2010-01-07 | Updated copyright to 2010. | ||
2010-01-04 | Added command line switch for not loading/saving sessions. | ||
2009-07-12 | Moved session support from core/file_io.lua to a Textadept module. | ||
2009-07-12 | Lua code cleanup. | ||
2009-07-08 | Use lfs.attributes for existance test instead of fopen; init.lua | ||
2009-07-07 | Use ~/.textadept/ for user settings, sessions, themes, lexers, etc. | ||
2009-06-16 | Check for ~/.ta_modules using io.open instead of dofile error message; init.lua | ||
2009-04-02 | Removed macro support; just use Lua for scripting. | ||
2009-02-28 | Removed 'project' Project Manager browser. | ||
2009-02-12 | Replaced my key_commands.lua with consolidated key_commands_{std,mac}.lua. | ||
2009-01-25 | Look for ~/.ta_modules to load modules, falling back on init.lua's default ones. | ||
2009-01-25 | Replaced str:match with str:find where applicable for speed improvements. | ||
2009-01-24 | Removed 'find' Project Manager browser. | ||
2009-01-19 | Command line parameters can now be used in Windows. | ||
2009-01-10 | Various improvements to speed and readability of Lua code. | ||
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc. Added more locals to core/ext/keys.lua for speed improvement. Reformatted some Lua modules to the earlier standard committed. | |||
2009-01-05 | Move all 'require' statements into init.lua and label for easy configuration. | ||
2009-01-01 | Updated copyright dates for 2009. | ||
2008-12-22 | Enable the menubar by default; init.lua | ||
2008-12-14 | Added option to load key_commands_mac to init.lua. | ||
2008-11-02 | Fixed key handling and arg handling for Mac. | ||
2008-10-27 | Updated Textadept to compile and run on OSX with native GTK framework. | ||