Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-11 | Move the command entry into a split pane on GTK. | ||
In the previous implementation without a split pane, the command entry could not shrink in size. | |||
2014-10-07 | Automatically add standard editing keys; modules/textadept/command_entry.lua | ||
2014-10-06 | Fixed autocomplete bug in curses; modules/textadept/command_entry.lua | ||
2014-10-05 | Added editing keys for use with other modes; modules/textadept/command_entry.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-05-28 | Moved 'lua_command' mode into command entry module and removed some API funcs. | ||
2014-03-01 | Use `assert(...)` as a shortcut for `if not ... then error() end`. | ||
2014-01-12 | Updated copyright information. | ||
2013-12-12 | More LuaDoc updates. | ||
2013-11-10 | Updated LuaDoc. | ||
2013-10-18 | More LuaDoc updates. | ||
2013-09-23 | Code and documentation cleanup. | ||
2013-09-13 | Updated some LuaDoc. | ||
2013-09-06 | Updated LuaDoc. | ||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-06-21 | Remove theme selection since it does not persist. | ||
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead. | |||
2013-05-26 | Rewrote some LuaDoc to use the active voice. | ||
2013-05-20 | Print the results of '=' Lua expressions; modules/textadept/command_entry.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-20 | Respect user-defined `keys[mode]['esc']`; modules/textadept/command_entry.lua | ||
2013-04-15 | Function in `finish_mode()` is optional; modules/textadept/command_entry.lua | ||
2013-04-11 | Added key modes and changed the command entry to use them. | ||
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`. | |||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-02-11 | Added command line switches for running Lua code on startup. | ||
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-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-06-05 | Added ncurses Command Entry completion. | ||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
2012-03-07 | Updated contact email address. | ||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-06 | Updated copyright information. | ||
2011-12-31 | Changed 'locale.localize()' to global '_L' table. | ||
2011-12-20 | Wrap LuaDoc for C tables and functions in long comments. | ||
2011-12-12 | Remove 'module' and update LuaDoc comments appropriately. | ||
2011-12-12 | Updated to Lua 5.2. | ||
2011-09-26 | Lua code cleanup. | ||
2011-07-13 | Refactored key commands and added menu accelerators. | ||
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module. | |||
2011-06-24 | Removed '_G' prefix from globals where necessary. | ||
2011-06-23 | Use string constants for event names. | ||
2011-01-21 | Code cleanup. | ||
2010-12-28 | Updated copyright information. | ||
2010-12-23 | Code cleanup. | ||
2010-11-23 | Code cleanup. | ||
Also modified the editing module's enclose() and select_enclosed() functions. | |||
2010-10-09 | Update UI after command entry command; modules/textadept/command_entry.lua | ||