migrating from gist ...
This extension I created when I was using Vim as the main IDE
- main.vim
- schedule_source/find_and_edit.py
Fjnd by c0nt3nt 0r b9 n@m3
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