Opening files in Vim using Fuzzy Search

前端 未结 4 2050
栀梦
栀梦 2021-01-30 04:01

I\'m looking for a way to make Vim have the ability to open a file by fuzzy-searching its name.

Basically, I want to be able to define a project once, and then have a sh

4条回答
  •  盖世英雄少女心
    2021-01-30 04:40

    CommandT for Vim is very much the comparable feature as in TextMate. My work flow is now

    1) open up MacVim

    2) :cd ~/my_project

    3) (I have this mapped as described in the installation help)

    4) C-v the file to open the file in a vertical split, or CR to open a new horizontal split.

    5) to close the split, use :bd (buffer delete)

    6) to switch to another buffer, I have BufferExplorer installed, so just \be and select

    This workflow is comparable to TextMate, it takes a while to get used to, and I'm still learning.

提交回复
热议问题