{"id":13479560,"url":"https://github.com/hrsh7th/vim-eft","last_synced_at":"2025-07-11T15:41:30.038Z","repository":{"id":45212462,"uuid":"300218057","full_name":"hrsh7th/vim-eft","owner":"hrsh7th","description":"enhanced f/t","archived":false,"fork":false,"pushed_at":"2023-04-18T14:23:32.000Z","size":36,"stargazers_count":76,"open_issues_count":3,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-05T16:04:55.451Z","etag":null,"topics":["nvim","nvim-plugin","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hrsh7th.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-10-01T09:15:04.000Z","updated_at":"2025-01-14T12:35:51.000Z","dependencies_parsed_at":"2024-10-30T13:43:06.532Z","dependency_job_id":null,"html_url":"https://github.com/hrsh7th/vim-eft","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hrsh7th/vim-eft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrsh7th%2Fvim-eft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrsh7th%2Fvim-eft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrsh7th%2Fvim-eft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrsh7th%2Fvim-eft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hrsh7th","download_url":"https://codeload.github.com/hrsh7th/vim-eft/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrsh7th%2Fvim-eft/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264842305,"owners_count":23671971,"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":["nvim","nvim-plugin","vim","vim-plugin"],"created_at":"2024-07-31T16:02:19.195Z","updated_at":"2025-07-11T15:41:30.000Z","avatar_url":"https://github.com/hrsh7th.png","language":"Vim Script","funding_links":[],"categories":["Vim Script"],"sub_categories":[],"readme":"# vim-eft\n\nThis plugin provides f/t/F/T mappings that can be customized by your setting.\n\n# Usage\n\nYou can enable this plugin via following mappings.\n\n```viml\n  nmap ; \u003cPlug\u003e(eft-repeat)\n  xmap ; \u003cPlug\u003e(eft-repeat)\n  omap ; \u003cPlug\u003e(eft-repeat)\n\n  nmap f \u003cPlug\u003e(eft-f)\n  xmap f \u003cPlug\u003e(eft-f)\n  omap f \u003cPlug\u003e(eft-f)\n  nmap F \u003cPlug\u003e(eft-F)\n  xmap F \u003cPlug\u003e(eft-F)\n  omap F \u003cPlug\u003e(eft-F)\n  \n  nmap t \u003cPlug\u003e(eft-t)\n  xmap t \u003cPlug\u003e(eft-t)\n  omap t \u003cPlug\u003e(eft-t)\n  nmap T \u003cPlug\u003e(eft-T)\n  xmap T \u003cPlug\u003e(eft-T)\n  omap T \u003cPlug\u003e(eft-T)\n```\n\n# Configuration\n\n## highlight\n\n```viml\n\" Disable highlight\nlet g:eft_highlight = {}\n\n\" Custom highlight\nlet g:eft_highlight = {\n\\   '1': {\n\\     'highlight': 'EftChar',\n\\     'allow_space': v:true,\n\\     'allow_operator': v:true,\n\\   },\n\\   '2': {\n\\     'highlight': 'EftSubChar',\n\\     'allow_space': v:false,\n\\     'allow_operator': v:false,\n\\   },\n\\   'n': {\n\\     'highlight': 'EftSubChar',\n\\     'allow_space': v:false,\n\\     'allow_operator': v:false,\n\\   }\n\\ }\n```\n\n## character matching\n\n```viml\n\" You can pick your favorite strategies.\nlet g:eft_index_function = {\n\\   'head': function('eft#index#head'),\n\\   'tail': function('eft#index#tail'),\n\\   'space': function('eft#index#space'),\n\\   'camel': function('eft#index#camel'),\n\\   'symbol': function('eft#index#symbol'),\n\\ }\n\n\" You can use the below function like native `f`\nlet g:eft_index_function = {\n\\   'all': { -\u003e v:true },\n\\ }\n```\n\n## DEMO\n\n\u003cimg src=\"https://user-images.githubusercontent.com/629908/94926175-525c1180-04fb-11eb-9080-64ec8c629464.gif\" width=\"480\" alt=\"Usage\" /\u003e\n\nNOTE: This demo uses `Ff`, `fm` `fc` with this plugin's default configuration.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrsh7th%2Fvim-eft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhrsh7th%2Fvim-eft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrsh7th%2Fvim-eft/lists"}