We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
externalDocs
Somehow on my nvim install neither vim.fn.jobstart({ 'xdg-open', 'https://github.com' }) nor vim.system({ 'xdg-open', 'https://github.com' }) work.
nvim
vim.fn.jobstart({ 'xdg-open', 'https://github.com' })
vim.system({ 'xdg-open', 'https://github.com' })
xdg-open works perfectly fine run directly from the terminal with a simple xdg-open https://www.google.com.
xdg-open
xdg-open https://www.google.com
I can get it working from nvim as an external command execution with :!xdg-open <url>.
:!xdg-open <url>
I'm not able to understand how to fix this, but I found that the following command works: :call jobstart('xdg-open https://www.github.com')
:call jobstart('xdg-open https://www.github.com')
In order to use the open_url(url) function here, would it be possible to add a case to run that command?
open_url(url)
I find extremely useful the RunLsp externalDocs feature and I'd really like being able to use it.
RunLsp externalDocs
By the way I attach the error I get when I try to run the externalDocs command.
Thanks a lot!
The text was updated successfully, but these errors were encountered:
Hey 👋
Thanks for reporting. That's actually a bug in this plugin - it's using a Neovim function that isn't available in Neovim 0.9 yet. I'll fix that now...
Sorry, something went wrong.
mrcjkb
Successfully merging a pull request may close this issue.
Feature description
Somehow on my
nvim
install neithervim.fn.jobstart({ 'xdg-open', 'https://github.com' })
norvim.system({ 'xdg-open', 'https://github.com' })
work.xdg-open
works perfectly fine run directly from the terminal with a simplexdg-open https://www.google.com
.I can get it working from nvim as an external command execution with
:!xdg-open <url>
.I'm not able to understand how to fix this, but I found that the following command works:
:call jobstart('xdg-open https://www.github.com')
In order to use the
open_url(url)
function here, would it be possible to add a case to run that command?I find extremely useful the
RunLsp externalDocs
feature and I'd really like being able to use it.By the way I attach the error I get when I try to run the
externalDocs
command.Thanks a lot!

The text was updated successfully, but these errors were encountered: