fix: Hopefully fix opening preview window sometime

This commit is contained in:
TJ DeVries
2020-08-28 15:32:39 -04:00
parent 6d54837aa2
commit 9bd53098f8

View File

@@ -76,12 +76,12 @@ keymap["enter"] = function(prompt_bufnr, results_bufnr)
local row = tonumber(sections[2]) local row = tonumber(sections[2])
local col = tonumber(sections[3]) local col = tonumber(sections[3])
vim.cmd(string.format([[bdelete! %s]], prompt_bufnr)) vim.cmd(string.format([[bwipeout! %s]], prompt_bufnr))
a.nvim_set_current_win(picker.original_win_id or 0) a.nvim_set_current_win(picker.original_win_id or 0)
vim.cmd(string.format(":e %s", filename))
local bufnr = vim.fn.bufnr(filename, true) local bufnr = vim.api.nvim_get_current_buf()
a.nvim_set_current_buf(bufnr)
a.nvim_buf_set_option(bufnr, 'buflisted', true) a.nvim_buf_set_option(bufnr, 'buflisted', true)
if row and col then if row and col then
a.nvim_win_set_cursor(0, {row, col}) a.nvim_win_set_cursor(0, {row, col})