{"id":13898729,"url":"https://github.com/vim-jp/vim-vimlparser","last_synced_at":"2026-01-27T06:01:10.009Z","repository":{"id":1932492,"uuid":"8248835","full_name":"vim-jp/vim-vimlparser","owner":"vim-jp","description":"Vim script parser","archived":false,"fork":false,"pushed_at":"2026-01-19T07:44:34.000Z","size":1303,"stargazers_count":172,"open_issues_count":44,"forks_count":27,"subscribers_count":10,"default_branch":"master","last_synced_at":"2026-01-19T14:51:07.153Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vim-jp.png","metadata":{"files":{"readme":"README.mkd","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}},"created_at":"2013-02-17T09:50:55.000Z","updated_at":"2026-01-19T06:26:59.000Z","dependencies_parsed_at":"2025-01-20T10:47:10.680Z","dependency_job_id":"98c43e7a-0436-4c91-b2b0-7188113e84c6","html_url":"https://github.com/vim-jp/vim-vimlparser","commit_stats":{"total_commits":477,"total_committers":22,"mean_commits":"21.681818181818183","dds":0.5849056603773585,"last_synced_commit":"71b3b3f274d0c855bd43ce8cce7bfc38fd710125"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vim-jp/vim-vimlparser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-vimlparser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-vimlparser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-vimlparser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-vimlparser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vim-jp","download_url":"https://codeload.github.com/vim-jp/vim-vimlparser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-vimlparser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28805317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T05:43:52.625Z","status":"ssl_error","status_checked_at":"2026-01-27T05:43:48.957Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-08-06T18:04:25.776Z","updated_at":"2026-01-27T06:01:09.957Z","avatar_url":"https://github.com/vim-jp.png","language":"Vim Script","readme":"# Vim script parsers\n\n[![Build Status](https://github.com/vim-jp/vim-vimlparser/workflows/Test/badge.svg)](https://github.com/vim-jp/vim-vimlparser/actions?query=workflow%3A%22Test%22) [![codecov](https://codecov.io/gh/vim-jp/vim-vimlparser/branch/master/graph/badge.svg)](https://codecov.io/gh/vim-jp/vim-vimlparser)\n\nThis is Vim script language ([a.k.a. VimL](#about-project-name)) parsers.\n\n## Features\n\nThe parser to make AST (Abstract Syntax Tree)\n\n## Supported languages\n\nThis parser provide same feature for following languages.\n\n* Vim script\n* Python\n* JavaScript \n\n## Example\n\nAll of interfaces are provided from vimlparser module. VimLParser parse into AST using StringReader, and Compiler to compile nodes.\n\n```vim\nlet s:VP = vimlparser#import()\nlet code = [\n\\ 'let s:message = printf(\"hello %d\", 1+(2*3))'\n\\]\nlet r = s:VP.StringReader.new(code)\nlet p = s:VP.VimLParser.new()\nlet c = s:VP.Compiler.new()\necho join(c.compile(p.parse(r)), \"\\n\")\n```\n\nThis above code output following.\n\n```\n(let = s:message (printf \"hello %d\" (+ 1 (* 2 3))))\n```\n\n## About project name\n\nWe know a name \"VimL\" is not the common short form of \"Vim scripting language\".\nBut we choice \"VimL\" for historical and practical reasons and compatibility.\n","funding_links":[],"categories":["Vim Script"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvim-jp%2Fvim-vimlparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvim-jp%2Fvim-vimlparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvim-jp%2Fvim-vimlparser/lists"}