diff options
| author | mitchell <unknown> | 2020-06-10 16:56:06 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2020-06-10 16:56:06 -0400 |
| commit | 32fdfb4248417b52716e0d9954f6fafeb5ae84c3 (patch) | |
| tree | 208ff5139fb52a938ef90544b08ca9bee078d8ed /lexlua/lexer.lua | |
| parent | 9ce56e4e8cda669956ad1c127671322008ff0d0a (diff) | |
| download | scintilla-mirror-32fdfb4248417b52716e0d9954f6fafeb5ae84c3.tar.gz | |
Support American English "changable" style setting in LexerLPeg.
Diffstat (limited to 'lexlua/lexer.lua')
| -rw-r--r-- | lexlua/lexer.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lexlua/lexer.lua b/lexlua/lexer.lua index d133eb11d..16b1b94c7 100644 --- a/lexlua/lexer.lua +++ b/lexlua/lexer.lua @@ -335,7 +335,7 @@ local M = {} -- [not]eolfilled | Does the background color extend to the end of the line? -- case:_char_ | The case of the font ('u': upper, 'l': lower, 'm': normal). -- [not]visible | Whether or not the text is visible. --- [not]changeable| Whether the text is changeable or read-only. +-- [not]changable | Whether the text is changable or read-only. -- -- Specify font colors in either "#RRGGBB" format, "0xBBGGRR" format, or the -- decimal equivalent of the latter. As with token names, LPeg patterns, and @@ -844,7 +844,7 @@ local M = {} -- @field STYLE_INDENTGUIDE (string) -- The style used for indentation guides. -- @field STYLE_CALLTIP (string) --- The style used by call tips if [`buffer.call_tip_use_style`]() is set. +-- The style used by call tips if [`view.call_tip_use_style`]() is set. -- Only the font name, size, and color attributes are used. -- @field STYLE_FOLDDISPLAYTEXT (string) -- The style used for fold display text. @@ -1051,7 +1051,7 @@ end -- * `case:char`: Font case ('u' for uppercase, 'l' for lowercase, and 'm' for -- mixed case). -- * `visible` or `notvisible`: Whether or not the text is visible. --- * `changeable` or `notchangeable`: Whether or not the text is changeable or +-- * `changable` or `notchangable`: Whether or not the text is changable or -- read-only. -- -- Property settings may also contain "$(property.name)" expansions for |
