Skip to content

Instantly share code, notes, and snippets.

View lightkun10's full-sized avatar
🏠
Working at home

Fierdy Pandu lightkun10

🏠
Working at home
  • Pekanbaru, Indonesia.
View GitHub Profile
@lightkun10
lightkun10 / keypress.rb
Created December 16, 2019 10:12 — forked from acook/keypress.rb
Read keypresses from user in terminal, including arrow keys using pure Ruby. This has since been folded into a much more robust gem called Remedy. https://rubygems.org/gems/remedy & https://github.com/acook/remedy
require 'io/console'
# Reads keypresses from the user including 2 and 3 escape character sequences.
def read_char
STDIN.echo = false
STDIN.raw!
input = STDIN.getc.chr
if input == "\e" then
input << STDIN.read_nonblock(3) rescue nil