Does vimscript prodive something like this?
Right now I keep writing this instead:

let loaded = config#GetG('tovl#plugins#loaded')
for pkey in loaded
  let value = loaded[key]
  " ....
endfor

which is much more verbose than something like PHP can do

for pkey : value in config#GetG('tovl#plugins#loaded')
   ....
endfor

(PHP is using => isntead of :. But : feel more natural because you
construct dicts this way)

Marc

--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to