Re: source, runtime and all that

2006-05-26 Thread Eric Arnold
Try expanding it. au SourcePre *.vim echomsg afile= . expand(afile) au SourcePre *.vim let g:sfile = afile On 5/26/06, Zdenek Sekera [EMAIL PROTECTED] wrote: I'd like to before :sourc'ing a file to execute one of my scripts (always the same). I though the autocmd 'SourcePre' event will help

Re: source, runtime and all that

2006-05-26 Thread Eric Arnold
On 5/26/06, Eric Arnold [EMAIL PROTECTED] wrote: Try expanding it. au SourcePre *.vim echomsg afile= . expand(afile) au SourcePre *.vim let @a = afile au SourcePre *.vim let @a = expand(afile ) On 5/26/06, Zdenek Sekera [EMAIL PROTECTED] wrote: I'd like to before :sourc'ing a file to

RE: source, runtime and all that

2006-05-26 Thread Zdenek Sekera
-Original Message- From: Eric Arnold [mailto:[EMAIL PROTECTED] Sent: 26 May 2006 16:07 To: Zdenek Sekera Cc: vim-dev@vim.org Subject: Re: source, runtime and all that On 5/26/06, Eric Arnold [EMAIL PROTECTED] wrote: Try expanding it. au SourcePre *.vim echomsg afile

Re: source, runtime and all that

2006-05-26 Thread Charles E Campbell Jr
Zdenek Sekera wrote: I also thought 'runtime' is somehow equivalent to :source, except it is smart enough to use 'runtimepath'. Using the same test above (':runtime test.vim') I found this does *not* fire up the autocmd while :source does. Is this intentional or can it be considered a bug?

Re: source, runtime and all that

2006-05-26 Thread Eric Arnold
On 5/26/06, Zdenek Sekera [EMAIL PROTECTED] wrote: -Original Message- From: Charles E Campbell Jr [mailto:[EMAIL PROTECTED] Sent: 26 May 2006 16:19 To: Zdenek Sekera Cc: vim-dev@vim.org Subject: Re: source, runtime and all that Zdenek Sekera wrote: I also thought 'runtime