{"id":16190982,"url":"https://github.com/maxmellon/ramda.vim","last_synced_at":"2026-02-12T21:31:32.052Z","repository":{"id":86954317,"uuid":"107579265","full_name":"MaxMEllon/Ramda.vim","owner":"MaxMEllon","description":"[WIP] Support your functional programming by Vim script.","archived":false,"fork":false,"pushed_at":"2017-10-31T02:13:53.000Z","size":70,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-04T00:52:41.156Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MaxMEllon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2017-10-19T17:43:43.000Z","updated_at":"2019-01-05T06:49:32.000Z","dependencies_parsed_at":"2023-05-29T23:15:38.640Z","dependency_job_id":null,"html_url":"https://github.com/MaxMEllon/Ramda.vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MaxMEllon/Ramda.vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2FRamda.vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2FRamda.vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2FRamda.vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2FRamda.vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaxMEllon","download_url":"https://codeload.github.com/MaxMEllon/Ramda.vim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2FRamda.vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29381756,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T20:34:40.886Z","status":"ssl_error","status_checked_at":"2026-02-12T20:23:00.490Z","response_time":55,"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-10-10T07:44:37.730Z","updated_at":"2026-02-12T21:31:32.037Z","avatar_url":"https://github.com/MaxMEllon.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./.github/logo.png\" alt=\"logo\" width=\"300px\" /\u003e\n\u003c/div\u003e\n\nRamda.vim\n---\n[![Travis CI](https://img.shields.io/travis/MaxMEllon/Ramda.vim/master.svg?style=flat-square\u0026label=Travis%20CI)](https://travis-ci.org/MaxMEllon/Ramda.vim)\n[![CircleCI](https://img.shields.io/circleci/project/github/MaxMEllon/Ramda.vim/master.svg?style=flat-square\u0026label=Circle%20CI)](https://circleci.com/gh/MaxMEllon/Ramda.vim)\n[![AppVayor](https://img.shields.io/appveyor/ci/gruntjs/grunt/master.svg?style=flat-square\u0026label=AppVeyor)](https://ci.appveyor.com/project/MaxMEllon/ramda-vim)\n![Support Vim 8.0.0039 or above](https://img.shields.io/badge/support-Vim%208.0.0039%20or%20above-yellowgreen.svg?style=flat-square)\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE)\n[![Doc](https://img.shields.io/badge/doc%20-%3Ah%20Ramda.vim-red.svg?style=flat-square)](./doc/ramda.txt)\n\nAbout\n---\n\nThis plugin is inspired by [Underscore.vim](https://github.com/haya14busa/underscore.vim) and [Ramda](http://ramdajs.com).\n\nRamda.vim support your functional programming by Vim script.\n\nInstallation\n---\n\n[Neobundle](https://github.com/Shougo/neobundle.vim) / [Vundle](https://github.com/gmarik/Vundle.vim) / [vim-plug](https://github.com/junegunn/vim-plug)\n\n1. Install [vital.vim](https://github.com/vim-jp/vital.vim) and Ramda.vim with any plugin manager.\n\n```vim\nNeoBundle 'vim-jp/vital.vim'\nNeoBundle 'MaxMEllon/Ramda.vim'\n\nPlugin 'vim-jp/vital.vim'\nPlugin 'MaxMEllon/Ramda.vim'\n\nPlug 'vim-jp/vital.vim'\nPlug 'MaxMEllon/Ramda.vim'\n```\n\n2. Embed Ramda.vim into your plugin with :Vitalize.\n\n```vim\n:Vitalize . --name={plugin_name} Ramda\n```\n\n3. Import Ramda.vim in your plugins.\n\n```vim\nlet s:V = vital#of('vital')\nlet s:R = s:V.import('Ramda').new()\necho s:R.pipe(s:R.map({ v -\u003e v + 2 }), s:R.filter({ v -\u003e 4 \u003c= v }))([1, 2, 3])\n\" =\u003e [4, 5]\n```\n\n\nRequirements\n---\n- Vim 8.0.0039 or above. (need `has('lambda')`)\n\nAuther\n---\n- MaxMEllon (https://github.com/MaxMEllon)\n\nLICENSE\n---\n\n- MIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmellon%2Framda.vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxmellon%2Framda.vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmellon%2Framda.vim/lists"}