aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/light.lua
Commit message (Collapse)AuthorAge
* Updated alpha of brace matches.Gravatar mitchell2022-02-27
| | | | The Scintilla default appears to have changed recently to be dimmer.
* Updated copyright year.Gravatar mitchell2022-01-31
|
* Fixed display of secondary selections on Linux.Gravatar mitchell2021-06-05
|
* Allow syntax highlighting to be preserved in selected text.Gravatar mitchell2021-06-04
| | | | Also fix some visual issues with selected and inactive text.
* Updated to Scintilla 5.0.3.Gravatar mitchell2021-05-29
| | | | Updated themes to use new `view.element_color` and treat all colors as opaque if no alpha was given.
* Added ability to specify find & replace pane entry font via ↵Gravatar mitchell2021-04-16
| | | | | | `ui.find.entry_font`. Also use type checks when setting find & replace text and labels.
* Initial pass reformatting all code.Gravatar mitchell2021-04-11
| | | | Use clang-format, LuaFormatter, and 100 character limit on lines.
* Updated copyright information.Gravatar mitchell2021-01-29
|
* Updated copyright information.Gravatar mitchell2020-09-29
|
* Reverted find results indicator color change.Gravatar mitchell2020-09-07
| | | | Background highlighting provides more contrast.
* Updated `ui.find.FIND_INDIC` style.Gravatar mitchell2020-08-27
|
* 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.
* Fixed error style in the light theme.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.
* 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
|
* Start using Scintilla's LongTerm3, which now includes Scintillua and Scinterm.Gravatar mitchell2018-03-12
| | | | | Since LongTerm3 requires a C++11 compiler, GCC 4.9+ is required. Since C++11 includes regex capability, drop TRE dependency.
* 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.