diff options
| author | William Boman <william@redwill.se> | 2023-03-14 06:42:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-14 06:42:36 +0100 |
| commit | 441c9ea2ab385c2e6407a637775b4b392533d265 (patch) | |
| tree | 19a1eb14bcae272052c417c8ae45a3a369b65de2 | |
| parent | feat: add registry.refresh() method (#1096) (diff) | |
| download | mason-441c9ea2ab385c2e6407a637775b4b392533d265.tar mason-441c9ea2ab385c2e6407a637775b4b392533d265.tar.gz mason-441c9ea2ab385c2e6407a637775b4b392533d265.tar.bz2 mason-441c9ea2ab385c2e6407a637775b4b392533d265.tar.lz mason-441c9ea2ab385c2e6407a637775b4b392533d265.tar.xz mason-441c9ea2ab385c2e6407a637775b4b392533d265.tar.zst mason-441c9ea2ab385c2e6407a637775b4b392533d265.zip | |
fix(doc): duplicate helptag (#1099)
Closes #1098.
| -rw-r--r-- | .github/workflows/tests.yml | 5 | ||||
| -rw-r--r-- | doc/mason.txt | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aa25709d..dfc5d130 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,4 +23,7 @@ jobs: neovim: true version: ${{ matrix.nvim_version }} - name: Run tests - run: make test + run: | + set -e + make test + nvim -u NONE -E -R --headless +'helptags doc' +q diff --git a/doc/mason.txt b/doc/mason.txt index 19eba5cd..830240b2 100644 --- a/doc/mason.txt +++ b/doc/mason.txt @@ -505,7 +505,7 @@ update({callback}) Parameters: {callback} - Callback of the signature `fun(success: boolean, updated_registries: RegistrySource[])` - *mason-registry.update()* + *mason-registry.refresh()* refresh({callback?}) Refreshes all registries if needed. This is a convenience wrapper around |mason-registry.update()| that only updates registries if: |
