RootIgnore


Ⅰ. 插件描述

Set wildignore from git repo root

Ⅱ. 基本信息

创建日期:  2014-11-03
使用用户:  3274
Github星:  34
插件作者:  Pine Wu

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

# RootIgnore

Set 'wildignore' from git repo root or home folder

Usage

This plugin is designed to complement CtrlP & Command-T by automatically
filtering search results according to .gitignore in your project, and
the global ~/.gitignore.

There is a script by
Adam Bellaire, but it doesn't respect .gitignore when you are in a subfolder
of your project.

Install

Vundle

plugin 'octref/RootIgnore'

Option

let g:RootIgnoreUseHome = 1
(Default: 1)

Add patterns in ~/.gitignore to wildignore.

let g:RootIgnoreAgignore = 1
(Default: 0)

Requirement: ag
Let RootIgnore set ctrlp's g:ctrlp_user_command to use ag for
faster search.

===

Setting

CtrlP

" As long as it doesn't contain 'r' it's fine
let g:ctrlp_working_path_mode = '0'

Command-T

let g:CommandTTraverseSCM = 'pwd'
" If you want to add your own ignore pattern
let g:CommandTWildIgnore = &wildignore . ',myPattern"

Update

  • 01-16-2018

    • Add regex whitespace ignore so whitespace lines in .gitignore aren't added to wildignore.
  • 08-07-2015

    • Fix a bug for using .gitignore in non-git folder.
  • 07-27-2015

    • If we are not in a git folder, but have a .gitignore in current folder, use its patterns.
  • 03-01-2015

    • Include ~/.gitignore by default
  • 02-04-2015

    • Resolve folder-paths in .gitignore to paths relative to cwd

Credit

Adapted from gitignore
by Adam Bellaire

License

MIT

添加新评论