Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Also enable more accurate Lua command completion.
|
|
In the previous implementation without a split pane, the command entry could not
shrink in size.
|
|
|
|
|
|
|
|
`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()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
|
|
|
|
|
|
"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.
|
|
|
|
|
|
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
|
|
Requires Scintilla r4436 and Scinterm r45.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rewrote most of the manual and Lua API to complement each other.
Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|