nvimdev/dope

Question: How to enable search count

NoirJ0e opened this issue · 5 comments

By default, it appears that neovim will calculate the frequency of search results., e.g:
image

However, while using this template, it appears that the function has been disabled. I attempted to modify opt.shortmess in lua/core/option.lua, but no changes were observed. Through it doesn't bother my daily usage, my curiosity about how to restore this function persists.

the output of set shortmess ? if you want see the search results count. it should not include S

the result is : shortmess=aoOTIcF, same as default in this template

did you config the cmdheight? output of set cmdheight?

i didn't change anything in lua/core/options.lua, the value is 0

i see, i should adjust the cmdheight to make it work, thx 👍