aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2016-08-29 12:19:37 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2016-08-29 12:19:37 -0400
commite40d61789e41c0f5ab2951bae2e74c2cfcf7af67 (patch)
tree5c94dc75264f67cd1973f13796fe037db0bc81d5 /core
parentffb0f99b7ba6032d3a5c90dfd10ccffe9941dbfa (diff)
downloadtextadept-e40d61789e41c0f5ab2951bae2e74c2cfcf7af67.tar.gz
textadept-e40d61789e41c0f5ab2951bae2e74c2cfcf7af67.zip
Small LuaDoc update; core/.buffer.luadoc
Diffstat (limited to 'core')
-rw-r--r--core/.buffer.luadoc31
1 files changed, 0 insertions, 31 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc
index fd6a7ffd..28e38bcc 100644
--- a/core/.buffer.luadoc
+++ b/core/.buffer.luadoc
@@ -643,37 +643,6 @@
-- Interpret search text as a regular expression.
--
-- The default value is `0`.
---
--- Regular expression characters recognized are:
---
--- * `.`
--- Matches any character.
--- * `[set]`
--- Matches any character in *set*, including ranges (e.g. `[A-Za-z]`).
--- * `[^set]`
--- Matches the complement of *set*.
--- * `*`
--- Matches zero or more of the previous match.
--- * `+`
--- Matches one or more of the previous match.
--- * `\<`
--- Matches the beginning of a word.
--- * `\>`
--- Matches the end of a word.
--- * `^`
--- Matches the start of a line unless inside a set.
--- * `$`
--- Matches the end of a line unless inside a set.
--- * `(`
--- The beginning of a tagged matching region.
--- * `)`
--- The end of a tagged matching region.
--- * `\n`
--- The matched text of the *n*th tagged region. In replacement text, "\0" is
--- all matched text.
--- * `\x`
--- Represents character *x*, ignoring any special meaning it may have by
--- itself.
-- @field sel_alpha (number)
-- The selection's alpha value, ranging from `0` (transparent) to `255`
-- (opaque).