From b1605586b4635d60d5ccf4283a7268db5d1b99fe Mon Sep 17 00:00:00 2001
From: mitchell <70453897+667e-11@users.noreply.github.com>
Date: Mon, 3 Aug 2020 18:59:42 -0400
Subject: Updated to latest Scintilla hg to get
`lexer.fold_consecutive_lines()`.
---
doc/manual.md | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
(limited to 'doc/manual.md')
diff --git a/doc/manual.md b/doc/manual.md
index 44354113..729339ca 100644
--- a/doc/manual.md
+++ b/doc/manual.md
@@ -2068,6 +2068,7 @@ MODE |Renamed |[mode][]
N/A |Added |[to_eol()][]
delimited\_range() |Replaced|[range()][]
nested\_pair() |Replaced|[range()][]
+fold\_line\_comments() |Replaced|[fold_consecutive_lines()][]a
N/A |Added |[number][]
N/A |Added |[colors][]
N/A |Added |[styles][]
@@ -2080,9 +2081,9 @@ toggle(line, on) |Changed |[toggle()][]
block\_comment() |Renamed |[toggle_comment()][]
highlight_word() |Replaced|[highlight_words][]
**textadept.file_types** | |
-lexers |Removed |N/Aa
+lexers |Removed |N/Ab
**textadept.find** | |
-find\_incremental() |Replaced|[incremental][]b
+find\_incremental() |Replaced|[incremental][]c
find\_incremental\_keys |Removed |
N/A |Added |[highlight_all_matches][]
**textadept.snippets** | |
@@ -2098,11 +2099,12 @@ N/A |Added |[progressbar()][]
**ui.find** | |
find\_in\_files\_timeout |Removed |N/A
**view** | |
-N/A |Added |_buffer functions and fields_c
+N/A |Added |_buffer functions and fields_d
-aUse `for name in buffer:private_lexer_call(_SCINTILLA.functions.property_names[1]):gmatch('[^\n]+') do ... end`.
-bUse `textadept.menu.menubar[_L['Search']][_L['Find Incremental']][2]`.
-cMost buffer functions and fields are available in views now. See
+aReturns prefix and function, instead of just function.
+bUse `for name in buffer:private_lexer_call(_SCINTILLA.functions.property_names[1]):gmatch('[^\n]+') do ... end`.
+cUse `textadept.menu.menubar[_L['Search']][_L['Find Incremental']][2]`.
+dMost buffer functions and fields are available in views now. See
section below.
[view:set_theme()]: api.html#view.set_theme
@@ -2116,6 +2118,7 @@ section below.
[mode]: api.html#keys.mode
[to_eol()]: api.html#lexer.to_eol
[range()]: api.html#lexer.range
+[fold_consecutive_lines()]: api.html#lexer.fold_consecutive_lines
[number]: api.html#lexer.number
[colors]: api.html#lexer.colors
[styles]: api.html#lexer.styles
@@ -2251,7 +2254,7 @@ examples.
#### Key Bindings Changes
-Key binding modifiers have changed from their shortened form to a longer form
+Key sequence modifiers have changed from their shortened form to a longer form
that is more intuitive. `'c'` is now `'ctrl'`, `'a'` is now `'alt'`, `'m'` is
now `'cmd'` on macOS and `'meta'` in the terminal version, and `'s'` is now
`'shift'`. For example, `keys.cn = ...` is now `keys['ctrl+n'] = ...` and
--
cgit v1.2.3