{"id":16190926,"url":"https://github.com/maxmellon/vim-fzy-rails","last_synced_at":"2026-01-21T02:09:14.345Z","repository":{"id":86954506,"uuid":"107290223","full_name":"MaxMEllon/vim-fzy-rails","owner":"MaxMEllon","description":"A plugin to find file on rails project by fzy within vim.","archived":false,"fork":false,"pushed_at":"2017-10-24T14:11:01.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T14:42:43.700Z","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-17T15:45:30.000Z","updated_at":"2017-10-19T04:52:02.000Z","dependencies_parsed_at":"2023-05-29T23:15:28.105Z","dependency_job_id":null,"html_url":"https://github.com/MaxMEllon/vim-fzy-rails","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MaxMEllon/vim-fzy-rails","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2Fvim-fzy-rails","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2Fvim-fzy-rails/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2Fvim-fzy-rails/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2Fvim-fzy-rails/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaxMEllon","download_url":"https://codeload.github.com/MaxMEllon/vim-fzy-rails/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaxMEllon%2Fvim-fzy-rails/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28622473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T23:49:58.628Z","status":"online","status_checked_at":"2026-01-21T02:00:08.227Z","response_time":86,"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-10T07:44:30.539Z","updated_at":"2026-01-21T02:09:14.328Z","avatar_url":"https://github.com/MaxMEllon.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"vim-fzy-rails\n---\n[![Travis CI](https://img.shields.io/travis/MaxMEllon/vim-fzy-rails/master.svg?style=flat-square\u0026label=Travis%20CI)](https://travis-ci.org/MaxMEllon/vim-fzy-rails)\n[![CircleCI](https://img.shields.io/circleci/project/github/MaxMEllon/vim-fzy-rails/master.svg?style=flat-square\u0026label=Circle%20CI)](https://circleci.com/gh/MaxMEllon/vim-fzy-rails)\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%20vim--fzy--rails-red.svg?style=flat-square)](./doc/vim-fzy-rails.txt)\n\n**vim-fzy-rails is a plugin to find file on rails project by [fzy](https://github.com/jhawthorn/fzy) with in vim.**\n\nRequirements\n---\n- Vim 8.0.0039 or above. (need `has('lambda')`)\n- fzy 0.8 or above.\n- Linux or macOS.\n\nUsage\n---\n\n### Insallation\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\n```vim\nNeoBundle 'MaxMEllon/vim-fzy-rails'\nPlugin 'MaxMEllon/vim-fzy-rails'\nPlug 'MaxMEllon/vim-fzy-rails'\n```\n\n### Basic usage\n\n```vim\nnmap ,rc \u003cPlug\u003e(vim-fzy-rails_controllers)\nnmap ,rm \u003cPlug\u003e(vim-fzy-rails_models)\nnmap ,rv \u003cPlug\u003e(vim-fzy-rails_views)\nnmap ,rd \u003cPlug\u003e(vim-fzy-rails_decorators)\nnmap ,rp \u003cPlug\u003e(vim-fzy-rails_packs)\nnmap ,rj \u003cPlug\u003e(vim-fzy-rails_javascripts)\nnmap ,rsa \u003cPlug\u003e(vim-fzy-rails_stylesheets)\nnmap ,rse \u003cPlug\u003e(vim-fzy-rails_serializers)\n```\n\n### Additional usages\n\nFollowing you write next config, if you want to find a services layer `(ex. /app/services)`.\n\n```vim\nnmap ,rv :\u003cC-u\u003ecall fzy#rails#base#call('/app/services')\u003cCR\u003e\n```\n\nYou able to correspond original special layer using the `fzy#rails#base#call()` function.\n\nAuther\n---\n- MaxMEllon (https://github.com/MaxMEllon)\n\nLICENSE\n---\n- MIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmellon%2Fvim-fzy-rails","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxmellon%2Fvim-fzy-rails","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmellon%2Fvim-fzy-rails/lists"}