vim-vinegar


Ⅰ. 插件描述

vinegar.vim: Combine with netrw to create a delicious salad dressing

Ⅱ. 基本信息

创建日期:  2013-12-24
使用用户:  1409
Github星:  1549
插件作者:  Tim Pope

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

# vinegar.vim

Split windows and the project drawer go together like oil and vinegar. I
don't mean to say that you can combine them to create a delicious salad

  1. I mean that they don't mix well!
  • Drew Neil

You know what netrw is, right? The built in directory browser? Well,
vinegar.vim enhances netrw, partially in an attempt to mitigate the need for
more disruptive "project drawer" style plugins.

Some of the behaviors added by vinegar.vim would make excellent upstream

  1. Many, the author would probably reject. Others are a bit too wild
  2. even consider.
  • Press - in any buffer to hop up to the directory listing and seek to the
    file you just came from. Keep bouncing to go up, up, up. Having rapid

directory access available changes everything.

  • All that annoying crap at the top is turned off, leaving you with nothing
    but a list of files. This is surprisingly disorienting, but ultimately

very liberating. Press I to toggle until you adapt.

  • The oddly C-biased default sort order is replaced with a sensible application
    of 'suffixes'.
  • File hiding: files are not listed that match with one of the patterns in
    'wildignore'.

If you put let g:netrw_list_hide = '\(^\|\s\s\)\zs\.\S\+'
in your vimrc, vinegar will initialize with dot files hidden.
Press gh to toggle dot file hiding.

  • Press . on a file to pre-populate it at the end of a : command line.
    This is great, for example, to quickly initiate a :grep of the file or

directory under the cursor. There's also !, which starts the line off
with a bang. Type !chmod +x and get :!chmod +x path/to/file.

  • Press y. to yank an absolute path for the file under the cursor.
  • Press ~ to go home.
  • Use Vim's built-in CTRL-^ (CTRL-6) for switching back to the previous
    buffer from the netrw buffer.

Installation

Install using your favourite package manager, or use Vim's built-in package support:

mkdir -p ~/.vim/pack/tpope/start
cd ~/.vim/pack/tpope/start
git clone https://github.com/tpope/vim-vinegar.git

Promotion

Like vinegar.vim? Star the repository on
GitHub and vote for it on
vim.org.

Love vinegar.vim? Follow tpope on
GitHub and
Twitter.

License

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

添加新评论