aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2013-09-08Updated for 7.0 beta 3.mitchell
2013-09-08Fixed potential crash caused by split views.mitchell
2013-09-06Fixed bug in processing command line options introduced in r1546.mitchell
2013-09-06Updated LuaDoc.mitchell
2013-09-05Renamed `ui.docstatusbar_text` to `ui.bufstatusbar_text`.mitchell
2013-09-01Renamed `buffer:get_style_name(n)` to `buffer.style_name[n]`.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-30Fixed incorrect constants in buffer LuaDoc; core/.buffer.luadocmitchell
2013-08-26Forgot to update some documentation with newly renamed `LEXER_LOADED` event.mitchell
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-08-24Include Scintilla constants in `buffer`s.mitchell
2013-08-10Updated for 7.0 beta 2.mitchell
2013-08-10Updated some documentation.mitchell
2013-08-08Theme properties passed to `gui.set_theme()` should persist; core/gui.luamitchell
2013-08-08Fixed bug with theme loading during `reset()`; core/gui.luamitchell
2013-07-16Save window maximized state in sessions.mitchell
Also ensure backward-compatibility with existing session files.
2013-07-10Updated for 7.0 beta.mitchell
2013-07-08Renamed "language-specific" modules to just "language modules" in documentation.mitchell
2013-06-29Updated for 7.0 alpha 2.mitchell
2013-06-24Removed `_G.RESETTING`; test for `arg` instead.mitchell
2013-06-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-06-21`gui.set_theme()` accepts key-value argument pairs for theme properties to set.mitchell
2013-06-12Removed `_L._EXISTS()`; core/locale.luamitchell
2013-06-12Removed `_LEXERPATH`.mitchell
2013-06-06Only set theme and property settings once on startup; core/gui.luamitchell
2013-06-04Fixed curses autocomplete with the "Enter" key.mitchell
This reverts "Enter" to '\r' in Lua, so make a KEYSYM to retain '\n'.
2013-06-03Fixed bug where default theme in _USERHOME is not loaded; core/gui.luamitchell
2013-05-26Rewrote some LuaDoc to use the active voice.mitchell
2013-05-25Updated for 7.0 alpha.mitchell
2013-05-22Use 'font' and 'fontsize' properties for theme fonts.mitchell
2013-05-21Renamed "settings.lua" to "properties.lua".mitchell
2013-05-15Rewrote theme implementation.mitchell
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
2013-05-29Fixed crash caused by split views.mitchell
This fix is in 6.6.
2013-05-25Updated for 6.6.mitchell
2013-05-22Documented extended styles in Scintilla; core/.buffer.luadocmitchell
2013-05-20Updated to Scintilla 3.3.2.mitchell
2013-05-16Allow empty tables as keychains if they have metatables; core/keys.luamitchell
2013-05-15Set language-specific buffer properties through an event instead of a function.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-05-15Updated old documentation.mitchell
2013-05-01Fixed bug in file encodings; core/file_io.luamitchell
This fix was repackaged into 6.6 beta.
2013-04-30More code cleanup.mitchell
2013-04-30Renamed `io.try_encodings` to `io.encodings`; core/file_io.luamitchell
Also refactored encoding detection.
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-04-27Updated for 6.6 beta.mitchell
2013-04-26Consolidated the editing module's `grow_selection()` into `enclose_selected()`.mitchell
The former was originally designed to complement the latter.
2013-04-26Handle new "lexer/current" format from LPeg lexer's API change.mitchell
Also refactored modules/textadept/mime_types.lua. Requires Scintillua r357.
2013-04-25Added icons to msgbox dialogs.mitchell
Requires gtdialog r56.
2013-04-25Code and documentation cleanup.mitchell