vim: smartcase find option (#9033)

Release Notes:

- Added option `use_smartcase_find` to the vim-mode
This commit is contained in:
Rom Grk 2024-03-07 21:44:20 -05:00 committed by GitHub
parent d247086b21
commit f67abd2943
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 127 additions and 22 deletions

View file

@ -172,7 +172,9 @@ Some vim settings are available to modify the default vim behavior:
// "on_yank": use system clipboard for yank operations
"use_system_clipboard": "always",
// Enable multi-line find for `f` and `t` motions
"use_multiline_find": false
"use_multiline_find": false,
// Enable smartcase find for `f` and `t` motions
"use_smartcase_find": false
}
}
```