gx.nvim
gx.nvim copied to clipboard
detach browser process
Thank you for the awesome plugin. I use surf browser. It launches a new browser on each xdg-open
and plenary throws error 'xdg-open ...' was unable to complete in 5000 ms
. I would like to get rid of this message. Should I maybe somehow modify application entry to detach xdg-open
?
My configuration of the plugin is basically default:
{
"chrishrb/gx.nvim",
keys = { { "gx", "<cmd>Browse<cr>", mode = { "n", "x" } } },
cmd = { "Browse" },
init = function ()
vim.g.netrw_nogx = 1
end,
dependencies = { 'nvim-lua/plenary.nvim' },
opts = {
handler_options = {
search_engine = "https://search.disroot.org/?q=",
},
},
}