Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
This allows for use of colors directly in view functions.
|
|
|
|
|
|
This allows for a more Lua table-oriented approach to defining and using colors
and styles, instead of manually manipulating Scintilla property strings.
Themes are still backwards compatible, as the underlying mechanisms are still
in place.
|
|
|
|
Thanks to Momohime Honda.
|
|
|
|
Auto-saving interferes with commands that read file modification times.
|
|
|
|
|
|
|
|
|
|
|
|
They had always been a bit counter-intuitive.
|
|
|
|
|
|
Uncomment the lines near the top of *core/init.lua* to enable LuaCov.
|
|
|
|
`os.spawn()` issues in curses should be resolved now.
|
|
|
|
Stop tracking and monitoring processes on exit.
|
|
|
|
|
|
|
|
This requires theme updates, primarily due to colour -> color.
|
|
|
|
|
|
|
|
|
|
Also improved separate themes-per-view functionality.
|
|
|
|
|
|
|
|
|
|
This feature was inadvertently removed during a refactor.
|
|
|
|
|
|
|
|
This allows for a superficial separation of buffer- and view-specific Scintilla
functionality. buffers and views can now be used interchangeably for the most
part, and the APIs are guidance, not hard requirements. User scripts do not
require any modification and will continue to function normally.
|
|
|
|
|
|
Since `waitpid()` cannot be used by both GLib (via `os.spawn()`) and
`spawn_proc:wait()`, use only one or the other. Then clean up after process
exit.
|
|
Since `waitpid()` cannot be used by both GLib (via `os.spawn()`) and
`spawn_proc:wait()`, use only one or the other. Then clean up after process
exit.
|
|
Since Windows filenames are case-insensitive, mismatched drive letter case may
cause the same file to be open twice.
|
|
|
|
|
|
|