aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.os.luadoc
Commit message (Collapse)AuthorAge
* Updated copyright year.Gravatar mitchell2022-01-31
|
* Initial pass reformatting all code.Gravatar mitchell2021-04-11
| | | | Use clang-format, LuaFormatter, and 100 character limit on lines.
* Compile, run, and build command functions can also return environment tables.Gravatar mitchell2021-01-22
|
* Various manual and documentation updates.Gravatar mitchell2020-10-05
|
* Updated copyright information.Gravatar mitchell2020-09-29
|
* Prefer passing env table to `os.spawn()`.Gravatar mitchell2020-08-04
| | | | It will construct "KEY=VALUE" list.
* Call `os.spawn()` exit callback after `proc:wait()`.Gravatar mitchell2020-07-15
| | | | Added tests for `os.spawn()`.
* Renamed os.spawn() parameter from 'argv' to 'cmd'.Gravatar mitchell2020-07-14
| | | | | There should be no confusion that it's a command line string, not a table of strings.
* Allow views to be used as buffers and update API.Gravatar mitchell2020-05-25
| | | | | | | 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.
* Changed `os.spawn()` exit callback and `spawn_proc:wait()` behavior.Gravatar mitchell2020-05-24
| | | | | | 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.
* Return spawned process' exit code in `spawn_proc:wait()`.Gravatar mitchell2018-10-17
|
* Tweaked `os.spawn()` to allow omission of both cwd and env parameters.Gravatar mitchell2018-10-15
|
* Experimentally move external lspawn module into Lua os module as a patch.Gravatar mitchell2018-10-14