I found a problem with chaining function calls through the new
dictionary functions. Here is some code demonstrate the problem, if you
execute this code, the last line generates an E488 error, where as the
previous lines combines (they are equivalent) works fine.

let tt = {}
function! tt.TT()
  echomsg 'This is TT'
endfunction

let t = {'tt': tt}
function t.T()
  return self.tt
endfunction

let tmptt = t.T()
call tmptt.TT()
call t.T().TT()

-- 
Thanks,
Hari

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to