Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 896 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 896 Bytes

plug-open.vim

Augments vim-plug to easily interact with the source of installed plugins.

Installation

Install using your plugin manager of choice (e.g. Plug 'NickTomlin/plug-open.vim').

Usage

plug-open defines PlugOpen and PlugOpenRemote and PlugHome commands.

" Opens vim in the rails-vim directory (e.g. ~/.vim/plugged/rails-vim)
:PlugOpen rails-vim

" Opens the uri specified for the plugin (if it has one) in your browser of choice (via [`netrw#BrowseX`](https://github.com/eiginn/netrw/blob/master/autoload/netrw.vim#L5035))
:PlugOpenRemote rails-vim

" Opens your plug_home directory
:PlugHome

Both commands support tab completion, so you could, type PlugOpen r and hit <tab> and get a list of matching plugins.

Requirements