Skip to content

Commit

Permalink
add fuzzy search to vim
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi314 committed Jul 6, 2015
1 parent d50f38e commit 7910d81
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Expand Up @@ -10,3 +10,9 @@
[submodule ".oh-my-zsh"]
path = .oh-my-zsh
url = https://github.com/robbyrussell/oh-my-zsh.git
[submodule ".vim/bundle/incsearch-fuzzy.vim"]
path = .vim/bundle/incsearch-fuzzy.vim
url = https://github.com/haya14busa/incsearch-fuzzy.vim.git
[submodule ".vim/bundle/incsearch.vim"]
path = .vim/bundle/incsearch.vim
url = https://github.com/haya14busa/incsearch.vim.git
1 change: 1 addition & 0 deletions .vim/bundle/incsearch-fuzzy.vim
Submodule incsearch-fuzzy.vim added at e42662
1 change: 1 addition & 0 deletions .vim/bundle/incsearch.vim
Submodule incsearch.vim added at 5b7945
13 changes: 13 additions & 0 deletions .vimrc
Expand Up @@ -34,6 +34,10 @@ Plugin 'gmarik/Vundle.vim'
Plugin 'bling/vim-airline'
Plugin 'shawncplus/skittles_berry'

Plugin 'haya14busa/incsearch.vim'
Plugin 'haya14busa/incsearch-fuzzy.vim'


call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
Expand All @@ -57,3 +61,12 @@ imap <left> <nop>
imap <right> <nop>
colorscheme skittles_berry


" fuzzy search enable
map / <Plug>(incsearch-forward)
map ? <Plug>(incsearch-backward)
map g/ <Plug>(incsearch-stay)
map z/ <Plug>(incsearch-fuzzy-/)
map z? <Plug>(incsearch-fuzzy-?)
map zg/ <Plug>(incsearch-fuzzy-stay)

0 comments on commit 7910d81

Please sign in to comment.