Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-11 | Added keysym for Keypad Enter; core/keys.lua | ||
2014-10-05 | Replaced command entry text field with a Scintilla buffer. | ||
`ui.command_entry` now has the same functions and fields as `buffer`s as well as an additional `height` property. Note that when the command entry is active, `_G.buffer` is unchanged, so many existing key commands cannot be bound to command entry key modes. See `keys.lua_command` in *modules/textadept/command_entry.lua* for the proper way to bind them. Removed `ui.command_entry.entry_text` and `ui.command_entry.show_completions()`. | |||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-12 | Lua code cleanup. | ||
2014-06-07 | Added buffer constants to buffer LuaDoc and improved Lua tags and api generator. | ||
2014-05-29 | Code cleanup. | ||
2014-05-28 | Updated LuaDoc. | ||
2014-01-12 | Updated copyright information. | ||
2013-12-18 | Enable read-only access to the current chain of key sequences; core/keys.lua | ||
2013-10-18 | More LuaDoc updates. | ||
2013-09-23 | Code and documentation cleanup. | ||
2013-09-09 | Moved buffer IO functions into the `io` module. | ||
Menus and key bindings do not need `events.INITIALIZED`. | |||
2013-09-06 | Updated LuaDoc. | ||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-08-10 | Updated some documentation. | ||
2013-07-08 | Renamed "language-specific" modules to just "language modules" in documentation. | ||
2013-06-04 | Fixed curses autocomplete with the "Enter" key. | ||
This reverts "Enter" to '\r' in Lua, so make a KEYSYM to retain '\n'. | |||
2013-05-26 | Rewrote some LuaDoc to use the active voice. | ||
2013-05-16 | Allow empty tables as keychains if they have metatables; core/keys.lua | ||
2013-04-29 | More code cleanup. | ||
"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-24 | Renamed `_G.buffer_new()` to `buffer.new()`. | ||
2013-04-21 | Updates to compile with latest GTK-OSX. | ||
This fixes Fn key recognition. | |||
2013-04-11 | Added key modes and changed the command entry to use them. | ||
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`. | |||
2013-04-05 | Initial support for Windows terminal via pdcurses. | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-01-20 | Updated copyright date. | ||
2012-12-03 | Recognize special ncurses keys better. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-10-30 | Continued updating documentation formatting. | ||
2012-10-30 | Pass "Escape" key to Scintilla correctly in ncurses. | ||
2012-10-29 | Updated documentation formatting. | ||
Pathnames and filenames are italic and be more consistent with constant width text. | |||
2012-10-17 | `keys.get_gdk_key()` has no use to ncurses; core/keys.lua | ||
2012-10-16 | Fixed GUI menu key shortcut handling. | ||
2012-09-18 | Fixed incremental find in ncurses. | ||
2012-09-12 | Documentation overhaul. | ||
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-07-09 | Ignore Fn-key combinations on Mac OSX. | ||
GTKOSX passes a keycode that confuses Scintilla, which inserts a 'DLE' char. | |||
2012-06-22 | Updated key commands for ncurses. | ||
2012-06-06 | `gui.statusbar_text` is write-only again. | ||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
2012-03-07 | Updated contact email address. | ||
2012-03-07 | Documentation overhaul with Discount (Markdown implementation). | ||
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files. | |||
2012-03-06 | Added keypad keys to KEYSYMS; core/keys.lua | ||
2012-03-03 | Added documentation on propagation; core/keys.lua | ||
2012-02-22 | Use GtkOSXApplication, which is Cocoa-based, instead of Carbon API calls on OSX. | ||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-06 | Updated copyright information. | ||
2012-01-05 | Rename '_m' to '_M'. | ||
2011-12-31 | Changed 'locale.localize()' to global '_L' table. | ||