Skip to content

Instantly share code, notes, and snippets.

@scmx
Created June 20, 2018 14:00
Show Gist options
  • Save scmx/42c1c4878caa45033eb2fe7d539db869 to your computer and use it in GitHub Desktop.
Save scmx/42c1c4878caa45033eb2fe7d539db869 to your computer and use it in GitHub Desktop.
Hyper Term Fix cursor hard to see #hyper #hyperterm #macos #cursor #black #text #pointer

The text cursor in Hyper term can be very hard to see, so I looked into changing it to white or similar for better visibility. Here's a related issue about this vercel/hyper#1045

The currently proposed solutions didn't entirely work for me until I used css: instead of termCSS:.

~/.hyper.js

css: `
  .xterm {
    cursor: default;
  }
`,

Where cursor: default becomes pointer instead of text.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment