minimal extui fuzzy finder for neovim

fix(view): adapt `win.hidestatusline` in `win_config`

+5 -1
+5 -1
lua/artio/view.lua
··· 159 159 elseif vim.api.nvim_win_get_height(win) ~= height then 160 160 vim.api.nvim_win_set_height(win, height) 161 161 end 162 + 163 + if not hide and self.picker.win.hidestatusline then 164 + height = 0 165 + end 166 + 162 167 if vim.o.cmdheight ~= height then 163 168 -- Avoid moving the cursor with 'splitkeep' = "screen", and altering the user 164 169 -- configured value with noautocmd. ··· 203 208 autocomplete = false, 204 209 }, 205 210 g = { 206 - laststatus = self.picker.win.hidestatusline and 0 or nil, 207 211 showmode = false, 208 212 showcmd = false, 209 213 },