about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2007-10-14 17:14:22 +0000
committerClint Adams <clint@users.sourceforge.net>2007-10-14 17:14:22 +0000
commitca1c691a74930fdb529b553df465c0ee5e33be83 (patch)
treebac4d0a8a277908e0cf7ae5e42f7b05d07236b25 /Doc
parent7c87209ceeb1844d579b2b40fcee9770c862e24c (diff)
downloadzsh-ca1c691a74930fdb529b553df465c0ee5e33be83.tar.gz
zsh-ca1c691a74930fdb529b553df465c0ee5e33be83.tar.xz
zsh-ca1c691a74930fdb529b553df465c0ee5e33be83.zip
23954: documentation for zsh/curses module.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Makefile.in2
-rw-r--r--Doc/Zsh/mod_curses.yo38
2 files changed, 39 insertions, 1 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in
index 3938c4d03..e1c9446d7 100644
--- a/Doc/Makefile.in
+++ b/Doc/Makefile.in
@@ -57,7 +57,7 @@ YODLDOC = $(MAN) texi
 MODDOCSRC = \
 Zsh/mod_cap.yo Zsh/mod_clone.yo \
 Zsh/mod_compctl.yo Zsh/mod_complete.yo Zsh/mod_complist.yo \
-Zsh/mod_computil.yo \
+Zsh/mod_computil.yo Zsh/mod_curses.yo \
 Zsh/mod_datetime.yo Zsh/mod_deltochar.yo \
 Zsh/mod_example.yo Zsh/mod_files.yo \
 Zsh/mod_mapfile.yo Zsh/mod_mathfunc.yo Zsh/mod_newuser.yo \
diff --git a/Doc/Zsh/mod_curses.yo b/Doc/Zsh/mod_curses.yo
new file mode 100644
index 000000000..82b95ff51
--- /dev/null
+++ b/Doc/Zsh/mod_curses.yo
@@ -0,0 +1,38 @@
+COMMENT(!MOD!zsh/curses
+curses windowing commands
+!MOD!)
+The tt(zsh/curses) module makes available one builtin command:
+
+startitem()
+findex(zcurses)
+cindex(windows, curses)
+xitem(tt(zcurses) tt(-a) var(nlines) var(ncols) var(begin_y) var(begin_x) var(targetwin) )
+xitem(tt(zcurses) tt(-d) var(targetwin) )
+xitem(tt(zcurses) tt(-r) var(targetwin) )
+xitem(tt(zcurses) tt(-m) var(targetwin) var(new_y) var(new_x) )
+xitem(tt(zcurses) tt(-c) var(targetwin) var(character) )
+xitem(tt(zcurses) tt(-s) var(targetwin) var(string) )
+item(tt(zcurses) tt(-b) var(targetwin) var(border) )(
+Manipulate curses windows.
+
+With tt(-a), create a window with var(nlines) lines and var(ncols) columns.
+Its upper left corner will be placed at row var(begin_y) and column
+var(begin_x) of the screen.  var(targetwin) must be an integer between 1
+and 9 inclusive, and refer to a window that is not currently assigned.
+
+Use tt(-d) to delete a window created with tt(-a).
+
+The tt(-r) command will refresh window var(targetwin); this is necessary to
+make any pending changes (such as characters you have prepared for output
+with tt(-c)) visible on the screen.
+
+tt(-m) moves var(targetwin) to new coordinates var(new_y) and var(new_x).
+
+Outputting characters and strings are achieved by tt(-c) and tt(-s)
+respectively.
+
+To draw a border around window var(targetwin), use tt(-b).
+)
+enditem()
+
+enditem()