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