{"id":20134519,"url":"https://github.com/gnebbia/vimi","last_synced_at":"2025-08-30T07:03:07.941Z","repository":{"id":129500312,"uuid":"146585204","full_name":"gnebbia/vimi","owner":"gnebbia","description":"A vimscript interpreter for GNU/Linux, MacOS and *BSDs","archived":false,"fork":false,"pushed_at":"2018-08-29T21:55:26.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-02T22:29:46.255Z","etag":null,"topics":["interpreted-language","interpreter","scripting-language","vim","vimi","vimscript","vimscript-library"],"latest_commit_sha":null,"homepage":null,"language":"Vim script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gnebbia.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}},"created_at":"2018-08-29T10:41:37.000Z","updated_at":"2018-08-29T16:51:47.000Z","dependencies_parsed_at":"2023-06-17T04:31:06.890Z","dependency_job_id":null,"html_url":"https://github.com/gnebbia/vimi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gnebbia/vimi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnebbia%2Fvimi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnebbia%2Fvimi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnebbia%2Fvimi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnebbia%2Fvimi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gnebbia","download_url":"https://codeload.github.com/gnebbia/vimi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnebbia%2Fvimi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272815845,"owners_count":24997662,"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-30T02:00:09.474Z","response_time":77,"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":["interpreted-language","interpreter","scripting-language","vim","vimi","vimscript","vimscript-library"],"created_at":"2024-11-13T21:09:47.910Z","updated_at":"2025-08-30T07:03:07.903Z","avatar_url":"https://github.com/gnebbia.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vimi\n\nThis project is an attempt at creating a simple vimscript interpreter.\nVimi is able to take as input a vimscript and execute it, and hence\nit makes vim more similar to any other full-fledged programming\nlanguage.\n\n## Installation\n\nIn order to install vimi we can simply clone this repo\nand execute the install.sh script by doing:\n\n```sh\ngit clone https://github.com/gnebbia/vimi\n```\n\nand then:\n\n```sh\ncd vimi/\nbash install.sh\n```\n\n\n\n## Executing a script\n\nLike other programming languages, we can execute our vim script\nby calling the vimscript interpreter like this:\n \n```sh\nvimi myscript.vim\n```\n\nAs a demo example, let's create a simple script which we will\ncall example.vim with the following content:\n\n```vim\n\"take user input\nlet ciao = Input(\"Type something: \")\n\n\"print to screen what user inserted\necho \"You inserted: \" . ciao\n\n\n\"print to screen arguments passed\"\nlet passed_args = Argv()\necho(passed_args)\n```\n\nvimi will execute the script by executing:\n```sh\nvimi example.vim --arg1 value1 --arg2 value2 -v\n```\n\n## License\n\nThe vimi interpreter is under GPLv3 license. Please see LICENSE file for more\ndetails.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnebbia%2Fvimi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgnebbia%2Fvimi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnebbia%2Fvimi/lists"}