Age | Commit message (Collapse) | Author |
|
Eventually UTF-8 patterns may be possible.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This should have been committed long ago.
|
|
`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()`.
|
|
|
|
|
|
|
|
In a "Find in Files" buffer, goes to the file on the current line.
In a message buffer, jumps to the error or warning on the current line.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
Do not match pattern anchors.
|
|
|
|
Lua pattern matching in reverse is now possible.
|
|
"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.
|
|
Requires gtdialog r56.
|
|
|
|
Also changed experimental find incremental API.
|
|
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
|
|
Requires Scintilla r4436 and Scinterm r45.
|
|
This fixes the disorienting scrolling when wrapping only one search result.
|
|
Also moved snapopen module into core as io.snapopen().
|
|
|
|
|
|
|
|
|
|
|