Skip to content

Commit d8b3b77

Browse files
committed
Fix typo in ignorecase comment
In order to perform a case-sensitive search with ignorecase, the pattern should contain `\C` instead of `/C`.
1 parent 8064bb6 commit d8b3b77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ vim.o.breakindent = true
229229
-- Save undo history
230230
vim.o.undofile = true
231231

232-
-- Case insensitive searching UNLESS /C or capital in search
232+
-- Case-insensitive searching UNLESS \C or capital in search
233233
vim.o.ignorecase = true
234234
vim.o.smartcase = true
235235

0 commit comments

Comments
 (0)