From cc23cab69c4ebf172df670920beb01824c0cbe0b Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Wed, 15 Jun 2016 08:53:43 -0400 Subject: Refactored `textadept.run`; modules/textadept/run.lua Renamed settings, allowed filename arguments to `run()` and `compile()`, changed parameters to `*_OUTPUT` events, changed format of `error_patterns`, and removed syntax checking. --- doc/manual.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'doc/manual.md') diff --git a/doc/manual.md b/doc/manual.md index 4794a8fd..5910c7e0 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1859,6 +1859,10 @@ terminal's constraints: Old API |Change |New API ----------------------------------|:------:|------- +**events** | | +COMPILE\_OUTPUT lexer, output |Changed |[COMPILE\_OUTPUT][] output, ext/lex +RUN\_OUTPUT lexer, output |Changed |[RUN\_OUTPUT][] output, ext/lexer +BUILD\_OUTPUT project, output |Changed |[BUILD\_OUTPUT][] output **io** | | snapopen(...) |Changed |[quick\_open][](paths, filter, opts) snapopen\_filters |Renamed |[quick\_open\_filters][] @@ -1879,11 +1883,26 @@ STRIP\_TRAILING\_SPACES |Replaced|[strip\_trailing\_spaces][] AUTOCOMPLETE\_ALL |Replaced|[autocomplete\_all\_words][] char\_matches |Replaced|[auto\_pairs][] braces |Replaced|[brace\_matches][] +**textadept.run** | | +RUN\_IN\_BACKGROUND |Renamed |[run\_in\_background][] +CHECK\_SYNTAX |Removed | +GOTO\_SYNTAX\_ERRORS |Removed | +cwd |Removed | +proc |Removed | +compile() |Changed |[compile][](filename) +run() |Changed |[run][](filename) +build() |Changed |[build][](root\_directory) +[error\_patterns][] |Changed |_(changed format)_ +syntax\_commands |Removed | +syntax\_error\_patterns |Removed | **textadept.session** | | DEFAULT\_SESSION |Renamed |[default\_session][] SAVE\_ON\_QUIT |Renamed |[save\_on\_quit][] MAX\_RECENT\_FILES |Renamed |[max\_recent\_files][] +[COMPILE\_OUTPUT]: api.html#events.COMPILE_OUTPUT +[RUN\_OUTPUT]: api.html#events.RUN_OUTPUT +[BUILD\_OUTPUT]: api.html#events.BUILD_OUTPUT [default\_filter]: api.html#lfs.default_filter [dir\_foreach()]: api.html#lfs.dir_foreach [silent\_print]: api.html#ui.silent_print @@ -1898,6 +1917,11 @@ MAX\_RECENT\_FILES |Renamed |[max\_recent\_files][] [strip\_trailing\_spaces]: api.html#textadept.editing.strip_trailing_spaces [autocomplete\_all\_words]: api.html#textadept.editing.autocomplete_all_words [brace\_matches]: api.html#textadept.editing.brace_matches +[run\_in\_background]: api.html#textadept.run.run_in_background +[compile]: api.html#textadept.run.compile +[run]: api.html#textadept.run.run +[build]: api.html#textadept.run.build +[error\_patterns]: api.html#textadept.run.error_patterns [default\_session]: api.html#textadept.session.default_session [save\_on\_quit]: api.html#textadept.session.save_on_quit [max\_recent\_files]: api.html#textadept.session.max_recent_files -- cgit v1.2.3