aboutsummaryrefslogtreecommitdiff
path: root/core/.view.luadoc
AgeCommit message (Collapse)Author
2022-01-31Updated copyright year.mitchell
2021-09-30Updated to Scintilla 5.1.3.mitchell
There is a crash on the Gtk platform that has been temporarily patched until a fix is released.
2021-06-27Updated to Scintilla 5.1.0.mitchell
2021-06-11Updated Lua autocompletion and documentation.mitchell
2021-05-29Updated to Scintilla 5.0.3.mitchell
Updated themes to use new `view.element_color` and treat all colors as opaque if no alpha was given.
2021-04-13Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm.mitchell
Some of the Scintilla API has changed, and by extension the Scintillua API.
2021-04-11Initial pass reformatting all code.mitchell
Use clang-format, LuaFormatter, and 100 character limit on lines.
2020-11-30Updated LuaDoc.mitchell
2020-10-11Updated LuaDoc.mitchell
2020-09-30Updated Lua autocompletion and documentation.mitchell
2020-09-29Updated copyright information.mitchell
2020-09-19Updated to Scintilla 4.4.5 and Scintillua 4.4.5-1.mitchell
2020-09-14More small documentation updates.mitchell
2020-08-17Updated some documentation and use macOS instead of Mac OSX.mitchell
2020-08-04Updated LuaDoc.mitchell
2020-07-27Updated to Scintilla 3.21.0.mitchell
2020-07-18Updated to latest Scintilla for new `lexer.fold*` API.mitchell
This replaces the need for `view.property['fold*'] = ...`
2020-07-16Minor LuaDoc updates and spelling corrections.mitchell
2020-07-07Added `lexer.colors` and `lexer.styles` and updated themes to utilize them.mitchell
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.
2020-06-25Fixed LuaDoc.mitchell
2020-06-10Renamed some buffer/view fields to use American English instead of Australian.mitchell
This requires theme updates, primarily due to colour -> color.
2020-06-09Updated stale buffer parameter references in view LuaDoc.mitchell
2020-06-09Prefer `view.call_tip_*` instead of `buffer.call_tip_*`.mitchell
2020-06-08Prefer `view.property*` instead of `buffer.property*`.mitchell
2020-06-05Renamed `buffer:set_theme()` to `view:set_theme()` and fixed a bug with splits.mitchell
Also improved separate themes-per-view functionality.
2020-05-25Allow views to be used as buffers and update API.mitchell
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.
2018-01-25Updated copyright year.mitchell
2016-12-31Updated copyright information.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.
2015-12-31Updated copyright date.mitchell
2014-12-31Updated copyright year.mitchell
2014-06-30Condensed manual and API documentation into single files.mitchell
2014-01-12Updated copyright information.mitchell
2013-12-12More LuaDoc updates.mitchell
2013-10-18The buffer API applies to all buffers now, not just the global one.mitchell
Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`.
2013-10-18More LuaDoc updates.mitchell
2013-09-16Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.mitchell
Also removed more unused constants.
2013-09-06Updated LuaDoc.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-01Updated parameter LuaDoc.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-10-23Fixed LuaDoc; core/.view.luadocmitchell
2012-09-12Documentation overhaul.mitchell
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-12Create separate LuaDoc for module table fields.mitchell
2012-01-06Updated copyright information.mitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-25Refactored textadept.c and changed Lua interface a bit.mitchell
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense.