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 19:44:20 -07:00
committed by GitHub
parent d247086b21
commit f67abd2943
5 changed files with 127 additions and 22 deletions
+3 -1
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
}
}
```