aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--docs/api.md19
-rw-r--r--docs/changelog.md6
-rw-r--r--modules/lua/ta_api4
3 files changed, 12 insertions, 17 deletions
diff --git a/docs/api.md b/docs/api.md
index e6ae4f29..efb66e14 100644
--- a/docs/api.md
+++ b/docs/api.md
@@ -631,9 +631,8 @@ While you can work with individual buffer instances, it is really only useful
to work with the global one.
Many of these functions and fields are derived from buffer-specific
functionality of the Scintilla editing component, and additional information
-can be found on the Scintilla website:
-[https://scintilla.org/ScintillaDoc.html](
-https://scintilla.org/ScintillaDoc.html).
+can be found on the
+[Scintilla website](https://scintilla.org/ScintillaDoc.html).
Note that with regard to Scintilla-specific functionality, this API is a
_suggestion_, not a hard requirement. All of that functionality also exists
in [`view`](#view), even if undocumented.
@@ -5215,9 +5214,8 @@ Put your lexer in your *~/.textadept/lexers/* directory so you do not
overwrite it when upgrading Textadept. Also, lexers in this directory
override default lexers. Thus, Textadept loads a user *lua* lexer instead of
the default *lua* lexer. This is convenient for tweaking a default lexer to
-your liking. Then add a [file type][] for your lexer if necessary.
-
-[file type]: textadept.file_types.html
+your liking. Then add a [file type](#textadept.file_types) for your lexer if
+necessary.
#### SciTE
@@ -7171,7 +7169,7 @@ number.
---
Compile and run source code files with Textadept.
-[Language modules](#_M.Compile.and.Run) may tweak the `compile_commands`,
+[Language modules](#compile-and-run) may tweak the `compile_commands`,
`run_commands`, and `error_patterns` tables for particular languages.
The user may tweak `build_commands` for particular projects.
@@ -8904,10 +8902,9 @@ Constants are documented in the fields they apply to.
While you can work with individual view instances, it is often useful to work
with just the global one.
Many of these functions and fields are derived from view-specific
-functionality the Scintilla editing component, and additional information can
-be found on the Scintilla website:
-[https://scintilla.org/ScintillaDoc.html](
-https://scintilla.org/ScintillaDoc.html).
+functionality of the Scintilla editing component, and additional information
+can be found on the
+[Scintilla website](https://scintilla.org/ScintillaDoc.html).
Note that with regard to Scintilla-specific functionality, this API is a
_suggestion_, not a hard requirement. All of that functionality also exists
in [`buffer`](#buffer), even if undocumented.
diff --git a/docs/changelog.md b/docs/changelog.md
index 1410b601..211ff870 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -242,7 +242,6 @@ Download:
* [Textadept 10.8 -- Win32][]
* [Textadept 10.8 -- Mac OSX 10.6+][]
* [Textadept 10.8 -- Linux][]
-* [Textadept 10.8 -- Linux x86_64][]
* [Textadept 10.8 -- Modules][]
Bugfixes:
@@ -266,9 +265,8 @@ Changes:
* Updated to [Scintilla][] 3.11.2.
[Textadept 10.8 -- Win32]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.win32.zip
-[Textadept 10.8 -- Mac OSX 10.6+]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.osx.zip
-[Textadept 10.8 -- Linux]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.i386.tgz
-[Textadept 10.8 -- Linux x86_64]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.x86_64.tgz
+[Textadept 10.8 -- Mac OSX 10.6+]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.macOS.zip
+[Textadept 10.8 -- Linux]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.linux.tgz
[Textadept 10.8 -- Modules]: https://github.com/orbitalquark/textadept/releases/download/textadept_10.8/textadept_10.8.modules.zip
[`events.TAB_CLICKED`]: api.html#events.TAB_CLICKED
[Scintilla]: https://scintilla.org
diff --git a/modules/lua/ta_api b/modules/lua/ta_api
index c4ef78b4..cbae5347 100644
--- a/modules/lua/ta_api
+++ b/modules/lua/ta_api
@@ -377,7 +377,7 @@ brace_highlight view.brace_highlight(view, pos1, pos2)\nHighlights the character
brace_highlight_indicator view.brace_highlight_indicator(view, use_indicator, indicator)\nHighlights matching brace characters with indicator number *indicator*, in\nthe range of `1` to `32`, instead of the\n`view.STYLE_BRACELIGHT` style if *use_indicator* is `true`.\n@param view A view.\n@param use_indicator Whether or not to use an indicator.\n@param indicator The indicator number to use.
brace_match buffer.brace_match(buffer, pos, max_re_style)\nReturns the position of the matching brace for the brace character at\nposition *pos*, taking nested braces into account, or `-1`.\nThe brace characters recognized are '(', ')', '[', ']', '{', '}', '<', and\n'>' and must have the same style.\n@param buffer A buffer.\n@param pos The position of the brace in *buffer* to match.\n@param max_re_style Must be `0`. Reserved for expansion.\n@return number
brace_matches textadept.editing.brace_matches (table)\nTable of brace characters to highlight.\nThe ASCII values of brace characters are keys and are assigned non-`nil`\nvalues. The default brace characters are '(', ')', '[', ']', '{', and '}'.
-buffer _G.buffer (module)\nA Textadept buffer object.\nConstants are documented in the fields they apply to.\nWhile you can work with individual buffer instances, it is really only useful\nto work with the global one.\nMany of these functions and fields are derived from buffer-specific\nfunctionality of the Scintilla editing component, and additional information\ncan be found on the Scintilla website:\nhttps://scintilla.org/ScintillaDoc.html.\nNote that with regard to Scintilla-specific functionality, this API is a\n_suggestion_, not a hard requirement. All of that functionality also exists\nin `view`, even if undocumented.\nAny buffer fields set on startup (e.g. in *~/.textadept/init.lua*) will be\nthe default, initial values for all buffers.
+buffer _G.buffer (module)\nA Textadept buffer object.\nConstants are documented in the fields they apply to.\nWhile you can work with individual buffer instances, it is really only useful\nto work with the global one.\nMany of these functions and fields are derived from buffer-specific\nfunctionality of the Scintilla editing component, and additional information\ncan be found on the\nScintilla website.\nNote that with regard to Scintilla-specific functionality, this API is a\n_suggestion_, not a hard requirement. All of that functionality also exists\nin `view`, even if undocumented.\nAny buffer fields set on startup (e.g. in *~/.textadept/init.lua*) will be\nthe default, initial values for all buffers.
buffer _G.buffer (table)\nThe current buffer in the current view.
buffer view.buffer (table)\nThe buffer the view currently contains. (Read-only)
buffer_statusbar_text ui.buffer_statusbar_text (string, Write-only)\nThe text displayed in the buffer statusbar.
@@ -960,7 +960,7 @@ vc_home_rect_extend buffer.vc_home_rect_extend(buffer)\nLike `buffer.vc_home()`,
vc_home_wrap buffer.vc_home_wrap(buffer)\nMoves the caret to the first visible character on the current wrapped line\nor, if already there, to the beginning of the actual line.\n@param buffer A buffer.
vc_home_wrap_extend buffer.vc_home_wrap_extend(buffer)\nLike `buffer.vc_home_wrap()`, but extends the selected text to the new\nposition.\n@param buffer A buffer.
vertical_center_caret view.vertical_center_caret(view)\nCenters current line in the view.\n@param view A view.
-view _G.view (module)\nA Textadept view object.\nConstants are documented in the fields they apply to.\nWhile you can work with individual view instances, it is often useful to work\nwith just the global one.\nMany of these functions and fields are derived from view-specific\nfunctionality the Scintilla editing component, and additional information can\nbe found on the Scintilla website:\nhttps://scintilla.org/ScintillaDoc.html.\nNote that with regard to Scintilla-specific functionality, this API is a\n_suggestion_, not a hard requirement. All of that functionality also exists\nin `buffer`, even if undocumented.\nAny view fields set on startup (e.g. in *~/.textadept/init.lua*) will be the\ndefault, initial values for all views.
+view _G.view (module)\nA Textadept view object.\nConstants are documented in the fields they apply to.\nWhile you can work with individual view instances, it is often useful to work\nwith just the global one.\nMany of these functions and fields are derived from view-specific\nfunctionality of the Scintilla editing component, and additional information\ncan be found on the\nScintilla website.\nNote that with regard to Scintilla-specific functionality, this API is a\n_suggestion_, not a hard requirement. All of that functionality also exists\nin `buffer`, even if undocumented.\nAny view fields set on startup (e.g. in *~/.textadept/init.lua*) will be the\ndefault, initial values for all views.
view _G.view (table)\nThe current view.
view_eol view.view_eol (bool)\nDisplay end of line characters.\nThe default value is `false`.
view_ws view.view_ws (number)\nThe whitespace visibility mode.\n\n* `view.WS_INVISIBLE`\n Whitespace is invisible.\n* `view.WS_VISIBLEALWAYS`\n Display all space characters as dots and tab characters as arrows.\n* `view.WS_VISIBLEAFTERINDENT`\n Display only non-indentation spaces and tabs as dots and arrows.\n* `view.WS_VISIBLEONLYININDENT`\n Display only indentation spaces and tabs as dots and arrows.\n\nThe default value is `view.WS_INVISIBLE`.