From 5514bfa3bc5ceb2cdef3fa07a2b3da2529c98570 Mon Sep 17 00:00:00 2001 From: Yago Riveiro Date: Sun, 7 Jan 2024 12:36:57 +0000 Subject: [PATCH 1/2] fix: docgen workflow action Signed-off-by: Yago Riveiro --- .github/workflows/docgen.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docgen.yaml b/.github/workflows/docgen.yaml index e3a0ed1..dc57c87 100644 --- a/.github/workflows/docgen.yaml +++ b/.github/workflows/docgen.yaml @@ -15,8 +15,10 @@ jobs: - os: ubuntu-latest url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz steps: - - uses: actions/checkout@v4 - - run: date +%F > todays-date + - name: Checkout Code + uses: actions/checkout@v4 + - name: Todays Data + run: date +%F > todays-date - name: Restore cache for today's nightly. uses: actions/cache@v3 with: @@ -35,7 +37,7 @@ jobs: git clone --depth 1 https://github.com/mfussenegger/nvim-dap ~/.local/share/nvim/site/pack/vendor/start/nvim-dap ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start - name: Tree Sitter Cli - - uses: actions-rs/install@v0.1 + uses: actions-rs/install@v0.1 with: crate: tree-sitter-cli version: latest From 9679f729f1d468a137b08fddbff93fd7c49ed054 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Sun, 7 Jan 2024 12:41:27 +0000 Subject: [PATCH 2/2] feat(docgen): Update doc/dap-go.txt skip-checks: true --- doc/dap-go.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/dap-go.txt b/doc/dap-go.txt index 5ab1900..eb62faa 100644 --- a/doc/dap-go.txt +++ b/doc/dap-go.txt @@ -1,5 +1,5 @@ ================================================================================ - *dap-go.nvim* +NVIM *dap-go.nvim* dap-go.nvim is an extension for `nvim-dap` plugin that configures the usage of Golang debugging over Delve. @@ -70,7 +70,7 @@ dapgo.reload({options}) *dapgo.reload()* ================================================================================ - *dap-go.config* +CONFIG *dap-go.config* Config holds all the configuration to operate the extension. @@ -125,7 +125,7 @@ config.setup({options}) *config.setup()* ================================================================================ - *dap-go.env* +ENV *dap-go.env* This class wraps the `vim.fn.environ` with some functionalities and validations. @@ -152,7 +152,7 @@ env.dump() *env.dump()* ================================================================================ - *dap-go.util* +UTIL *dap-go.util* This class provides common functions used in dap-go extension.