Saturday, March 11, 2017

Re: Automatically prefixing argument to :find with *

On 3/9/2017 9:15 PM, 'Suresh Govindachar' via vim_use wrote:
> Hello,
>
> Most of my uses of :find family of commands involves starting the
> argument with * and hitting tab to get completion.
>
> Would like to avoid the need to explicitly type the prefix *.

Something's wrong in the following attempt:

function! StarFC(ArgLead, CmdLine, CursorPos)

let s:myarg = '*' . a:ArgLead . '*'
let s:foo = globpath(&path, s:myarg )
"echo s:foo
return s:foo

endfunction

command! -nargs=* -complete=custom,StarFC Tryf :find <args>

The echo shows expected results for

:call StarFC("fragment", "foo", 5)

But those results do not show up as matching suggestions for the following:

:Tryf fragment

What's the error?

Thanks,

--Suresh


--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment