On 19:18 Sun 10 Feb     , Eric Weir wrote:
> 
> On Feb 10, 2013, at 3:03 PM, Eric Weir wrote:
> 
> > On Feb 10, 2013, at 5:56 AM, Marcin Szamotulski wrote:
> > 
> >> To make a vimball you need to list every file in a single line.
> > 
> > Thanks, Marcin. And I take it with the full path.
> 
> It's not gonna be so easy. Even with a relatively small number of plugins, 
> there's a horrendous number of files to be listed. E.g., every one of my 
> plugins has a .git folder associated with it. The number of files in just one 
> of those is pretty big.
> 
> Or is there a way to get my system---mac or vim---to write the paths to a 
> range of files?
> 
> ------------------------------------------------------------------------------------------
> Eric Weir
> Decatur, GA  USA
> [email protected]

That's what for are scripting languages.  You can use bash, python, perl
or even VimL to do that.  With Vim you can do the following:

set nomore
redir @a
echo globpath('~/.vim', '**')
redir END

Now paste the register a into a new buffer and review the list.  It
should skip all the dot files (like .git, etc).

Best,
Marcin

-- 
-- 
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to