## How to reproduce the problem from neovim/Vim startup (Required!)
1. `call ddu#start({})`
2. You can already see that it's not a tree.
## Screenshot (if possible)
![image](https://github.com/Shougo/ddu.vim/assets/82267684/7c3cee10-b6e1-4a16-bb7e-2d42bd37d3d7)
## Upload the log messages by `:redir` and `:message` (if errored)
Problems summary
I would like to expand items from the beginning, but it doesn't work.
Expected
The tree structure is displayed correctly.
Environment Information
ddu.vim version (SHA1): 426c150ccc038ef76f5f7220d6fd6f066377672c
denops.vim version (SHA1): 3b489d50ba2e034c829a09475a4002176bffbef7
deno version(
deno -V
output): deno 1.34.1OS: Ubuntu 22.04 (WSL2)
neovim/Vim
:version
output: NVIM v0.10.0-dev-0370e4dProvide a minimal init.vim/vimrc without plugin managers (Required!)
And place this source under
stdpath('config')
.type Params = Record<never, never>;
export class Source extends BaseSource {
kind = "file";
gather(): ReadableStream<Item[]> {
return new ReadableStream({
start(controller) {
controller.enqueue([
{
word: "foo",
isTree: true,
treePath: "/foo",
isExpanded: true,
},
{
word: "bar",
isTree: false,
treePath: "/foo/bar",
},
]);
controller.close();
},
});
}
params(): Params { return {}; } }