From b805b3eb9b8c490ca6b979ba7dafa5e8dba011cb Mon Sep 17 00:00:00 2001 From: Zeioth Date: Fri, 16 Feb 2024 02:48:14 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 831a9e0..0a3ae81 100644 --- a/README.md +++ b/README.md @@ -115,3 +115,7 @@ Or if you prefer run `:DookuGenerate` three times. This is only necessary the fi * **How can I add support for a new language?** On the `backends` directory, copy the file `doxygen.lua`, and and use it as base to add your new documentation generator. On `options.lua`, copy all the doxygen specific options, and rename them to the language you are adding. Finally, on `commands.lua`, add your language to the if condition of the functions `generate`, `open`, and `auto_setup`, so your backend is recognized and loaded. Don't forget to send your PR so everyone can benefit from it! * **Where do that cheesy name come from?** From [Star Wars](https://starwars.fandom.com/wiki/Dooku). * **Is this plugin based on some other** This is a lua port of the vim plugin [vim-dooku](https://github.com/Zeioth/vim-dooku). + +## Roadmap +* In order to ensure windows compatibility we must use `jobstart`and `jobstop`. +* We could change the `args` options to get a string instead of a array, which is desireable. From 442f3d788bbfdcbc90f5ba933fef17d6bae38b90 Mon Sep 17 00:00:00 2001 From: Zeioth Date: Fri, 16 Feb 2024 02:48:40 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a3ae81..174a726 100644 --- a/README.md +++ b/README.md @@ -118,4 +118,4 @@ Or if you prefer run `:DookuGenerate` three times. This is only necessary the fi ## Roadmap * In order to ensure windows compatibility we must use `jobstart`and `jobstop`. -* We could change the `args` options to get a string instead of a array, which is desireable. +* We could change the `args` options to get a string instead of a table, which is desireable.