Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
As a result, no need for a *properties.lua* file anymore. Also, renamed
`ui.set_theme()` to `buffer.set_theme()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Mimic Lua 5.3 interpreter by auto-printing results and making '=' prefix
optional, call returned functions implicitly (no calling parentheses required),
and pretty print tables.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|