Neovim quick file switcher

fix: Open relative paths with a git_root set

Changed files
+1 -1
lua
javelin
+1 -1
lua/javelin/ui.lua
··· 11 11 local function open_buf(file) 12 12 -- nvim 0.11 only command 13 13 if vim.fn.exists("*isabsolutepath") == 1 then 14 - if not vim.fn.isabsolutepath(file) then 14 + if vim.fn.isabsolutepath(file) == 0 then 15 15 file = data.get_root() .. "/" .. file 16 16 end 17 17 else