Age | Commit message (Collapse) | Author |
|
Do not use `ipairs()` and use more consistent variable names among other things.
|
|
|
|
This speeds up `io.save_all_files()`, particularly on remote filesystems.
Thanks to Ivan Baidakou.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This should have been committed long ago.
|
|
|
|
|
|
|
|
In a "Find in Files" buffer, goes to the file on the current line.
In a message buffer, jumps to the error or warning on the current line.
|
|
|
|
|
|
Thanks to Pedro Andres Aranda Gutierrez.
|
|
|
|
Also fixed some curses errors introduced by the last commit.
|
|
The `textadept.run` module now uses `spawn()` instead of `io.popen()`.
This module replaces the dependency on winapi. Removed experimental
`io.popen()` and `os.execute()` hooks. They may be re-implemented later using
`spawn()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Other modifications to make the return value for `io.popen()` more file-like.
|
|
|
|
|
|
Compile in a stripped version of Steve Donovan's winapi library and override
`io.popen` and `os.execute`.
|
|
|
|
|
|
Add an event handler at index 1 to override the default prompt to reload.
|
|
|
|
Created a "dummy" Scintilla view for operating on non-global documents.
Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's
`buffer.modify`.
|
|
|
|
|
|
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and
`io.snapopen()` APIs to accept tables of files and paths instead of "\n"
delimited strings.
|
|
|
|
Also removed more unused constants.
|
|
|
|
Menus and key bindings do not need `events.INITIALIZED`.
|
|
|
|
|
|
|
|
|