vim-denite-kind-open-browser
is a Kind
for denite.nvim.
This plugin can open denite's candidate that has url
as key by browser.
This plugin depends on:
For dein.vim
call dein#add('Shougo/denite.nvim')
call dein#add('tyru/open-browser.vim')
call dein#add('pocari/vim-denite-kind-open-browser')
You can use this Kind
in your denite Source
in this way.
class Source(Base):
def __init__(self, vim):
super().__init__(vim)
# set 'open_browser' to self.kind
self.kind = 'open_browser'
# ... other codes
- open ... It open Selected candidate by
OpenBrowsser
plugin.