aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-01Complete r1584; src/Makefilemitchell
2013-09-30Updated CHANGELOG.md.mitchell
2013-09-30Updated Lua Adeptsense.mitchell
2013-09-30Updated for Textadept 7.0 beta 4.mitchell
2013-09-30Fixed a compile error on platforms that require gmodule; src/Makefilemitchell
2013-09-29Added properties.lua to install targets; src/Makefilemitchell
2013-09-29Fix error when block commenting in plain text; modules/textadept/editing.luamitchell
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-27Fixed incorrect constants introduced in r1574; modules/textadept/editing.luamitchell
2013-09-23Code and documentation cleanup.mitchell
2013-09-21Added call tip highlight color to themes.mitchell
2013-09-21Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.mitchell
2013-09-20Fixed bug with builds not linking src/LexLPeg.cxx in `make deps`; src/Makefilemitchell
2013-09-18Support multiple selections with `select_word()`; modules/textadept/editing.luamitchell
2013-09-17Updated Lua Adeptsense.mitchell
2013-09-17Changed symbol marker margin settings; properties.luamitchell
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-16Moved custom markers and indicators into themes and added more properties.mitchell
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-12Code cleanup in themes.mitchell
2013-09-12Changed `events.disconnect()` to accept function argument instead of ID.mitchell
2013-09-11Added tag textadept_7.0_beta_3 for changeset 5ebbc96b1ec1mitchell
2013-09-11Updated CHANGELOG.md.mitchell
2013-09-11Fixed typo; doc/12_Compiling.mdmitchell
2013-09-11Updated Lua Adeptsense.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-08Expose marker and indicator numbers for greater customization.mitchell
Removed their respective color settings.
2013-09-08Updated Lua Adeptsense.mitchell
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-02Updated to the latest CDK.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-26Commented on the new role of `_M` in the migration guide; doc/14_Appendix.htmlmitchell
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-25Renamed `LANGUAGE_MODULE_LOADED` event to `LEXER_LOADED` and reverted r1500.mitchell
"Creating" non-existant modules is a bad idea and causes confusion.
2013-08-24Include Scintilla constants in `buffer`s.mitchell