From 712d99d90d22bef5457454dbc5b015ad18f1d1cb Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 25 Jun 2013 21:56:07 -0400 Subject: [PATCH] add Bf,Cf,Tf commands --- vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vimrc b/vimrc index ea67c90..8b0a7b7 100644 --- a/vimrc +++ b/vimrc @@ -205,6 +205,13 @@ function! PtagSymbolBeforeParen() endif endfunction +"============================================================================== +" Commands +"============================================================================== +command! -nargs=? Bf call FindSymbolInSources(b:project_sources . ' ' . b:test_sources, ) +command! -nargs=? Cf call FindSymbolInSources(b:project_sources, ) +command! -nargs=? Tf call FindSymbolInSources(b:test_sources, ) + "============================================================================== " Machine-local Settings "==============================================================================