neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 07ade91f217a0ed307ca87b4391d803ec0ab61cb
parent b9b5577d6d8e07d1e39020c8fc05f817f2e81c66
Author: Gregory Anders <8965202+gpanders@users.noreply.github.com>
Date:   Mon, 16 May 2022 13:30:00 -0600

docs: vim.regex is case sensitive by default (#18595)


Diffstat:
Mruntime/doc/lua.txt | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 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: