Extension for Hyper that automatically links URLs.
Install Hyper and add hyperlinks to plugins
in ~/.hyper.js.
- Focus on the Hyper window and
Ctrl + Cto abort opening url. - Hold
Commandkey and click a link to open it within Hyper (instead of in your default browser).
Add custom styles to termCSS in your ~/.hyper.js.
termCSS: `
x-screen a {
color: blue;
}
x-screen a.hover {
text-decoration: none;
}
`Open in default browser when click a link. If holding Meta(Command) key then a link open in the Hyper.
Default is true.
config: {
hyperlinks: {
defaultBrowser: false
}
}