You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: rust regression. We were erroneously using cargo rustdoc instead of cargo doc. This was preventing the rust backend from correctly generating the docs on multi crate projects.
deprecated: jsdoc_args, typedoc_args, doxygen_args, godoc_args or rustdoc_args.
new options: jsdoc_cmd, typedoc_cmd, doxygen_cmd, godoc_cmd or rustdoc_cmd.
These new options allow to specify the full command a generator executes by passing a single string. This grant users 100% control of what happens inside dooku.nvim without having to get into the code.
All generators now have the options jsdoc_args, typedoc_args, doxygen_args, godoc_args or rustdoc_args to directly pass arguments to the command to generate docs.
Breaking changes
cargo_rustdoc_args option has been removed in favor of rustdoc_args.
jsdoc_args, typedoc_args, doxygen_args, godoc_args or rustdoc_args are now an array of strings instead of a string.
Better tests
Examples are now complex enough to generate meaningful docs resembling real case scenarios.