one more curses binding

This commit is contained in:
Kartik K. Agaram 2021-11-25 20:51:38 -08:00
parent 73a22a397e
commit f5221ba651
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ function M.getstr (s) return curses.stdscr():getstr(s) end
function M.mvgetstr (y, x, s) return curses.stdscr():mvgetstr(y, x, s) end
function M.getyx () return curses.stdscr():getyx() end
function M.getmaxyx () return curses.stdscr():getmaxyx() end
function M.keypad (b) return curses.stdscr():keypad(b) end
function M.move (y,x) return curses.stdscr():move(y,x) end
function M.refresh () return curses.stdscr():refresh() end