Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In vim, I want to do something like so

function! ModuleFile()
  let $module = input("Module of file> ")
  :e **/${module}_
endfunction
map <Leader>e :call ModuleFile()<CR>

What I expect is that for example, if I type for the module "ABC", I would get this commandline in vim:

:e **/ABC_

and then subsequently typing new text, like "name_of_file", would get me:

:e **/ABC_name_of_file

and finally pressing Enter would execute the command. The point of this is to be able to get tab completions.

share|improve this question
Uhmm, what is "Module of file" and what is that function supposed to do exactly? – ldigas Feb 7 '12 at 0:36

1 Answer

up vote 1 down vote accepted

No need for sigils in vim script, ${...} or $var is for environment variables.

function! ModuleFile()
  let module = input("Module of file> ")
  let name   = input("Search pattern> ")
  execute 'args **/' . module . '_' . name
endfunction
map <Leader>e :call ModuleFile()<CR>

After your comment what you want is probably:

map <leader>e :args **/<c-r>=input("Module of file: ") . '_' . input("Search pattern: ")<cr>
share|improve this answer
I want it to leave me at the commmand line. So after pressing <Leader>e, then for example ABC for module and Graphics for search pattern, and then afterwords typing "abcdefg<CR>", I want the following to execute: :e **/ABC_Graphicsabcdefg – solinent Feb 21 '12 at 21:09
@solinent: answered. Should meet your criteria. – Benoit Feb 21 '12 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.