{"id":31667887,"url":"https://github.com/mityu/vim-fall-modal","last_synced_at":"2025-10-08T00:49:06.401Z","repository":{"id":317775127,"uuid":"1055543250","full_name":"mityu/vim-fall-modal","owner":"mityu","description":"Modal editing support for fall.vim","archived":false,"fork":false,"pushed_at":"2025-10-02T23:10:30.000Z","size":17,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-03T01:17:56.692Z","etag":null,"topics":["denops","fuzzy-finder","neovim","vim","vim-fall"],"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/mityu.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-12T12:25:01.000Z","updated_at":"2025-10-02T23:10:34.000Z","dependencies_parsed_at":"2025-10-06T08:01:40.879Z","dependency_job_id":null,"html_url":"https://github.com/mityu/vim-fall-modal","commit_stats":null,"previous_names":["mityu/vim-fall-modal"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mityu/vim-fall-modal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mityu%2Fvim-fall-modal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mityu%2Fvim-fall-modal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mityu%2Fvim-fall-modal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mityu%2Fvim-fall-modal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mityu","download_url":"https://codeload.github.com/mityu/vim-fall-modal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mityu%2Fvim-fall-modal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278872154,"owners_count":26060525,"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-10-07T02:00:06.786Z","response_time":59,"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":["denops","fuzzy-finder","neovim","vim","vim-fall"],"created_at":"2025-10-08T00:49:01.441Z","updated_at":"2025-10-08T00:49:06.395Z","avatar_url":"https://github.com/mityu.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fall-modal.vim\n\nAdd modal editing functionality to [fall.vim](https://github.com/vim-fall/fall.vim).\nSee `doc/fall-modal.txt` for the full description of this plugin.\n\n## Basic configuration\n\nSetup fall-modal.vim using the built-in configuration.  Write this in your .vimrc:\n\n```vim\naugroup vimrc-fall-modal\n  autocmd!\n  autocmd User FallModalSetup call fall_modal#default#setup()\naugroup END\n```\n\nThis will introduce \"normal\" and \"insert\" mode.\nThe default mode is \"normal\" mode, in other words, fall-modal.vim will be the \"normal\" mode when fall.vim starts.\n\nList of mappings in each mode is here:\n\n- \"normal\" mode:\n\n| Key     | Description |\n|:--------|:------------|\n| q       | Quit fall.vim. |\n| i       | Change mode to \"insert\". |\n| j       | `\u003cPlug\u003e(fall-list-next)` |\n| k       | `\u003cPlug\u003e(fall-list-prev)` |\n| gg      | `\u003cPlug\u003e(fall-list-first)` |\n| G       | `\u003cPlug\u003e(fall-list-last)` |\n| `\u003cCR\u003e`  | Accept item and apply default action to the item. |\n| a       | `\u003cPlug\u003e(fall-action-select)` |\n| m       | `\u003cPlug\u003e(fall-select)` |\n| *       | `\u003cPlug\u003e(fall-select-all)` |\n| ?       | `\u003cPlug\u003e(fall-help)` |\n| `\u003cC-n\u003e` | `\u003cPlug\u003e(fall-preview-next:scroll)` |\n| `\u003cC-p\u003e` | `\u003cPlug\u003e(fall-preview-prev:scroll)` |\n| u       | Undo prompt.  `fall_modal#input#undo_prompt()` |\n| `\u003cC-r\u003e` | Redo prompt.  `fall_modal#input#redo_prompt()` |\n\n- \"insert\" mode:\n\n| Key     | Description |\n|:--------|:------------|\n| `\u003cESC\u003e` | Change mode to \"normal\". |\n| `\u003cCR\u003e`  | Change mode to \"normal\". |\n| `\u003cC-c\u003e` | Change mode to \"normal\" with discarding prompt changes. |\n| `\u003cC-n\u003e` | `\u003cPlug\u003e(fall-list-next)` |\n| `\u003cC-p\u003e` | `\u003cPlug\u003e(fall-list-prev)` |\n\nYou can also refer to `:h fall-modal-default-config` about this built-in configuration.\n\n---\nSee `:h fall-modal-example` for more advanced examples.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmityu%2Fvim-fall-modal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmityu%2Fvim-fall-modal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmityu%2Fvim-fall-modal/lists"}