aboutsummaryrefslogtreecommitdiff
path: root/init.lua
AgeCommit message (Collapse)Author
2018-04-07Fixed stale styles on split view.mitchell
2018-03-25Removed call restriction on `buffer.set_theme()` and added initial `buffer` arg.mitchell
2018-03-12Start using Scintilla's LongTerm3, which now includes Scintillua and Scinterm.mitchell
Since LongTerm3 requires a C++11 compiler, GCC 4.9+ is required. Since C++11 includes regex capability, drop TRE dependency.
2018-01-25Updated copyright year.mitchell
2018-01-17Updated `init.lua` to include new `fold.compact` property setting.mitchell
Requires Scintillua r474 (changeset e0da6f7984c6).
2018-01-04Print compatibility messages instead of showing a dialog box.mitchell
2017-12-31Added temporary compatibility notices when upgrading to Textadept 10.mitchell
These notices are only for changes that are likely to affect users like theme settings and ~/textadept/properties.lua. These notices should be removed later.
2017-11-12Buffer settings on startup apply to subsequent buffers.mitchell
As a result, no need for a *properties.lua* file anymore. Also, renamed `ui.set_theme()` to `buffer.set_theme()`.
2016-12-31Updated copyright information.mitchell
2015-12-31Updated copyright date.mitchell
2014-12-31Updated copyright year.mitchell
2014-05-10Add "_HOME/modules" to `package.cpath`; init.luamitchell
2014-01-12Updated copyright information.mitchell
2013-10-02Show user-init error messages in a dialog to prevent crashing; init.luamitchell
2013-09-06Fixed bug in processing command line options introduced in r1546.mitchell
2013-08-31Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup.mitchell
A side effect is more efficient event emission during startup.
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-08-26Renamed `gui` to `ui` since it's more applicable.mitchell
2013-06-24Removed `_G.RESETTING`; test for `arg` instead.mitchell
2013-05-15`_M.textadept = require('textadept')` in user init is superfluous.mitchell
The module was being loaded by default anyway. Besides, the user's modules/textadept/init.lua controls which parts are loaded.
2013-04-29More code cleanup.mitchell
"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-20Updated copyright date.mitchell
2012-09-22Fixes to Lua paths.mitchell
Do not look in the current working directory for modules. Look in _USERHOME for shared libraries.
2012-07-21Lua code cleanup and API changes.mitchell
2012-04-10Support for single-instance on Linux and BSD with GLib 2.28.mitchell
Also added documentation on running with LuaJIT and require GTK+ 2.18 now.
2012-03-07Updated contact email address.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Code cleanup.mitchell
2010-12-28Updated copyright information.mitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-06-17Added dynamic command line argument handling.mitchell
2010-06-16Code and documentation cleanup.mitchell
2010-06-14Fixes from Robert Gieseke.mitchell
2010-06-11Moved core extension modules into textadept module.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.mime_types into the textadept module.mitchell
2010-06-10Moved core/ext/keys.lua into core/ext/key_commands.lua.mitchell
2010-06-10Moved textadept.io into Lua's io table.mitchell
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
2010-05-07Put _USERHOME package paths before _HOME for more extensibility; init.luamitchell
2010-04-05Code cleanup.mitchell
2010-03-29Use textadept.user_dofile() for user init.lua.mitchell
2010-03-10Removed side pane.mitchell
2010-02-23Added '~/.textadept/modules/' to package.path; init.luamitchell
2010-01-07Updated copyright to 2010.mitchell
2010-01-04Added command line switch for not loading/saving sessions.mitchell
2009-07-12Moved session support from core/file_io.lua to a Textadept module.mitchell
2009-07-12Lua code cleanup.mitchell
2009-07-08Use lfs.attributes for existance test instead of fopen; init.luamitchell
2009-07-07Use ~/.textadept/ for user settings, sessions, themes, lexers, etc.mitchell
2009-06-16Check for ~/.ta_modules using io.open instead of dofile error message; init.luamitchell