Age | Commit message (Collapse) | Author |
|
|
|
Also fixed some curses errors introduced by the last commit.
|
|
The `textadept.run` module now uses `spawn()` instead of `io.popen()`.
This module replaces the dependency on winapi. Removed experimental
`io.popen()` and `os.execute()` hooks. They may be re-implemented later using
`spawn()`.
|
|
|
|
|
|
Deprecated `textadept.menu.set_contextmenu()` in favor of new
`textadept.menu.set_contextmenus()`.
|
|
|
|
|
|
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and
`io.snapopen()` APIs to accept tables of files and paths instead of "\n"
delimited strings.
|
|
|
|
Also removed more unused constants.
|
|
Menus and key bindings do not need `events.INITIALIZED`.
|
|
|
|
|
|
"Creating" non-existant modules is a bad idea and causes confusion.
|
|
|
|
|
|
|
|
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.
|
|
Also changed experimental find incremental API.
|
|
|
|
|
|
|
|
|
|
|
|
Requires gtdialog r56.
|
|
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
|
|
Requires Scintilla r4436 and Scinterm r45.
|
|
Also moved snapopen module into core as io.snapopen().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rewrote most of the manual and Lua API to complement each other.
Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|