{"id":47592228,"url":"https://github.com/barrettruth/vimdoc-language-server","last_synced_at":"2026-04-04T18:09:02.457Z","repository":{"id":342745584,"uuid":"1173751381","full_name":"barrettruth/vimdoc-language-server","owner":"barrettruth","description":"language server for vim help files","archived":false,"fork":false,"pushed_at":"2026-03-25T14:58:58.000Z","size":416,"stargazers_count":14,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-02T09:34:07.946Z","etag":null,"topics":["language-server-protocol","lsp","lsp-server","neovim","vim"],"latest_commit_sha":null,"homepage":"https://vimdoc-language-server.com","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/barrettruth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-05T17:57:24.000Z","updated_at":"2026-03-30T15:51:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/barrettruth/vimdoc-language-server","commit_stats":null,"previous_names":["barrettruth/vimdoc-language-server"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/barrettruth/vimdoc-language-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barrettruth%2Fvimdoc-language-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barrettruth%2Fvimdoc-language-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barrettruth%2Fvimdoc-language-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barrettruth%2Fvimdoc-language-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/barrettruth","download_url":"https://codeload.github.com/barrettruth/vimdoc-language-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barrettruth%2Fvimdoc-language-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31407549,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["language-server-protocol","lsp","lsp-server","neovim","vim"],"created_at":"2026-04-01T17:39:39.180Z","updated_at":"2026-04-04T18:09:02.429Z","avatar_url":"https://github.com/barrettruth.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vimdoc-language-server\n\nLanguage server for vim help files.\n\nhttps://github.com/user-attachments/assets/99ba05f6-9dbf-4645-8491-cf10af208743\n\n## Installation\n\n### Cargo\n\n```sh\ncargo install vimdoc-language-server\n```\n\n### Nix\n\n```sh\nnix run github:barrettruth/vimdoc-language-server\n```\n\n### From source\n\n```sh\ngit clone https://github.com/barrettruth/vimdoc-language-server\ncd vimdoc-language-server\ncargo install --path .\n```\n\n## Usage\n\nConfigure `vimdoc-language-server` in your editor of choice, for example with\n[Neovim](https://neovim.io) via\n[nvim-lspconfig](https://github.com/neovim/nvim-lspconfig):\n\n```lua\nvim.lsp.enable('vimdoc_ls')\n```\n\n### CLI\n\nThe server also provides standalone CLI subcommands that work without an editor.\n\n**Format** vimdoc files (in-place or check-only for CI):\n\n```sh\nvimdoc-language-server format doc/\nvimdoc-language-server format --check doc/*.txt\nvimdoc-language-server --line-width 80 format doc/\n```\n\n**Check** for diagnostics (duplicate tags, unresolved taglinks):\n\n```sh\nvimdoc-language-server check doc/\nvimdoc-language-server check --ignore unresolved-tag doc/\n```\n\n## Features\n\n- [x] **Formatting** — separator normalization, prose reflow, heading alignment;\n      range formatting supported\n- [x] **Diagnostics** — duplicate `*tag*` definitions (same-file and\n      cross-file), unresolved `|taglinks|`; push, pull, and CLI (`check`)\n- [x] **Completion** — tag completion triggered by `|`, context-aware\n- [x] **Hover** — tag definition context in a floating window\n- [x] **Go-to-definition** — `|tag-ref|` to `*tag*`, same-file and cross-file\n- [x] **References** — all `|taglinks|` referencing a `*tag*`, cross-file\n- [x] **Rename** — rename a tag and all its references across the workspace\n- [x] **Document symbols** — all `*tag*` definitions in the current file\n- [x] **Document highlight** — highlight all occurrences of a tag under cursor\n- [x] **Document links** — clickable `|taglinks|` with tooltip\n- [x] **Folding** — sections (between separators) and code blocks\n- [x] **Code actions** — quick fixes and refactors\n\n## Acknowledgements\n\n- [@skewb1k](https://github.com/skewb1k) - pull diagnostics deduplication fix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarrettruth%2Fvimdoc-language-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbarrettruth%2Fvimdoc-language-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarrettruth%2Fvimdoc-language-server/lists"}