-
使用 |
Beta Was this translation helpful? Give feedback.
Answered by
nshen
Dec 27, 2022
Replies: 3 comments 2 replies
-
insisvim好像没这个问题,不记得有改过哪里,你是用v2分支吗 Kapture.2022-12-26.at.11.03.25.mp4 |
Beta Was this translation helpful? Give feedback.
1 reply
-
我对比了InsisVim/lua/insis/basic.lua,发现关于搜索的基础配置都一样啊 -- 搜索大小写不敏感,除非包含大写
vim.o.ignorecase = true
vim.o.smartcase = true
-- 搜索不要高亮
vim.o.hlsearch = false
-- 边输入边搜索
vim.o.incsearch = true 请问在哪里设置搜索高亮? |
Beta Was this translation helpful? Give feedback.
0 replies
-
可能是哪个组件覆盖了这些值吧,把这段加上试试呢?其他没有印象哪里修改过了 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
uxfion
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
可能是哪个组件覆盖了这些值吧,把这段加上试试呢?其他没有印象哪里修改过了
https://github.com/nshen/InsisVim/blob/990ba1c89effe98753ace29d70de17f2edf216c5/lua/insis/autocmds.lua#L66-L71