aboutsummaryrefslogtreecommitdiff
path: root/doc/14_Appendix.md
AgeCommit message (Collapse)Author
2014-06-30Condensed manual and API documentation into single files.mitchell
2014-05-28Textadept's menus may be edited in-place via the `textadept.menu` module.mitchell
Any changes, even incremental ones, are reflected immediately. As a result, removed `set_menubar()` and `set_contextmenus()` from API.
2014-05-24Removed Adeptsense in favor of new framework committed in r1735.mitchell
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.
2013-12-12More LuaDoc updates.mitchell
2013-10-21More LuaDoc updates.mitchell
2013-10-18More LuaDoc updates.mitchell
2013-10-02Changed `ui.set_theme()` API to accept a table of properties to assign.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-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-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-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-26Commented on the new role of `_M` in the migration guide; doc/14_Appendix.htmlmitchell
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-11Fixed some documentation typos.mitchell
2013-07-16Save window maximized state in sessions.mitchell
Also ensure backward-compatibility with existing session files.
2013-07-08Renamed Textadept module's "mime_types" to "file_types" and removed config file.mitchell
2013-07-08Renamed "language-specific" modules to just "language modules" in documentation.mitchell
2013-06-24Consolidated bookmarks module's "goto" functions into a new `goto_mark()`.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-05-29Added more theme change documentation to migration guide; doc/14_Appendix.mdmitchell
2013-05-29Allow "%()" property expansion in themes like with compile/run macros.mitchell
2013-05-26Updated migration guide; doc/14_Appendix.mdmitchell
2013-05-25Added migration guide from Textadept 6 to Textadept 7; doc/14_Appendix.mdmitchell
2013-05-24Rewrote migration guides; doc/14_Appendix.mdmitchell
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
2013-04-08Make "command_entry_keypress" event more consistent with "keypress" in curses.mitchell
2013-04-06Update terminal color definitions.mitchell
Requires Scinterm r47.
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-03-10Indicator for highlighted words works in ncurses.mitchell
This requires Scinterm hg changeset 40 (7e25b9a35fbd).
2012-10-30Continued updating documentation formatting.mitchell
2012-10-29Updated documentation formatting.mitchell
Pathnames and filenames are italic and be more consistent with constant width text.
2012-10-23Removed `_M.textadept.run.execute()`.mitchell
2012-09-12Updated Migration Guide; doc/14_Appendix.mdmitchell
2012-09-12Documentation overhaul.mitchell
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
2012-08-29Updated Migration Guide; doc/14_Appendix.mdmitchell
2012-08-07Fixed typo; doc/14_Appendix.mdmitchell
2012-07-26Updated migration guide; doc/14_Appendix.mdmitchell
2012-07-26Note ncurses compatibility with scrolling long lines; doc/14_Appendix.mdmitchell
2012-07-26More ncurses compatibility notes; doc/14_Appendix.mdmitchell
2012-07-21More Lua code cleanup and API changes.mitchell
2012-07-21Converted some `buffer` "get" and "set" functions into properties.mitchell
Also updated to Scintilla 3.2.1.