aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.view.luadoc
Commit message (Collapse)AuthorAge
* Updated copyright year.Gravatar mitchell2022-01-31
|
* Updated to Scintilla 5.1.3.Gravatar mitchell2021-09-30
| | | | There is a crash on the Gtk platform that has been temporarily patched until a fix is released.
* Updated to Scintilla 5.1.0.Gravatar mitchell2021-06-27
|
* Updated Lua autocompletion and documentation.Gravatar mitchell2021-06-11
|
* 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.
* Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm.Gravatar mitchell2021-04-13
| | | | Some of the Scintilla API has changed, and by extension the Scintillua API.
* Initial pass reformatting all code.Gravatar mitchell2021-04-11
| | | | Use clang-format, LuaFormatter, and 100 character limit on lines.
* Updated LuaDoc.Gravatar mitchell2020-11-30
|
* Updated LuaDoc.Gravatar mitchell2020-10-11
|
* Updated Lua autocompletion and documentation.Gravatar mitchell2020-09-30
|
* Updated copyright information.Gravatar mitchell2020-09-29
|
* Updated to Scintilla 4.4.5 and Scintillua 4.4.5-1.Gravatar mitchell2020-09-19
|
* More small documentation updates.Gravatar mitchell2020-09-14
|
* Updated some documentation and use macOS instead of Mac OSX.Gravatar mitchell2020-08-17
|
* Updated LuaDoc.Gravatar mitchell2020-08-04
|
* Updated to Scintilla 3.21.0.Gravatar mitchell2020-07-27
|
* Updated to latest Scintilla for new `lexer.fold*` API.Gravatar mitchell2020-07-18
| | | | This replaces the need for `view.property['fold*'] = ...`
* Minor LuaDoc updates and spelling corrections.Gravatar mitchell2020-07-16
|
* 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.
* Fixed LuaDoc.Gravatar mitchell2020-06-25
|
* 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.
* 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.
* 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.
* Updated copyright year.Gravatar mitchell2018-01-25
|
* Updated copyright information.Gravatar mitchell2016-12-31
|
* Changed arguments to `ui.goto_view()` and `view:goto_buffer()`.Gravatar mitchell2016-06-16
| | | | | They can accept either objects or relative numbers now. They do not accept absolute indices anymore.
* Updated copyright date.Gravatar mitchell2015-12-31
|
* Updated copyright year.Gravatar mitchell2014-12-31
|
* Condensed manual and API documentation into single files.Gravatar mitchell2014-06-30
|
* Updated copyright information.Gravatar mitchell2014-01-12
|
* More LuaDoc updates.Gravatar mitchell2013-12-12
|
* The buffer API applies to all buffers now, not just the global one.Gravatar mitchell2013-10-18
| | | | | | Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`.
* More LuaDoc updates.Gravatar mitchell2013-10-18
|
* Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.Gravatar mitchell2013-09-16
| | | | Also removed more unused constants.
* Updated LuaDoc.Gravatar mitchell2013-09-06
|
* Updated copyright date.Gravatar mitchell2013-01-20
|
* Updated parameter LuaDoc.Gravatar mitchell2012-12-01
|
* Rewrote LuaDoc.Gravatar mitchell2012-11-19
|
* Fixed LuaDoc; core/.view.luadocGravatar mitchell2012-10-23
|
* Documentation overhaul.Gravatar mitchell2012-09-12
| | | | | Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
* Moved "Markdown:" comments into module LuaDoc comments.Gravatar mitchell2012-03-16
|
* Updated contact email address.Gravatar mitchell2012-03-07
|
* Update LuaDoc with new formatting.Gravatar mitchell2012-02-10
|
* Create separate LuaDoc for module table fields.Gravatar mitchell2012-01-12
|
* Updated copyright information.Gravatar mitchell2012-01-06
|
* Reformatted some LuaDoc.Gravatar mitchell2011-09-27
|
* Refactored textadept.c and changed Lua interface a bit.Gravatar mitchell2011-09-25
| | | | | | | | '_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.