Re: how to deal with a space in a directory path in vim

2010-08-09 Thread Ted
It might be more straightforward to set the setting using let, eg :let path = 'C:\my\ projects/...' I tried a simpler such path containing a space under linux and `:find` was able to find a file there. Cheers -Ted On Aug 9, 11:26 pm, Tony Mechelynck antoine.mechely...@gmail.com wrote: On

how to deal with a space in a directory path in vim

2010-08-06 Thread Jeri Raye
Hi, I would like add a path in a setting for example: set tags=c:\my projects\test\tags (notice the space char between my and projects) Can this be done into vim? Rgds, Jeri -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are

Re: how to deal with a space in a directory path in vim

2010-08-06 Thread David Fishburn
On 8/6/2010 2:00 PM, Jeri Raye wrote: Hi, I would like add a path in a setting for example: set tags=c:\my projects\test\tags (notice the space char between my and projects) Should be: set tags=c:\my\ projects\test\tags But I haven't tried it. Dave -- You received this message from

Re: how to deal with a space in a directory path in vim

2010-08-06 Thread just
2010/8/7 Jeri Raye jeri.r...@gmail.com Hi, I would like add a path in a setting for example: set tags=c:\my projects\test\tags (notice the space char between my and projects) You can use the two methods to setting 1set tags=c:\my projects\test\tags 2set tags=c:\my~1\test\tags -- You