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
According to :help Dictionaries
for pkey in keys(config#GetG('tovl#plugins#loaded')
...
endfor
:help keys()
c
--
\black\trash movie _C O W B O Y_ _C A N O E_ _C O M A_
Ein deutscher Western/A German Western
-->> http://www.blacktrash.org/underdogma/ccc.html
-->> http://www.blacktrash.org/underdogma/ccc-en.html
Sorry, typo. Of course I know about keys(). But I still have to get the
value myself then..
Marc