diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2022-05-16 13:30:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 13:30:00 -0600 |
commit | 07ade91f217a0ed307ca87b4391d803ec0ab61cb (patch) | |
tree | 328a3259114ea6fa37e6d5e835f4dabb3b1d2006 | |
parent | b9b5577d6d8e07d1e39020c8fc05f817f2e81c66 (diff) | |
download | rneovim-07ade91f217a0ed307ca87b4391d803ec0ab61cb.tar.gz rneovim-07ade91f217a0ed307ca87b4391d803ec0ab61cb.tar.bz2 rneovim-07ade91f217a0ed307ca87b4391d803ec0ab61cb.zip |
docs: vim.regex is case sensitive by default (#18595)
-rw-r--r-- | runtime/doc/lua.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 0b6b8d05ed..b551552c03 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -690,8 +690,9 @@ matching within a single line. vim.regex({re}) *vim.regex()* Parse the Vim regex {re} and return a regex object. Regexes are - "magic" and case-insensitive by default, regardless of 'magic' and - 'ignorecase'. They can be controlled with flags, see |/magic|. + "magic" and case-sensitive by default, regardless of 'magic' and + 'ignorecase'. They can be controlled with flags, see |/magic| and + |/ignorecase|. Methods on the regex object: |