I have just created a very basic first neovim plugin ( decorated yank ).
I’d like to extend it to include a repository link, which I’d normally do with vim-fugitives :GitBrowse!.
Is there a way for my plugin to call GitBrowse! from the vim-fugitive plugin, so I can get the link without needing to replicate all of the work of that plugin?
I did try that but calling the underlying fugitive#BrowseCommand doesn’t seem to work. print(vim.fn.exists("*fugitive#BrowseCommand")) returns 0 which indicates it isn’t callable, right?