{"id":17246722,"url":"https://github.com/xaizek/vim-like-pile","last_synced_at":"2025-04-14T05:31:41.230Z","repository":{"id":38343967,"uuid":"435313730","full_name":"xaizek/vim-like-pile","owner":"xaizek","description":"Sources of Big Pile of Vim-like","archived":false,"fork":false,"pushed_at":"2025-02-08T22:36:27.000Z","size":466,"stargazers_count":20,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-27T19:51:40.708Z","etag":null,"topics":["vim","vim-like"],"latest_commit_sha":null,"homepage":"https://vim.reversed.top/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xaizek.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":"2021-12-06T00:29:51.000Z","updated_at":"2025-02-08T22:36:30.000Z","dependencies_parsed_at":"2024-06-28T00:02:02.167Z","dependency_job_id":"994e5a3c-208c-477f-bc3f-e6b6af90585c","html_url":"https://github.com/xaizek/vim-like-pile","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xaizek%2Fvim-like-pile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xaizek%2Fvim-like-pile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xaizek%2Fvim-like-pile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xaizek%2Fvim-like-pile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xaizek","download_url":"https://codeload.github.com/xaizek/vim-like-pile/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248826615,"owners_count":21167722,"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","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":["vim","vim-like"],"created_at":"2024-10-15T06:34:59.316Z","updated_at":"2025-04-14T05:31:40.982Z","avatar_url":"https://github.com/xaizek.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Sources of [Big Pile of Vim-like][pile] ##\n\nThe site is a list of Vim-like applications and Vim-emulation plugins.\nAnd this repository contains a bit of PHP code and a dumb database in JSON\nformat behind the site.\n\n### Contributing ###\n\nIf you wish to add a new item, edit `data.json` file.  Prefer placing new items\nnext to other items from the same category.  Also please provide justification\nfor something being Vim-like (e.g., with a link to documentation), so it's\neasier to check.\n\n#### Format ####\n\nEach item is described by a dictionary like this:\n\n```json\n{\n    \"name\": \"\u003c\u003c human-readable name \u003e\u003e\",\n    \"id\": \"\u003c\u003c unique id for URL \u003e\u003e\",\n    \"descr\": \"\u003c\u003c description \u003e\u003e\",\n    \"url\": \"\u003c\u003c home page \u003e\u003e\",\n    \"license\": \"\u003c\u003c license \u003e\u003e\",\n    \"languages\": [ \"\u003c\u003c main language \u003e\u003e\", \"\u003c\u003c secondary language \u003e\u003e\" ],\n    \"category\": \"\u003c\u003c e.g., 'Text Browsers' \u003e\u003e\",\n    \"type\": \"\u003c\u003c apps / plugs / confs \u003e\u003e\",\n    \"comments\": [ \"\u003c\u003c things like URL to a tutorial for making Vim-like \u003e\u003e\" ],\n    \"ui\": \"\u003c\u003c terminal / graphics toolkit \u003e\u003e\",\n    \"added\": \u003c\u003c UNIX timestamp of addition \u003e\u003e,\n    \"updated\": \u003c\u003c UNIX timestamp of a noticeable change \u003e\u003e,\n    \"state\": {\n        \"name\": \"\u003c\u003c inactive / discontinued \u003e\u003e\",\n        \"since\": \u003c\u003c UNIX timestamp of last observed maintenance activity \u003e\u003e,\n        \"comment\": \"\u003c\u003c things like reason for discontinuing the project \u003e\u003e\"\n    }\n}\n```\n\nAvoid use of emojis in all fields, they don't add anything useful but can often\nappear as a confusing blank square.\n\nMarkdown is expanded in the values of `descr`, `comments` and `state.comment`.\nMention `id` of another item in brackets to link to it.\n\n\"GPL\" license means GPL of any version and \"BSD-like\" means any kind of\nBSD/MIT/X Consortium license.  Might be worth fixing in the future.\n\nA UNIX timestamp can be obtained via `date` command like this (format of the\ndate is flexible, most will work as is):\n```bash\n# current date:\ndate +%s\n# arbitrary date\ndate +%s -d 'Apr 26, 2024'\n```\n\n### Configuration ###\n\nCan create `config.php` in the root with something like:\n\n```php\n\u003c?php\n$webRoot = '/vim';\n?\u003e\n```\n\n### License ###\n\nOn code: [Apache 2.0][apache]\n\nOn data: [CC BY-SA 4.0][cc-by-sa]\n\n\n[pile]: https://vim.reversed.top/\n[apache]: https://www.apache.org/licenses/LICENSE-2.0\n[cc-by-sa]: https://creativecommons.org/licenses/by-sa/4.0/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxaizek%2Fvim-like-pile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxaizek%2Fvim-like-pile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxaizek%2Fvim-like-pile/lists"}