{"id":22486502,"url":"https://github.com/jaanauati/hyper-search","last_synced_at":"2025-04-06T14:11:06.969Z","repository":{"id":51771320,"uuid":"93568579","full_name":"jaanauati/hyper-search","owner":"jaanauati","description":"Search-text plugin for Hyper.js","archived":false,"fork":false,"pushed_at":"2021-05-09T00:32:30.000Z","size":166,"stargazers_count":175,"open_issues_count":21,"forks_count":21,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-30T13:09:28.615Z","etag":null,"topics":["es6","hyper","hyper-search","plugin","react","reactjs","redux"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/jaanauati.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}},"created_at":"2017-06-06T22:15:26.000Z","updated_at":"2025-02-19T12:33:20.000Z","dependencies_parsed_at":"2022-08-22T19:40:36.977Z","dependency_job_id":null,"html_url":"https://github.com/jaanauati/hyper-search","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaanauati%2Fhyper-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaanauati%2Fhyper-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaanauati%2Fhyper-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaanauati%2Fhyper-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaanauati","download_url":"https://codeload.github.com/jaanauati/hyper-search/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247492513,"owners_count":20947544,"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":["es6","hyper","hyper-search","plugin","react","reactjs","redux"],"created_at":"2024-12-06T17:14:42.570Z","updated_at":"2025-04-06T14:11:06.948Z","avatar_url":"https://github.com/jaanauati.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"\n# Hyper-search \u0026middot; [![](https://img.shields.io/npm/dm/hyper-search.svg?label=DL)]() [![GitHub license](https://img.shields.io/badge/license-ISC-blue.svg)](https://github.com/jaanauati/hyper-search)\n\nExtension for [Hyper](https://hyper.is) that allows you to search text in your terminal.\n\n## How to use\n\nInstall [Hyper](https://hyper.is) and add `hyper-search`\nto `plugins` in `~/.hyper.js` and restart hyper.js.\n\nUsage:\n - A new 'find' submenu should be available in the 'Edit' menu.\n - Type ```\u003cCmd\u003e+F``` to toggle the search controls.\n - Hit ```\u003cCmd\u003e+G``` to find the next occurrence.\n - Hit ```\u003cShift\u003e+\u003cCmd\u003e+G``` to find the previous occurrence.\n - Hit ```\u003cTab\u003e``` or ```\u003cShift\u003e+\u003cTab\u003e``` to expand the selection to the right or left (see Mouseless Copy: https://www.iterm2.com/features.html).\n - Hit ```\u003cEsc\u003e``` to hide the search dialog.\n\n![demo](https://media.giphy.com/media/7SEQJPH0dqgErNF8Zq/giphy.gif)\n\n## Config\n\nhyper-search supports various style modifications.\n\nIn `~/.hyper.js`:\n\n### Change Search Box Border Radius\n\n```javascript\nmodule.exports = {\n  config: {\n    ...\n      hyperSearchUI: {\n        inputBorderRadius: 2\n      }\n    ...\n  }\n}\n````\n\n![input border radius](https://i.imgur.com/POliDqP.png)\n\n### Change Previous/Next Button Border Radius\n\n```javascript\nmodule.exports = {\n  config: {\n    ...\n      hyperSearchUI: {\n        buttonBorderRadius: 2,\n      }\n    ...\n  }\n}\n````\n\n![navigation button border radius](https://i.imgur.com/YSam2Ph.png)\n\n### Change Button Margins\n\n```javascript\nmodule.exports = {\n  config: {\n    ...\n      hyperSearchUI: {\n        buttonMargin: 2,\n      }\n    ...\n  }\n}\n````\n\n![button margin](https://i.imgur.com/ZKk0mO8.png)\n\n### Change Prev/Next Button Text\n\n```javascript\nmodule.exports = {\n  config: {\n    ...\n      hyperSearchUI: {\n        prevButton: '←',\n        nextButton: '→'\n      }\n    ...\n  }\n}\n````\n\n![change prev/next button](https://i.imgur.com/ORRuvvw.png)\n\n\n## TODO:\n- regular expressions.\n\n## Credits\nJonatan Anauati (barakawins@gmail.com)\n\n## Contributors\n- Aaron Markey (https://github.com/aaronmarkey)\n- Alek Zdziarski (https://github.com/aldudalski)\n- Emmanuel Salomon (https://github.com/ManUtopiK)\n- Hai Nguyen (https://github.com/ng-hai)\n- Samuel Yeung (https://github.com/samuelyeungkc)\n- Timo Sand (https://github.com/deiga)\n- Will Stern (https://github.com/willrstern)\n- Yanir (https://github.com/yanir3)\n\n\n## License\n\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaanauati%2Fhyper-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaanauati%2Fhyper-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaanauati%2Fhyper-search/lists"}