Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Also enable more accurate Lua command completion.
|
|
|
|
`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()`.
|
|
|
|
|
|
Also have libtermkey take care of saving and restoring termios.
|
|
|
|
|
|
|
|
|
|
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter
functions.
|
|
The new `textadept.editing.autocomplete()` is a generic function for a new
autocompletion framework that will replace Adeptsense. The framework involves
individual autocompletion functions, such as one for autocompleting words.
Also added new `AUTOCOMPLETE_ALL` setting for searching all buffers for word
completions.
|
|
|
|
Also fixed some curses errors introduced by the last commit.
|
|
Corrected documentation.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Also removed more unused constants.
|
|
Menus and key bindings do not need `events.INITIALIZED`.
|
|
|
|
A side effect is more efficient event emission during startup.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
|
|
Themes are now just single files that share Textadept's Lua state.
Also added a new "settings.lua" that functions in place of buffer and view theme
files.
Requires latest Scintillua.
|
|
"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.
|
|
The former was originally designed to complement the latter.
|
|
Requires gtdialog r56.
|
|
Also changed experimental find incremental API.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
|
|
Requires Scintilla r4436 and Scinterm r45.
|