diff options
author | ilian <ilian@tuta.io> | 2023-06-18 16:20:34 +0200 |
---|---|---|
committer | ilian <ilian@tuta.io> | 2023-06-18 16:25:55 +0200 |
commit | d8b3b774bb642a9bdb2930f2ef0dd09e29a2f00c (patch) | |
tree | fdd707b2f7c413390742f8addb1a427d4fd5bbca | |
parent | 8064bb63c5ec973bcd8e114c2984475a77981465 (diff) |
Fix typo in ignorecase comment
In order to perform a case-sensitive search with ignorecase, the pattern
should contain `\C` instead of `/C`.
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -229,7 +229,7 @@ vim.o.breakindent = true -- Save undo history vim.o.undofile = true --- Case insensitive searching UNLESS /C or capital in search +-- Case-insensitive searching UNLESS \C or capital in search vim.o.ignorecase = true vim.o.smartcase = true |