aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2013-09-30Updated for Textadept 7.0 beta 4.mitchell
2013-09-29Added new `ui.dialogs` module for more user-friendly dialog support.mitchell
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings.
2013-09-27Integrated compile and run commands for most languages.mitchell
Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns.
2013-09-23Code and documentation cleanup.mitchell
2013-09-21Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.mitchell
2013-09-16Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.mitchell
2013-09-16Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.mitchell
Also removed more unused constants.
2013-09-15Do not convert filenames to UTF-8; keep them in `_CHARSET`.mitchell
2013-09-14Removed some unused constants from `_SCINTILLA.constants`.mitchell
2013-09-13Updated some LuaDoc.mitchell
2013-09-12Changed `events.disconnect()` to accept function argument instead of ID.mitchell
2013-09-10Do not cache `_G.arg`; core/args.luamitchell
This also helps fix a bug caused in part by r1557.
2013-09-10Fixed bug with previous commit.mitchell
2013-09-09Use `events.ARG_NONE` constant instead of string.mitchell
2013-09-09Moved buffer IO functions into the `io` module.mitchell
Menus and key bindings do not need `events.INITIALIZED`.
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