Saturday, March 11, 2017

Re: Automatically prefixing argument to :find with *

On 3/11/2017 7:48 AM, 'Suresh Govindachar' via vim_use wrote:
> 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 *.

There is a solution via custom-completion -- see below -- but am
wondering if there might be a simpler one using :find directly:

function! SFC(ArgLead, CmdLine, CursorPos)

let s:myarg = '*' . a:ArgLead . '*'
"either one of the following lines works
"let s:foo = globpath(&path, s:myarg, 0, 1)
let s:foo = split(globpath(&path, s:myarg), "\n")
return s:foo

endfunction

command! -nargs=* -complete=customlist,SFC TestFc :find <args>

--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: