aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/run.lua
AgeCommit message (Collapse)Author
2020-03-26Removed extra sets of () around some buffer function calls.mitchell
The Scintilla iface was changed to not return a second string length value.
2020-03-26Switched to 1-based indices for buffer positions, lines, and countable entities.mitchell
2020-03-16Moved individual buffer functions in `io` into `buffer`.mitchell
e.g. `io.reload_buffer()` was renamed `buffer:reload()`.
2020-03-16Detect and allow jumping to internal Lua errors.mitchell
2020-03-13More code cleanup and refactoring.mitchell
2020-03-13More code cleanup, refactoring, and reformatting.mitchell
2020-03-03Added test suite and API type checking for more helpful error messages.mitchell
2020-02-21Removed '_' mnemonics from locale keys.mitchell
Kept backward-compatibility for now.
2020-02-18Wrap searches in `textadept.run.goto_error()`.mitchell
2019-12-31Updated copyright year.mitchell
2019-11-26Fixed bug in previous commit where flushing does not clear output buffer.mitchell
2019-11-25Fixed long line output for run, compile, and build commands.mitchell
Output is buffered as needed until a line end marker is encountered. Thanks to Ashwin Hirschi.
2019-09-19Properly handle absolute paths in run output and case-insensitivity on Windows.mitchell
2019-08-05Added support for ksh and mksh shells.mitchell
Thanks to Ypnose.
2019-02-16Updated copyright year.mitchell
2018-10-14Experimentally move external lspawn module into Lua os module as a patch.mitchell
2018-04-25Removed LuaJIT version of Textadept.mitchell
Also updated to Lua 5.3 syntax where held back by LuaJIT's 5.1/5.2 syntax.
2018-01-25Updated copyright year.mitchell
2017-08-28Added support for Myrddin.mitchell
2017-02-25Added support for rc and Standard ML.mitchell
Requires Scintillua r592 (changeset 149ae95d14f3).
2016-12-31Updated copyright information.mitchell
2016-10-06Added support for Protobuf and Crystal.mitchell
Requires Scintillua r570 (changeset fe4431acc506).
2016-09-12Fixed error building projects; modules/textadept/run.luamitchell
2016-07-07Try to differentiate between Python 3 and 2 in run commands.mitchell
2016-06-16Changed arguments to `ui.goto_view()` and `view:goto_buffer()`.mitchell
They can accept either objects or relative numbers now. They do not accept absolute indices anymore.
2016-06-15`textadept.editing.goto_line()` takes 0-based line number.mitchell
It used to take a 1-based line number. Mimic Scintilla.
2016-06-15Lots of small LuaDoc improvements (grammar mainly).mitchell
2016-06-15Refactored `textadept.run`; modules/textadept/run.luamitchell
Renamed settings, allowed filename arguments to `run()` and `compile()`, changed parameters to `*_OUTPUT` events, changed format of `error_patterns`, and removed syntax checking.
2016-06-15Renamed `ui.SILENT_PRINT` to `ui.silent_print`.mitchell
2016-04-29Disabled `CHECK_SYNTAX` by default; modules/textadept/run.luamitchell
2016-04-16Allow file-specific run/compile commands; modules/textadept/run.luamitchell
2016-04-16`events.CHAR_ADDED` emits a character code, not a byte.mitchell
2016-04-12Ouput 'cd' for run/compile commands when necessary; modules/textadept/run.luamitchell
2016-04-10Small documentation update.mitchell
2016-04-07Code cleanup, bugfixes, and improvements; modules/textadept/run.luamitchell
Do not throw an error if there is no project for a build command. Pass command output unprocessed to event handlers. Assume it is UTF-8 unless a warning or error message is detected. In that case, assume it is encoded in _CHARSET in order to jump to the correct file. (This matters particularly on Win32.)
2016-04-05Use more accurate variable names in `events.CHAR_ADDED` events.mitchell
2016-04-02Code cleanup.mitchell
Do not use `ipairs()` and use more consistent variable names among other things.
2016-01-14Added support for Docker and MoonScript.mitchell
Requires Scintillua r530 (changeset 2693c57bc187)
2016-01-02Added support for APL, Faust, Ledger, man/roff, and Pure.mitchell
Requires Scintillua r528 (changeset 6788cdec505b)
2015-12-31Updated copyright date.mitchell
2015-12-03Allow compile, run, and build command functions to specify a working directory.mitchell
2015-12-03Added support for the Icon language.mitchell
Requires Scintillua r524 (changeset e31e33b9c1a3).
2015-11-16Added support for SNOBOL4.mitchell
Thanks to Michael Richter.
2015-09-26Fixed Python syntax checker on Win32; modules/textadept/run.luamitchell
'\' in path was causing problems due to being interpreted by Python rather than the shell.
2015-09-07Fixed bug in parsing syntax error output for Ruby; modules/textadept/run.luamitchell
Ruby does not always output a '^' for indicating column number.
2015-09-04Use `spawn()` for syntax checking; modules/textadept/run.luamitchell
This prevents the black box popup on Windows. This requires lspawn r38 (changeset 7683f6d2d678).
2015-08-08Added automatic syntax-checking capability as files are saved.mitchell
2015-05-07Added support for Elixir.mitchell
Requires Scintillua r494 (changeset 955860bf41a1).
2015-04-22Added `RUN_IN_BACKGROUND` field for shell commands; modules/textadept/run.luamitchell
2015-03-19Added some support for Rust and TOML.mitchell
This requires Scintillua r484 (changeset 6a4307f7d2cb).