diff options
author | 2009-07-25 23:34:13 -0400 | |
---|---|---|
committer | 2009-07-25 23:34:13 -0400 | |
commit | 033416a15fe60fe10387119e0e63bb9ed9e8aedd (patch) | |
tree | 31bc4d91e15b484c336eadf25c0008f7bd17facc /modules/textadept/mlines.lua | |
parent | b9e5e58446c95344b550c0a6ab91aa57ee9468ef (diff) | |
download | textadept-033416a15fe60fe10387119e0e63bb9ed9e8aedd.tar.gz textadept-033416a15fe60fe10387119e0e63bb9ed9e8aedd.zip |
Documentation overhaul.
Diffstat (limited to 'modules/textadept/mlines.lua')
-rw-r--r-- | modules/textadept/mlines.lua | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/modules/textadept/mlines.lua b/modules/textadept/mlines.lua index daddf4b5..6d4d866b 100644 --- a/modules/textadept/mlines.lua +++ b/modules/textadept/mlines.lua @@ -5,21 +5,25 @@ local locale = _G.locale --- -- Multiple line editing for the textadept module. --- There are several option variables used: --- MARK_MLINE: The integer mark used to identify an MLine marked line. --- MARK_MLINE_COLOR: The Scintilla color used for an MLine marked line. module('_m.textadept.mlines', package.seeall) --- options -local MARK_MLINE = 2 -local MARK_MLINE_COLOR = 0x4D994D --- end options +-- Markdown: +-- ## Settings +-- +-- * `MARK_MLINE`: The unique integer mark used to identify an MLine marked +-- line. +-- * `MARK_MLINE_COLOR`: The [Scintilla color][scintilla_color] used for an +-- MLine marked line. +-- +-- [scintilla_color]: http://scintilla.org/ScintillaDoc.html#colour ---- --- [Local table] Contains all MLine marked lines with the column index to edit --- with respect to for each specific line. --- @class table --- @name mlines +-- settings +MARK_MLINE = 2 +MARK_MLINE_COLOR = 0x4D994D +-- end settings + +-- Contains all MLine marked lines with the column index to edit with respect to +-- for each specific line. local mlines = {} local mlines_most_recent |