aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-04-20 13:19:38 +0200
committerbfredl <bjorn.linse@gmail.com>2023-04-27 11:40:00 +0200
commit45bcf8386918bbb475fbe20c48b508aa89ed0624 (patch)
tree772416435a44717c8e42b3d4f59dd85f6ed47bfa /runtime/doc
parent9f0762f1fec2aa23df592dda70124e3cbdb703b7 (diff)
downloadrneovim-45bcf8386918bbb475fbe20c48b508aa89ed0624.tar.gz
rneovim-45bcf8386918bbb475fbe20c48b508aa89ed0624.tar.bz2
rneovim-45bcf8386918bbb475fbe20c48b508aa89ed0624.zip
refactor(build): include lpeg as a library
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/lua.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt
index 9d4272c906..b3be11efdb 100644
--- a/runtime/doc/lua.txt
+++ b/runtime/doc/lua.txt
@@ -649,6 +649,14 @@ regex:match_line({bufnr}, {line_idx} [, {start}, {end}]) *regex:match_line()*
will be relative {start}.
------------------------------------------------------------------------------
+VIM.LPEG *lua-lpeg*
+
+ *vim.lpeg* *vim.re*
+The Lpeg library for parsing expression grammars is being included as
+`vim.lpeg` (https://www.inf.puc-rio.br/~roberto/lpeg/). In addition, its regex-like
+interface is available as `vim.re` (https://www.inf.puc-rio.br/~roberto/lpeg/re.html).
+
+------------------------------------------------------------------------------
VIM.DIFF *lua-diff*
vim.diff({a}, {b}, {opts}) *vim.diff()*