From ab2c7f20f9b469571e5eac2ea13addb7b063db03 Mon Sep 17 00:00:00 2001 From: kyoh86 Date: Fri, 12 Apr 2024 23:55:51 +0900 Subject: [PATCH 1/2] set default-theme to "coal" --- book.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/book.toml b/book.toml index 93641a5..5ba9d37 100644 --- a/book.toml +++ b/book.toml @@ -5,4 +5,7 @@ multilingual = false src = "src" title = "Denops Documentation" +[output.html] +default-theme = "coal" + [preprocessor.alerts] From c68ce4c3ec6e8f50ce0104b625e249dd947bf6b0 Mon Sep 17 00:00:00 2001 From: kyoh86 Date: Sat, 13 Apr 2024 00:16:10 +0900 Subject: [PATCH 2/2] Add new page "API Reference" to access Deno doc. --- src/SUMMARY.md | 1 + src/api-reference.md | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 src/api-reference.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 154fcdd..1fb53c8 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -17,4 +17,5 @@ - [Properly create a virtual buffer](./tutorial/maze/properly-create-a-virtual-buffer.md) - [Properly configured the buffer](./tutorial/maze/properly-configured-the-buffer.md) - [Reduce the number of RPC calls](./tutorial/maze/reduce-the-number-of-rpc-calls.md) +- [API Reference](./api-reference.md) - [FAQ](./faq.md) diff --git a/src/api-reference.md b/src/api-reference.md new file mode 100644 index 0000000..82f0904 --- /dev/null +++ b/src/api-reference.md @@ -0,0 +1,10 @@ +# API Reference + +There is a standard module [denops_std] to develop denops plugins. It provides +various functions to interact with Vim and Neovim and some shorthands to make it +easier to write plugins. + +You can find API references about the module by checking the Deno doc page: +`https://deno.land/x/denops_std/mod.ts`. + +[denops_std]: https://deno.land/x/denops_std/mod.ts