{"id":15476241,"url":"https://github.com/speed2exe/zig-comp-diag.nvim","last_synced_at":"2025-08-03T13:15:48.768Z","repository":{"id":224050651,"uuid":"762179958","full_name":"speed2exe/zig-comp-diag.nvim","owner":"speed2exe","description":"neovim plugin to show diagnostic from zig compiler","archived":false,"fork":false,"pushed_at":"2024-05-19T14:31:31.000Z","size":287,"stargazers_count":12,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-22T14:21:17.675Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/speed2exe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-02-23T08:44:40.000Z","updated_at":"2024-07-05T14:52:38.000Z","dependencies_parsed_at":"2024-05-19T15:49:24.549Z","dependency_job_id":null,"html_url":"https://github.com/speed2exe/zig-comp-diag.nvim","commit_stats":null,"previous_names":["speed2exe/zig-comp-diag.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/speed2exe/zig-comp-diag.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speed2exe%2Fzig-comp-diag.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speed2exe%2Fzig-comp-diag.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speed2exe%2Fzig-comp-diag.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speed2exe%2Fzig-comp-diag.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/speed2exe","download_url":"https://codeload.github.com/speed2exe/zig-comp-diag.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speed2exe%2Fzig-comp-diag.nvim/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268551384,"owners_count":24268571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-02T03:23:53.010Z","updated_at":"2025-08-03T13:15:48.711Z","avatar_url":"https://github.com/speed2exe.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zig-comp-diag.nvim\n- Neovim plugin to show diagnostic from zig compiler\n\n## Background\n- This project is motivated from the fact that I spent way too much time bouncing from compiler error messages to neovim.\n\n## What it does?\n- Using your system's installed zig, this plugin will attempt to build your project using `zig build` (default) or predefined command.\n- This plugin then parses output from the stderr, map them into neovim diagnostic and sets them to respective buffers.\n\n## Screenshots\n![Screenshot](./screenshot/return_type.png)\n![Screenshot](./screenshot/unknown_func.png)\n![Screenshot](./screenshot/const.png)\n![Screenshot](./screenshot/missing_args.png)\n\n## Install\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n```lua\n{\n  'speed2exe/zig-comp-diag.nvim',\n  config = function()\n    require('zig-comp-diag').setup()\n  end\n}\n```\n\nUsing [packer.nvim](https://github.com/wbthomason/packer.nvim):\n```lua\nuse {\n 'speed2exe/zig-comp-diag.nvim',\n  config = function()\n    require('zig-comp-diag').setup()\n  end\n}\n```\n\n## Usage\nUsing VimL:\n```vim\n\" runs with command: zig build\n:ZigCompDiag\n\n\" runs with your custome command\n:ZigCompDiag zig build-exe main.zig\n```\n\n```lua\n-- run with `zig build`\nrequire('zig-comp-diag').run()\n-- run with your custom zig command\nrequire('zig-comp-diag').runWithCmd({ \"zig\", \"build-exe\", \"main.zig\" })\n```\n\n## Note\n- Each command runs in background and does not block user input.\n- You might need to wait a little while for commands to complete to see the diagnostics.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspeed2exe%2Fzig-comp-diag.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspeed2exe%2Fzig-comp-diag.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspeed2exe%2Fzig-comp-diag.nvim/lists"}