{"id":17866293,"url":"https://github.com/rocktakey/ivy-migemo","last_synced_at":"2025-09-27T17:30:29.236Z","repository":{"id":119241856,"uuid":"319045895","full_name":"ROCKTAKEY/ivy-migemo","owner":"ROCKTAKEY","description":"Use migemo on ivy in Emacs.","archived":false,"fork":false,"pushed_at":"2023-01-21T19:34:41.000Z","size":74,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-13T06:21:31.085Z","etag":null,"topics":["counsel","emacs","emacs-configuration","ivy","migemo","swiper"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ROCKTAKEY.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"ROCKTAKEY","patreon":"rocktakey","open_collective":null,"ko_fi":"rocktakey","tidelift":null,"community_bridge":null,"liberapay":"ROCKTAKEY","issuehunt":null,"otechie":null,"custom":[]}},"created_at":"2020-12-06T13:57:31.000Z","updated_at":"2024-12-17T16:46:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"e4275978-f895-4173-afe7-f40df1806229","html_url":"https://github.com/ROCKTAKEY/ivy-migemo","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCKTAKEY%2Fivy-migemo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCKTAKEY%2Fivy-migemo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCKTAKEY%2Fivy-migemo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCKTAKEY%2Fivy-migemo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ROCKTAKEY","download_url":"https://codeload.github.com/ROCKTAKEY/ivy-migemo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234448340,"owners_count":18834213,"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":["counsel","emacs","emacs-configuration","ivy","migemo","swiper"],"created_at":"2024-10-28T09:35:38.454Z","updated_at":"2025-09-27T17:30:28.971Z","avatar_url":"https://github.com/ROCKTAKEY.png","language":"Emacs Lisp","funding_links":["https://github.com/sponsors/ROCKTAKEY","https://patreon.com/rocktakey","https://ko-fi.com/rocktakey","https://liberapay.com/ROCKTAKEY"],"categories":[],"sub_categories":[],"readme":"[[https://github.com/ROCKTAKEY/ivy-migemo][https://img.shields.io/github/tag/ROCKTAKEY/ivy-migemo.svg?style=flat-square]]\n[[file:LICENSE][https://img.shields.io/github/license/ROCKTAKEY/ivy-migemo.svg?style=flat-square]]\n[[https://github.com/ROCKTAKEY/ivy-migemo/actions][https://img.shields.io/github/actions/workflow/status/ROCKTAKEY/ivy-migemo/CI.yml.svg?style=flat-square]]\n# [[https://codecov.io/gh/ROCKTAKEY/ivy-migemo?branch=master][https://img.shields.io/codecov/c/github/ROCKTAKEY/ivy-migemo/master.svg?style=flat-square]]\n[[https://melpa.org/#/ivy-migemo][file:https://melpa.org/packages/ivy-migemo-badge.svg]]\n* Use migemo on ivy.\n* How to Use?\n#+begin_src emacs-lisp :tangle yes\n    ;; Toggle migemo and fuzzy by command.\n    (define-key ivy-minibuffer-map (kbd \"M-f\") #'ivy-migemo-toggle-fuzzy)\n    (define-key ivy-minibuffer-map (kbd \"M-m\") #'ivy-migemo-toggle-migemo)\n\n    ;; If you want to defaultly use migemo on swiper and counsel-find-file:\n    (setq ivy-re-builders-alist '((t . ivy--regex-plus)\n                                  (swiper . ivy-migemo-regex-plus)\n                                  (counsel-find-file . ivy-migemo-regex-plus))\n                                  ;(counsel-other-function . ivy-migemo-regex-plus)\n                                  )\n    ;; Or you prefer fuzzy match like ido:\n    (setq ivy-re-builders-alist '((t . ivy--regex-fuzzy)\n                                  (swiper . ivy-migemo-regex-fuzzy)\n                                  (counsel-find-file . ivy-migemo-regex-fuzzy))\n                                  ;(counsel-other-function . ivy-migemo-regex-fuzzy)\n                                  )\n#+end_src\n* Functions\n** ~ivy-migemo-toggle-fuzzy~\n   Toggle fuzzy match or not on ivy. Almost same as ~ivy-toggle-fuzzy~, except\n   this function can also be used to toggle between ~ivy-migemo-regex-fuzzy~ and\n   ~ivy-migemo-regex-plus~.\n** ~ivy-migemo-toggle-migemo~\n   Toggle using migemo or not on ivy.\n\n* Handle ~search-default-mode~\n  When you set ~search-default-mode~ a function such as ~char-fold-to-regexp~,\n  ~swiper~ might through error or might not work with migemo.\n  Then, You can turn on ~ivy-migemo-search-default-handling-mode~.\n  When this mode is turned on, ~swiper--re-builder~ is advised to set\n  ~search-default-mode~ ~nil~ with ~ivy-migemo~ on.\n\n* License\n  This package is licensed by GPLv3. See [[file:LICENSE][LICENSE]].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frocktakey%2Fivy-migemo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frocktakey%2Fivy-migemo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frocktakey%2Fivy-migemo/lists"}