gx.nvim icon indicating copy to clipboard operation
gx.nvim copied to clipboard

detach browser process

Open pinbraerts opened this issue 8 months ago • 0 comments

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=",
		},
	},
}

pinbraerts avatar Jun 16 '24 19:06 pinbraerts