freddiehaddad / feline.nvim

A minimal, stylish and customizable statusline, statuscolumn, and winbar for Neovim
GNU General Public License v3.0
289 stars 8 forks source link

fix(provider[search-count]): Use pcall when querying search count (#92) #93

Closed freddiehaddad closed 2 months ago

freddiehaddad commented 2 months ago

Calling vim.fn.searchcount can fail resulting in a Vim:E54 error. The solution is to use a protected call and check for success.

Fixes (#92)