tools/vim

Vim : using fzf in vim - fzf.vim

seul chan 2018. 5. 16. 19:00

Install fzf using homebrew

brew insatll fzf

Installing by vim-plug

github repository is here.

Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf.vim'

and do command :PlugInstall

Install the_silver_searcher

github repository is here

install by brew

brew install the_silver_searcher

Usage

In vim, do commands below

# find files
:Files

# find all (ag, need silver_searcher)
:Ag

# marks
:Marks

See more commands and configurations in github here

'tools > vim' 카테고리의 다른 글

Vim : macro with vim - replay, multiple times  (0) 2018.06.14
Vim : ctrlp.vim open with split buffer (and other ctrlp command)  (0) 2018.05.17
Vim switcing case of characters  (0) 2018.03.05
Vim tab usage  (0) 2018.02.24
Install papercolor in vim  (0) 2018.02.23