diff options
-rw-r--r-- | modules/lua/api | 2 | ||||
-rw-r--r-- | modules/lua/tags | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/modules/lua/api b/modules/lua/api index d06d4a77..74799753 100644 --- a/modules/lua/api +++ b/modules/lua/api @@ -659,7 +659,7 @@ fold lexer.fold(text, start_pos, start_line, start_level)\nFolds the given text. get_fold_level lexer.get_fold_level(line, line_number)\nReturns the fold level for a given line. This level already has\n`SC_FOLDLEVELBASE` added to it, so you do not need to add it yourself.\n@param The line number to get the fold level of.\n get_indent_amount lexer.get_indent_amount(line)\nReturns the indent amount of text for a given line.\n@param The line number to get the indent amount of.\n get_property lexer.get_property(key, default)\nReturns an integer property value for a given key.\n@param The property key.\n@param Optional integer value to return if key is not set.\n -get_style_at lexer.get_style_at(pos)\nReturns the integer style number at a given position.\n@param The position to get the style for.\n +get_style_at lexer.get_style_at(pos)\nReturns the string style name and style number at a given position.\n@param The position to get the style for.\n lex lexer.lex(text, init_style)\nLexes the given text. Called by LexLPeg.cxx; do not call from Lua. If the lexer\nhas a _LEXBYLINE flag set, the text is lexed one line at a time. Otherwise\nthe text is lexed as a whole.\n@param The text to lex.\n@param The current style. Multilang lexers use this to determine which\nlanguage to start lexing in.\n load lexer.load(lexer_name)\nInitializes the specified lexer.\n@param The name of the lexing language.\n nested_pair lexer.nested_pair(start_chars, end_chars, end_optional)\nSimilar to `delimited_range()`, but allows for multi-character\ndelimitters. This is useful for lexers with tokens such as nested block\ncomments. With single-character delimiters, this function is identical to\n`delimited_range(start_chars..end_chars, nil, end_optional, true)`.\n@param The string starting a nested sequence.\n@param The string ending a nested sequence.\n@param Optional flag indicating whether or not an ending delimiter is\noptional or not. If true, the range begun by the start delimiter matches\nuntil an end delimiter or the end of the input is reached.\n@usage local nested_comment = l.nested_pair('/*', '*/', true)\n diff --git a/modules/lua/tags b/modules/lua/tags index e6d89716..1ddbbf62 100644 --- a/modules/lua/tags +++ b/modules/lua/tags @@ -754,6 +754,7 @@ connect _ 0;" f class:events disconnect _ 0;" f class:events emit _ 0;" f class:events notification _ 0;" f class:events +handlers _ 0;" t class:events gui _ 0;" m gui _ 0;" t class:_G gui _ 0;" t |