{"id":17922606,"url":"https://github.com/rreverser/vsce-ragel","last_synced_at":"2026-02-16T02:33:46.360Z","repository":{"id":66153544,"uuid":"49210212","full_name":"RReverser/vsce-ragel","owner":"RReverser","description":"Ragel support for Visual Studio Code","archived":false,"fork":false,"pushed_at":"2016-03-16T14:41:16.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T12:38:43.706Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/RReverser.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}},"created_at":"2016-01-07T14:45:45.000Z","updated_at":"2016-03-16T14:41:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"92b2e916-19ea-4fbf-b095-4644a7b76bba","html_url":"https://github.com/RReverser/vsce-ragel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RReverser/vsce-ragel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fvsce-ragel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fvsce-ragel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fvsce-ragel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fvsce-ragel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RReverser","download_url":"https://codeload.github.com/RReverser/vsce-ragel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RReverser%2Fvsce-ragel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003896,"owners_count":26083641,"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-10-10T02:00:06.843Z","response_time":62,"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-28T20:39:57.157Z","updated_at":"2025-10-10T12:38:44.569Z","avatar_url":"https://github.com/RReverser.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ragel syntax support for Visual Studio Code\n\nThis extension provides syntax highlighting \u0026 snippets support for Ragel State Machine Compiler syntax.\n\nYou can read more about Ragel here: http://www.colm.net/open-source/ragel/\n\nIf you want to show Ragel errors in Visual Studio Code on compile, add the following snippet to your `.vscode/tasks.json`:\n\n```javascript\n{\n\t\"version\": \"0.1.0\",\n\n\t// The command is ragel. Assumes that ragel has been installed globally\n\t\"command\": \"ragel\",\n\n\t// The command is a shell script\n\t\"isShellCommand\": true,\n\n\t// Show the output window only if unrecognized errors occur.\n\t\"showOutput\": \"silent\",\n\n\t// args is the HelloWorld program to compile.\n\t\"args\": [\"--error-format=msvc\", \"HelloWorld.rl\"],\n\n\t// use custom ragel problem matcher to find compile problems\n\t// in the output.\n\t\"problemMatcher\": {\n\t\t// The problem is owned by the typescript language service. Ensure that the problems\n\t\t// are merged with problems produced by Visual Studio's language service.\n\t\t\"owner\": \"ragel\",\n\t\t// The file name for reported problems is relative to the current working directory.\n\t\t\"fileLocation\": [\"relative\", \"${cwd}\"],\n\t\t// The actual pattern to match problems in the output.\n\t\t\"pattern\": {\n\t\t\t// The regular expression. Matches HelloWorld.rl(2,10): graph lookup of \"Something\" failed\n\t\t\t\"regexp\": \"^([^:]+)\\\\((\\\\d+,\\\\d+)\\\\):\\\\s+(.*)$\",\n\t\t\t// The match group that denotes the file containing the problem.\n\t\t\t\"file\": 1,\n\t\t\t// The match group that denotes the problem location.\n\t\t\t\"location\": 2,\n\t\t\t// The match group that denotes the problem's message.\n\t\t\t\"message\": 3\n\t\t}\n\t}\n}\n```\n\nAnd you will get error reporting like in the screenshot below:\n\n![](https://cloud.githubusercontent.com/assets/557590/13816130/1249da8a-eb85-11e5-958d-2099c7283f85.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frreverser%2Fvsce-ragel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frreverser%2Fvsce-ragel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frreverser%2Fvsce-ragel/lists"}