/Finder

I love using Vim on Terminal. However if you want to open a file, you have to cd to the correct folder, too slow!!! This searching source will help our to open file correctly with some regex patterns (base on name or content search) [support InvertingMatch]

Primary LanguagePythonThe UnlicenseUnlicense

Finder

migrating from gist ...

This extension I created when I was using Vim as the main IDE

Components

  • main.vim
  • schedule_source/find_and_edit.py

Fjnd by c0nt3nt 0r b9 n@m3

How to user

Implement in console mode

:call Fv('n', '.py$', 'git log test')
" Explain:
"   n                  -> find by name
"   '.py$'             -> part name
"   'git log test'     -> excludes

:call Fh('n', '.py$', 'git log test')
" Explain:
"   c                  -> find by content
"   'def index'        -> content
"   'git log test'     -> excludes