aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* 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.
* `ui.dialogs.optionselect()` changes `informative_text` option to `text`.Gravatar mitchell2020-07-14
| | | | This is more consistent with other non-text-input dialog options.
* Renamed `textadept.editing.block_comment()` to `toggle_comment()`.Gravatar mitchell2020-07-14
|
* Limit word highlighting to single words.Gravatar mitchell2020-07-13
|
* Note that `Esc` clears word highlighting.Gravatar mitchell2020-07-13
|
* Test setting styles directly via `lexer.styles`.Gravatar mitchell2020-07-13
| | | | Requires latest Scintilla for proper `lexer.colors` return types.
* Make `lexer` global by default when it's available.Gravatar mitchell2020-07-13
|
* Auto-highlight all occurrences of selected words and find results.Gravatar mitchell2020-07-13
| | | | | This supercedes `textadept.editing.highlight_word()`, which has been removed. Changed the color of word highlights in themes.
* Reverted LuaDoc for `buffer:indicator_end()`.Gravatar mitchell2020-07-13
|
* Made `ui.find.goto_file_found()` and `textadept.run.goto_error()` args optional.Gravatar mitchell2020-07-12
|
* Fixed --line command line switch.Gravatar mitchell2020-07-12
| | | | Line number strings need to be converted to numbers.
* Read from system `LUA_PATH` and `LUA_CPATH` instead of custom env vars.Gravatar mitchell2020-07-12
| | | | Textadept's paths have higher priority anyway.
* Be more consistent with "key sequences", "key commands", and "key bindings".Gravatar mitchell2020-07-12
| | | | Sequences are key strings, commands are Lua functions, and bindings are commands assigned to sequences.
* Updated macro record to use new modifier keys.Gravatar mitchell2020-07-12
|
* Fixed display of API documentation in the command entry.Gravatar mitchell2020-07-09
|
* Fixed error style in the light theme.Gravatar mitchell2020-07-08
|
* Auto-convert '#RRGGBB' format theme colors to 0xBBGGRR number format.Gravatar mitchell2020-07-08
| | | | This allows for use of colors directly in view functions.
* Reverted accidental test changes.Gravatar mitchell2020-07-08
|
* Reverted accidental commit of experimental changes.Gravatar mitchell2020-07-08
|
* Added `lexer.colors` and `lexer.styles` and updated themes to utilize them.Gravatar mitchell2020-07-07
| | | | | | | 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.
* Added `buffer:style_of_name()` as an analogue to `buffer:name_of_style()`.Gravatar mitchell2020-07-04
|
* Added support for Fennel.Gravatar mitchell2020-07-03
| | | | Thanks to Momohime Honda.
* Updated LuaDoc noting that `view.MOD_*` is different on Mac.Gravatar mitchell2020-07-03
|
* Only save before compile/run if the buffer has been modified.Gravatar mitchell2020-07-01
| | | | Auto-saving interferes with commands that read file modification times.
* Ignore language name in language-specific keys when warning about compatibility.Gravatar mitchell2020-06-30
|
* Enabled compatibility message for old key modifiers.Gravatar mitchell2020-06-29
|
* Updated Lua autocompletion and documentation.Gravatar mitchell2020-06-28
|
* Renamed `ui.bufstatusbar_text` to `ui.buffer_statusbar_text`.Gravatar mitchell2020-06-28
|
* Be more consistent with Command key variable name.Gravatar mitchell2020-06-28
|
* Changed keybinding modifier keys.Gravatar mitchell2020-06-28
| | | | They had always been a bit counter-intuitive.
* Updated file_diff test.Gravatar mitchell2020-06-27
|
* Improve code coverage in some tests.Gravatar mitchell2020-06-25
|
* Report LuaCov coverage after running tests if it is enabled.Gravatar mitchell2020-06-25
| | | | Uncomment the lines near the top of *core/init.lua* to enable LuaCov.
* Fixed LuaDoc.Gravatar mitchell2020-06-25
|
* Removed unstable test handling.Gravatar mitchell2020-06-22
| | | | `os.spawn()` issues in curses should be resolved now.
* Added tests for external ctags, file_diff, history, and spellcheck modules.Gravatar mitchell2020-06-22
|
* Fixed potential hangs on curses with `os.spawn()`.Gravatar mitchell2020-06-22
| | | | Stop tracking and monitoring processes on exit.
* Fixed LuaDoc for `buffer:indicator_end()`.Gravatar mitchell2020-06-22
|
* Update to latest Scintilla revision for LexLPeg crash fix.Gravatar mitchell2020-06-20
|
* Fixed toggling of Find & Replace pane visibility with `ui.find.focus()`.Gravatar mitchell2020-06-11
|
* Renamed some buffer/view fields to use American English instead of Australian.Gravatar mitchell2020-06-10
| | | | This requires theme updates, primarily due to colour -> color.
* Replaced `lfs.dir_foreach()` with `lfs.walk()` generator.Gravatar mitchell2020-06-10
|
* Updated stale buffer parameter references in view LuaDoc.Gravatar mitchell2020-06-09
|
* Prefer `view.call_tip_*` instead of `buffer.call_tip_*`.Gravatar mitchell2020-06-09
|
* Prefer `view.property*` instead of `buffer.property*`.Gravatar mitchell2020-06-08
|
* Renamed `buffer:set_theme()` to `view:set_theme()` and fixed a bug with splits.Gravatar mitchell2020-06-05
| | | | Also improved separate themes-per-view functionality.
* Added tag textadept_11.0_alpha_2 for changeset c424036949cfGravatar mitchell2020-06-01
|
* Updated CHANGELOG.md.Gravatar mitchell2020-05-31
|
* Updated for 11.0 alpha 2.Gravatar mitchell2020-05-31
|