tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
fix(view): offset preview by `hidestatusline`
robinwobin.dev
1 week ago
204a1012
e75cf833
+2
-1
1 changed file
expand all
collapse all
unified
split
lua
artio
view.lua
+2
-1
lua/artio/view.lua
···
767
767
col = 0,
768
768
row = vim.o.lines
769
769
- (self.win.height + cmdheight)
770
770
-
- ((vim.o.winborder == "none" or vim.o.winborder == "") and 0 or 2),
770
770
+
- ((vim.o.winborder == "none" or vim.o.winborder == "") and 0 or 2)
771
771
+
- (self.picker.win.hidestatusline and 0 or 1),
771
772
}, previewopts or {})
772
773
end
773
774