Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
For example this should report 'm{' as just '{' on a Spanish OSX key layout.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This allows for the user to override the default switch behavior (e.g. switch to
an existing split view that already has the target buffer open).
Thanks to Gabriel Dubatti.
|
|
As a result, `events.disconnect()` may disconnect the wrong event handler.
Thanks to David Karell.
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|