aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/dark.lua
Commit message (Collapse)AuthorAge
* Changed opacity of the find indicator in themes.Gravatar mitchell2020-07-27
|
* Moved word highlighting back into editing module and disable by default.Gravatar mitchell2020-07-25
| | | | Also fixed `HIGHLIGHT_SELECTED` behavior with non-word selections.
* 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.
* 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.
* 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.
* Prefer `view.property*` instead of `buffer.property*`.Gravatar mitchell2020-06-08
|
* 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.
* Switched to 1-based indices for buffer positions, lines, and countable entities.Gravatar mitchell2020-03-26
|
* Updated copyright year.Gravatar mitchell2019-12-31
|
* Enabled all theme colors and changed line number colors in the terminal version.Gravatar mitchell2019-09-21
| | | | Previously, only colors used in the theme files were enabled.
* Updated copyright year.Gravatar mitchell2019-02-16
|
* Updated copyright year.Gravatar mitchell2018-01-25
|
* Updated copyright information.Gravatar mitchell2016-12-31
|
* Updated to Scintilla 3.7.1.Gravatar mitchell2016-12-05
|
* Prefer '$(...)' notation in themes over '%(...)'.Gravatar mitchell2016-06-15
| | | | The latter will still work though for now.
* Updated copyright date.Gravatar mitchell2015-12-31
|
* Refactored snippets to use indicators instead of ugly placeholder text.Gravatar mitchell2015-09-18
|
* Highlight found text in find in files results.Gravatar mitchell2015-07-25
|
* Updated copyright year.Gravatar mitchell2014-12-31
|
* Updated copyright information.Gravatar mitchell2014-01-12
|
* Use an indicator to highlight matching braces.Gravatar mitchell2013-10-09
|
* Integrated compile and run commands for most languages.Gravatar mitchell2013-09-27
| | | | | | | Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns.
* Added call tip highlight color to themes.Gravatar mitchell2013-09-21
|
* Moved custom markers and indicators into themes and added more properties.Gravatar mitchell2013-09-16
|
* Code cleanup in themes.Gravatar mitchell2013-09-12
|
* Include Scintilla constants in `buffer`s.Gravatar mitchell2013-08-24
|
* Allow "%()" property expansion in themes like with compile/run macros.Gravatar mitchell2013-05-29
|
* Reformatted "style.default" in themes.Gravatar mitchell2013-05-25
|
* Use 'font' and 'fontsize' properties for theme fonts.Gravatar mitchell2013-05-22
|
* Rewrote theme implementation.Gravatar mitchell2013-05-15
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.