aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/command_entry.lua
AgeCommit message (Collapse)Author
2015-12-31Updated copyright date.mitchell
2015-03-16Code cleanup based on the output of luacheck, a Lua linter.mitchell
2015-02-09Return values from abbreviated functions; modules/textadept/command_entry.luamitchell
2014-12-31Updated copyright year.mitchell
2014-11-30Show command entry call tips above it; modules/textadept/command_entry.luamitchell
2014-11-29Fixed command entry reset bug for real instead of in r1861.mitchell
2014-11-25Include buffer constants in completions; modules/textadept/command_entry.luamitchell
2014-11-15Fixed command entry reset bug now that the entry is a Scintilla buffer.mitchell
2014-11-12Code and documentation cleanup.mitchell
2014-10-13Parameterize lexer and height for `ui.command_entry.enter_mode()`.mitchell
Also enable more accurate Lua command completion.
2014-10-11Move the command entry into a split pane on GTK.mitchell
In the previous implementation without a split pane, the command entry could not shrink in size.
2014-10-07Automatically add standard editing keys; modules/textadept/command_entry.luamitchell
2014-10-06Fixed autocomplete bug in curses; modules/textadept/command_entry.luamitchell
2014-10-05Added editing keys for use with other modes; modules/textadept/command_entry.luamitchell
2014-10-05Replaced command entry text field with a Scintilla buffer.mitchell
`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-30Condensed manual and API documentation into single files.mitchell
2014-06-12Lua code cleanup.mitchell
2014-05-28Moved 'lua_command' mode into command entry module and removed some API funcs.mitchell
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-01-12Updated copyright information.mitchell
2013-12-12More LuaDoc updates.mitchell
2013-11-10Updated LuaDoc.mitchell
2013-10-18More LuaDoc updates.mitchell
2013-09-23Code and documentation cleanup.mitchell
2013-09-13Updated some LuaDoc.mitchell
2013-09-06Updated LuaDoc.mitchell
2013-08-26Renamed `gui` to `ui` since it's more applicable.mitchell
2013-06-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-05-26Rewrote some LuaDoc to use the active voice.mitchell
2013-05-20Print the results of '=' Lua expressions; modules/textadept/command_entry.luamitchell
2013-04-29More code cleanup.mitchell
"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-20Respect user-defined `keys[mode]['esc']`; modules/textadept/command_entry.luamitchell
2013-04-15Function in `finish_mode()` is optional; modules/textadept/command_entry.luamitchell
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-02-11Added command line switches for running Lua code on startup.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-03Recognize special ncurses keys better.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-11-19Changed Lua code style for tables.mitchell
2012-09-18Fixed incremental find in ncurses.mitchell
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-06-05Added ncurses Command Entry completion.mitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-06Updated copyright information.mitchell
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-20Wrap LuaDoc for C tables and functions in long comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell