You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local callback = function()
|
|
local url = require('.url')
|
|
url.open_url()
|
|
end
|
|
|
|
vim.api.nvim_create_user_command(
|
|
"UrlOpen",
|
|
callback,
|
|
{
|
|
nargs = 0,
|
|
desc = "Open a URL in the default browser",
|
|
}
|
|
)
|