我知道如何使用 CtrlP。我输入 ctrl+p,然后我开始写文件名,……等等。但是,...我是一个非常懒惰的开发者。我想直接发送到 CtrlP 当前单词。我知道如何获取当前单词:
let l:currentWord = expand('<cword>')
在 Vim 语言中,... 我如何将 l:currentWord 发送到 CtrlP?
map <F6> :call ComposerKnowWhereCurrentFileIs()<CR>
function! ComposerKnowWhereCurrentFileIs()
let l:currentWord = expand('<cword>')
let l:command = "grep " . l:currentWord . " ../path/to/composer -R | awk '{print $6}' | awk -F\\' '{print $2}'"
let l:commandFileFound = l:command . ' | wc -l'
let l:numberOfResults = system(l:commandFileFound)
if l:numberOfResults == 1
let l:fileName = system(l:command)
let l:openFileCommand = 'tabe /path/to/project' . l:fileName
exec l:openFileCommand
else
echo "Too many files :-( - use CtrlP ;-) "
endif
endfunction