Question: How to enable search count
NoirJ0e opened this issue · 5 comments
NoirJ0e commented
By default, it appears that neovim will calculate the frequency of search results., e.g:
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.
glepnir commented
the output of set shortmess
? if you want see the search results count. it should not include S
NoirJ0e commented
the result is : shortmess=aoOTIcF
, same as default in this template
glepnir commented
did you config the cmdheight
? output of set cmdheight?
NoirJ0e commented
i didn't change anything in lua/core/options.lua
, the value is 0
NoirJ0e commented
i see, i should adjust the cmdheight
to make it work, thx 👍