vim-rhubarb


Ⅰ. 插件描述

rhubarb.vim: GitHub extension for fugitive.vim

Ⅱ. 基本信息

创建日期:  2011-08-27
使用用户:  137
Github星:  424
插件作者:  Tim Pope

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'tpope/vim-rhubarb'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'tpope/vim-rhubarb'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'tpope/vim-rhubarb'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/tpope/vim-rhubarb

Ⅳ. 文档说明

# rhubarb.vim

If [fugitive.vim][] is the Git, rhubarb.vim is the Hub. Here's the full list
of features:

  • Enables :Gbrowse from fugitive.vim to open GitHub URLs.
  • Sets up :Git to use hub if installed
    rather than git.
  • In commit messages, GitHub issues, issue URLs, and collaborators can be
    omni-completed (<C-X><C-O>, see :help compl-omni). This makes inserting

those Closes #123 remarks slightly easier than copying and pasting from
the browser.

Installation

If you don't have a preferred installation method, I recommend
installing pathogen.vim, and
then simply copy and paste:

cd ~/.vim/bundle
git clone https://github.com/tpope/vim-rhubarb.git
vim -u NONE -c "helptags vim-rhubarb/doc" -c q

You'll also need [fugitive.vim][].

Curl (included with macOS) is required for features
that use the GitHub API (i.e., :Gbrowse doesn't need it).
Generate a personal access token
with repo permissions and add it to your .netrc:

echo 'machine api.github.com login <user> password <token>' >> ~/.netrc

If you are using GitHub Enterprise, repeat this step for each domain (omit the
api. portion). You'll also need to tell Rhubarb the root URLs:

let g:github_enterprise_urls = ['https://example.com']

FAQ

How do I turn off that preview window that shows the issue body?

set completeopt-=preview

Self-Promotion

Like rhubarb.vim? Follow the repository on
GitHub. And if
you're feeling especially charitable, follow tpope on
Twitter and
GitHub.

License

Copyright (c) Tim Pope. Distributed under the same terms as Vim itself.
See :help license.

添加新评论