summaryrefslogtreecommitdiffhomepage
path: root/contrib/luacurses/test/getyx.lua
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/luacurses/test/getyx.lua')
-rw-r--r--contrib/luacurses/test/getyx.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/luacurses/test/getyx.lua b/contrib/luacurses/test/getyx.lua
new file mode 100644
index 000000000..4600236bb
--- /dev/null
+++ b/contrib/luacurses/test/getyx.lua
@@ -0,0 +1,13 @@
+
+require("curses");
+
+curses.initscr();
+while (true) do
+ local s = curses.getnstr(1000);
+ curses.addstr(s);
+ curses.addstr(":" .. table.concat({curses.getyx(curses.stdscr())}, ' ') .. "\n");
+ if (s == "exit") then break; end
+end
+
+curses.endwin();
+