{"id":18594057,"url":"https://github.com/lucretia/ada-utilities","last_synced_at":"2026-04-19T14:31:30.226Z","repository":{"id":47678443,"uuid":"221733703","full_name":"Lucretia/ada-utilities","owner":"Lucretia","description":"VSCode extension for Ada.","archived":false,"fork":false,"pushed_at":"2023-03-03T09:21:34.000Z","size":98,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-16T11:09:10.566Z","etag":null,"topics":["ada","vscode","vscode-extension","vscode-plugin"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/Lucretia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2019-11-14T15:51:42.000Z","updated_at":"2021-08-18T12:27:35.000Z","dependencies_parsed_at":"2024-05-02T20:58:14.724Z","dependency_job_id":"e9b1dd0e-56f1-4303-a3a4-30c5cde8a13f","html_url":"https://github.com/Lucretia/ada-utilities","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Lucretia/ada-utilities","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lucretia%2Fada-utilities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lucretia%2Fada-utilities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lucretia%2Fada-utilities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lucretia%2Fada-utilities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lucretia","download_url":"https://codeload.github.com/Lucretia/ada-utilities/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lucretia%2Fada-utilities/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["ada","vscode","vscode-extension","vscode-plugin"],"created_at":"2024-11-07T01:14:26.668Z","updated_at":"2026-04-19T14:31:30.209Z","avatar_url":"https://github.com/Lucretia.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ada Utilities\n\nThis is a VSCode extension Ada programmers which provides a few utility functions.\n\n## Features\n\n### Commands\n\n* Go to Ada specification / body.\n* Switch between the specification and body.\n\n### Menus\n\nThe above commands are available from the editor context menus.\n\n### Problem matchers\n\n* GPRBuild\n\n### Tasks\n\n* Make all (uses the above problem matchers).\n* Make clean (no problem matchers at this time).\n* GPRBuild\n* GPRClean\n\nThe GPR tools get the gpr filename from the workspace settings, ```ada.projectFile``` which is the same value used in the [Ada language server](https://github.com/AdaCore/ada_language_server).\n\n## Requirements\n\nNot strictly requirements, but these are the two other extensions I use at this time. They make Ada programming a bit easier at least.\n\n* [Ada Language Server](https://github.com/AdaCore/ada_language_server)\n* [Ada VSCode](https://github.com/Lucretia/ada-vscode)\n\n## Extension Settings\n\nModify the ```flags``` option and add the following to your ```tasks.json``` file if your source isn't in ```${workspaceFolder}/src```:\n\n```\n    \"tasks\": [\n        {\n            \"type\": \"adamakeall\",\n            \"flags\": \"-C /tmp/example -f makefile\",\n            \"problemMatcher\": [\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_warnings_info\"\n                },\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_warnings_info\"\n                },\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_warnings\"\n                },\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_errors\"\n                }\n            ],\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": true\n            }\n        }\n    ]\n```\n\nOr, if using gprbuild/gprclean:\n\n```\n    \"tasks\": [\n        {\n            \"type\": \"adagprbuild\",\n            \"flags\": \"\",\n            \"post_flags\": \"-cargs -v\",\n            \"problemMatcher\": [\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_warnings_info\"\n                },\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_warnings_info\"\n                },\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_warnings\"\n                },\n                {\n                    \"fileLocation\": [ \"autoDetect\", \"${workspaceFolder}\"],\n                    \"base\": \"$gprbuild_errors\"\n                }\n             ],\n            \"group\": {\n                \"kind\": \"build\",\n                \"isDefault\": true\n            }\n        },\n        {\n            \"type\": \"adagprclean\",\n            \"flags\": \"\",\n            \"problemMatcher\": []\n        }\n    ]\n```\n\nAlter the make ```args``` to match your source.\n\n\n## Known Issues\n\nCalling out known issues can help limit users opening duplicate issues against your extension.\n\n## Release Notes\n\nUsers appreciate release notes as you update your extension.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucretia%2Fada-utilities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucretia%2Fada-utilities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucretia%2Fada-utilities/lists"}