aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 21:26:43 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 21:26:43 -0400
commit095980fbbc1f5f4956afdee2802b87ce45f245e7 (patch)
treef1c214a39b66bd939dde2f7deb26e449f7fe57c9 /doc
parentdbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6 (diff)
Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.
Also removed more unused constants.
Diffstat (limited to 'doc')
-rw-r--r--doc/06_AdeptEditing.md2
-rw-r--r--doc/14_Appendix.md4
-rw-r--r--doc/markdowndoc.lua1
3 files changed, 4 insertions, 3 deletions
diff --git a/doc/06_AdeptEditing.md b/doc/06_AdeptEditing.md
index 6e26f6c9..2176c39a 100644
--- a/doc/06_AdeptEditing.md
+++ b/doc/06_AdeptEditing.md
@@ -45,7 +45,7 @@ characters. The caret also changes to an underline in overwrite mode.
Textadept includes many ways of creating and working with selections. Creating
basic selections entails holding down the "Shift" modifier key while pressing
-the arrow keys, clicking and dragging the mouse over a range of text, or
+the arrow keys, clicking and dragging the mouse cursor over a range of text, or
pressing `Ctrl+A` (`⌘A` | `M-A`) to select all text. Creating more advanced
selections like multiple and rectangular selections requires slightly more
effort, but has powerful uses.
diff --git a/doc/14_Appendix.md b/doc/14_Appendix.md
index 144a8602..666f2228 100644
--- a/doc/14_Appendix.md
+++ b/doc/14_Appendix.md
@@ -120,7 +120,7 @@ non-existant graphics capabilities:
corners.
* Insert mode caret renders improperly.
* When scrolling to the right, long lines overwrite margins.
-* No marker symbols other than `SC_MARK_CHARACTER`.
+* No marker symbols other than `MARK_CHARACTER`.
* No mouse interactions, cursor types, or hotspots.
* Only up to 16 colors recognized: black (`0x000000`), red (`0x800000`), green
(`0x008000`), yellow (`0x808000`), blue (`0x000080`), magenta (`0x800080`),
@@ -179,6 +179,8 @@ N/A |New |[MARK\_ERROR][]
MARK\_ERROR\_BACK |Removed |N/A<sup>c</sup>
**_M.textadept.snapopen** |Removed |N/A
open |Changed |\_G.[io.snapopen()][]<sup>e</sup>
+**_SCINTILLA.constants** | |
+SC\_\* |Renamed |Removed "SC\_" prefix.
**buffer** | |
get\_style\_name(buffer, n) |Renamed |[style\_name][]\[n\]
reload |Renamed |[io.reload\_file][]
diff --git a/doc/markdowndoc.lua b/doc/markdowndoc.lua
index ea1ba26a..e8947784 100644
--- a/doc/markdowndoc.lua
+++ b/doc/markdowndoc.lua
@@ -269,7 +269,6 @@ function M.start(doc)
template.toc = template.toc:gsub('(<a.-)%b()(</a>)', '%1%2') -- strip params
:gsub('<code>([^<]+)</code>', '%1') -- sans serif
:gsub('>rectangular_[%w_]+', '><small%0</small>')
- :gsub('>SC_[%u]+', '><small%0</small>')
:gsub('>_G.(events.[%w_]+)',
'><small>%1</small>')
f = io_open(M.options.output_dir..'/api/'..name..'.html', 'wb')