Age | Commit message (Collapse) | Author |
|
|
|
|
|
It is now possible to cancel a "Find in Files" search part-way through.
|
|
|
|
As a result, changed `ui.find.lua` to `ui.find.regex`
Also removed luautf8 dependency since it is no longer needed.
Regex replacements cannot contain embedded Lua code.
Jumping to "find in files" results selects those results instead of just jumping
to their respective lines.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
They can accept either objects or relative numbers now. They do not accept
absolute indices anymore.
|
|
|
|
|
|
UTF-16 files (and other encodings with null bytes) are initially recognized as
binary files (no encoding). Allow encodings to be set for such files after load.
|
|
|
|
|
|
Renamed `lfs.FILTER` to `lfs.default_filter` and removed `exclude_FILTER`
argument from `lfs.dir_foreach()`.
|
|
|
|
It was unnecessarily complicating things. Just construct the proper filter.
|
|
|
|
It's quite possible some of Textadept's functions didn't handle them properly
anyway.
|
|
BOM use is legacy and discouraged. Scintilla and iconv appear to silently
handle BOMs just fine.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Use placeholder text instead. This is common in Unix tools.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Do not use `ipairs()` and use more consistent variable names among other things.
|
|
|
|
Makes use of an external luautf8 library, but only a subset of it.
|
|
|
|
|
|
|
|
Thanks to Carl Sturtivant for the Win32 proof-of-concept code.
|
|
|
|
|
|
The `bit32` library makes bit shifting easier.
|
|
Patched Scintilla to prevent warning on widget destroy.
|
|
|