Re: :cd 'cdpath'

2014-06-04 Fir de Conversatie Nazri Ramliy
On Thu, May 29, 2014 at 5:52 PM, Dhruva Sagar dhruva.sa...@gmail.com wrote: But surely this should be supported natively, doesn't sound like it would require huge change, would anyone be able to throw some light into why this is the case ? A made a toy patch about 4 years ago for this[1],

:cd 'cdpath'

2014-05-29 Fir de Conversatie Dhruva Sagar
I recently discovered 'cdpath', and noticed VIM is doing a good job at it, except :cd doesn't autocomplete the valid paths from the 'cdpath'. I wrote this script as a hack to work around it : function! s:CdComplete(ArgLead, CmdLine, CursorPos) let pattern = empty(a:ArgLead) ? '*/' : '*' .

Re: :cd 'cdpath'

2014-05-29 Fir de Conversatie glts
On Thursday, May 29, 2014 11:52:29 AM UTC+2, Dhruva Sagar wrote: I recently discovered 'cdpath', and noticed VIM is doing a good job at it, except :cd doesn't autocomplete the valid paths from the 'cdpath'. I wrote this script as a hack to work around it : function! s:CdComplete(ArgLead,

Re: :cd 'cdpath'

2014-05-29 Fir de Conversatie Dhruva Sagar
I am aware of the fact that it's set from $CDPATH and it is doing that correctly. At least in ZSH (which I use), it does complete directory names from the $CDPATH. On Thursday, May 29, 2014 7:50:21 PM UTC+5:30, glts wrote: On Thursday, May 29, 2014 11:52:29 AM UTC+2, Dhruva Sagar wrote: I