" Copyright 2010-2014 Greg Hurrell. All rights reserved. " Licensed under the terms of the BSD 2-clause license. if exists("g:command_t_loaded") || &cp finish endif let g:command_t_loaded = 1 command CommandTBuffer call commandt#CommandTShowBufferFinder() command CommandTJump call commandt#CommandTShowJumpFinder() command CommandTMRU call commandt#CommandTShowMRUFinder() command CommandTTag call commandt#CommandTShowTagFinder() command -nargs=? -complete=dir CommandT call commandt#CommandTShowFileFinder() command CommandTFlush call commandt#CommandTFlush() command CommandTLoad call commandt#CommandTLoad() if !hasmapto(':CommandT') && maparg('t', 'n') == '' silent! nnoremap t :CommandT endif if !hasmapto(':CommandTBuffer') && maparg('b', 'n') == '' silent! nnoremap b :CommandTBuffer endif