Method: PM::Main#config_curses
- Defined in:
- lib/patchmaster/curses/main.rb
#config_curses ⇒ Object
107 108 109 110 111 112 113 |
# File 'lib/patchmaster/curses/main.rb', line 107 def config_curses init_screen cbreak # unbuffered input noecho # do not show typed keys stdscr.keypad(true) # enable arrow keys curs_set(0) # cursor: 0 = invisible, 1 = normal end |