Search text in your Hyper terminal
npm install hyper-searchExtension for Hyper that allows you to search text in your terminal.
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 ``` to toggle the search controls.`
- Hit ` to find the next occurrence.`
- Hit ` to find the previous occurrence.`
- Hit ` or `` to expand the selection to the right or left (see Mouseless Copy: https://www.iterm2.com/features.html).`
- Hit ` to hide the search dialog.
!demo
hyper-search supports various style modifications.
In ~/.hyper.js:
`javascript``
module.exports = {
config: {
...
hyperSearchUI: {
inputBorderRadius: 2
}
...
}
}
`javascript``
module.exports = {
config: {
...
hyperSearchUI: {
buttonBorderRadius: 2,
}
...
}
}
!navigation button border radius
`javascript``
module.exports = {
config: {
...
hyperSearchUI: {
buttonMargin: 2,
}
...
}
}
`javascript```
module.exports = {
config: {
...
hyperSearchUI: {
prevButton: '←',
nextButton: '→'
}
...
}
}
ISC