All Projects → jaanauati → Hyper Search

jaanauati / Hyper Search

Search-text plugin for Hyper.js

Programming Languages

javascript
184084 projects - #8 most used programming language
es6
455 projects

Projects that are alternatives of or similar to Hyper Search

Hyper Statusline
Status Line Plugin for Hyper
Stars: ✭ 366 (+150.68%)
Mutual labels:  hyper, plugin
Hyper Pane
Extension for Hyper.app to enhance pane navigation.
Stars: ✭ 160 (+9.59%)
Mutual labels:  hyper, plugin
Hyper Always On Top
Extension for Hyper.app to optionally keep window always on top
Stars: ✭ 16 (-89.04%)
Mutual labels:  hyper, plugin
Hyper Tabs Enhanced
Enhanced Tabs Plugin for Hyper
Stars: ✭ 173 (+18.49%)
Mutual labels:  hyper, plugin
Hyper Match
HyperTerm extension which matches regular expressions with predefined commands
Stars: ✭ 15 (-89.73%)
Mutual labels:  hyper, plugin
Saros
Open Source IDE plugin for distributed collaborative software development
Stars: ✭ 140 (-4.11%)
Mutual labels:  plugin
Sketch Divine Proportions
Divine proportions toolkit for Sketch
Stars: ✭ 143 (-2.05%)
Mutual labels:  plugin
Keepassbrowserimporter
KeePass 2.x plugin which imports credentials from various browsers.
Stars: ✭ 139 (-4.79%)
Mutual labels:  plugin
Sdkman For Fish
Adds support for SDKMAN! to fish
Stars: ✭ 139 (-4.79%)
Mutual labels:  plugin
Weld
Full fake REST API generator written with Rust
Stars: ✭ 146 (+0%)
Mutual labels:  hyper
Dspellcheck
Notepad++ Spell-checking Plug-in
Stars: ✭ 144 (-1.37%)
Mutual labels:  plugin
Live Composer Page Builder
Free page builder plugin for WordPress http://livecomposerplugin.com
Stars: ✭ 143 (-2.05%)
Mutual labels:  plugin
Fake Chinese Name For Sketch
生成随机中文人名的 Sketch 插件
Stars: ✭ 141 (-3.42%)
Mutual labels:  plugin
Sheldon
A fast, configurable, shell plugin manager
Stars: ✭ 144 (-1.37%)
Mutual labels:  plugin
Logodrop
A Sketch Plugin to get brand logos right into Sketch App.
Stars: ✭ 140 (-4.11%)
Mutual labels:  plugin
Flexget qbittorrent mod
flexget qbittorrent删种、辅种 自动签到 插件
Stars: ✭ 144 (-1.37%)
Mutual labels:  plugin
Health Check
Health Check is a WordPress plugin that will perform a number of checks on your WordPress install to detect common configuration errors and known issues.
Stars: ✭ 139 (-4.79%)
Mutual labels:  plugin
Serverless Sam
Serverless framework plugin to export AWS SAM templates for a service
Stars: ✭ 143 (-2.05%)
Mutual labels:  plugin
Nucleus
The Ultimate Essentials Plugin for Sponge.
Stars: ✭ 144 (-1.37%)
Mutual labels:  plugin
Vue Comment Grid
💬 Responsive Vue.js comment system plugin that built with CSS Grid and Firebase REST API + Authentication. https://tugayyaldiz.github.io/vue-comment-grid
Stars: ✭ 143 (-2.05%)
Mutual labels:  plugin

Hyper-search · GitHub license

Extension for Hyper that allows you to search text in your terminal.

How to use

Install Hyper and add hyper-search to plugins in ~/.hyper.js and restart hyper.js.

Usage:

  • A new 'find' submenu should be available in the 'Edit' menu.
  • Type <Cmd>+F to toggle the search controls.
  • Hit <Cmd>+G to find the next occurrence.
  • Hit <Shift>+<Cmd>+G to find the previous occurrence.
  • Hit <Tab> or <Shift>+<Tab> to expand the selection to the right or left (see Mouseless Copy: https://www.iterm2.com/features.html).
  • Hit <Esc> to hide the search dialog.

demo

Config

hyper-search supports various style modifications.

In ~/.hyper.js:

Change Search Box Border Radius

module.exports = {
  config: {
    ...
      hyperSearchUI: {
        inputBorderRadius: 2
      }
    ...
  }
}

input border radius

Change Previous/Next Button Border Radius

module.exports = {
  config: {
    ...
      hyperSearchUI: {
        buttonBorderRadius: 2,
      }
    ...
  }
}

navigation button border radius

Change Button Margins

module.exports = {
  config: {
    ...
      hyperSearchUI: {
        buttonMargin: 2,
      }
    ...
  }
}

button margin

Change Prev/Next Button Text

module.exports = {
  config: {
    ...
      hyperSearchUI: {
        prevButton: '←',
        nextButton: '→'
      }
    ...
  }
}

change prev/next button

TODO:

  • regular expressions.

Credits

Jonatan Anauati ([email protected])

Contributors

License

ISC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].