Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Updating the entire menu is overkill and seems to slow down upon `reset()`.
|
|
|
|
|
|
Requires Scintillua r570 (changeset fe4431acc506).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmd.exe can choke on outputting some non-ASCII characters.
|
|
This happens when the replacement text matches the find text and is longer in
length.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Thanks to Michael Richter for the idea.
|
|
|
|
They can accept either objects or relative numbers now. They do not accept
absolute indices anymore.
|
|
It used to take a 1-based line number. Mimic Scintilla.
|
|
|
|
Renamed settings, allowed filename arguments to `run()` and `compile()`,
changed parameters to `*_OUTPUT` events, changed format of `error_patterns`, and
removed syntax checking.
|
|
|
|
Changed `ui.find.FILTER` to `ui.find.find_in_files_filter` and added an optional
filter argument to `ui.find.find_in_files()`.
|
|
Additional language module functionality should be manually loaded by the user.
|
|
Language-specific auto-paired characters, typeover characters, and matching
braces is no longer supported.
|
|
|
|
Renamed `lfs.FILTER` to `lfs.default_filter` and removed `exclude_FILTER`
argument from `lfs.dir_foreach()`.
|
|
|
|
It's quite possible some of Textadept's functions didn't handle them properly
anyway.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks to Brian Schott.
|
|
|
|
|
|
|
|
|