zsh-workers
 help / color / mirror / code / Atom feed
From: Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
To: zsh-workers@sunsite.auc.dk
Subject: PATCH: docs
Date: Fri, 28 Apr 2000 15:17:55 +0200 (MET DST)	[thread overview]
Message-ID: <200004281317.PAA22902@beta.informatik.hu-berlin.de> (raw)


This mentions the `zcompile -z' trick for fans of KSH_AUTOLOAD in the
compsys manual and moves the compctl section behind, err... after,
err... to the err... compsys section.

Bye
 Sven

Index: Doc/zsh.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/zsh.yo,v
retrieving revision 1.4
diff -u -r1.4 zsh.yo
--- Doc/zsh.yo	2000/04/01 20:43:44	1.4
+++ Doc/zsh.yo	2000/04/28 13:15:53
@@ -61,9 +61,9 @@
 ifnzman(includefile(Zsh/options.yo))\x01
 ifnzman(includefile(Zsh/builtins.yo))\x01
 ifnzman(includefile(Zsh/zle.yo))\x01
-ifnzman(includefile(Zsh/compctl.yo))\x01
 ifnzman(includefile(Zsh/compwid.yo))\x01
 ifnzman(includefile(Zsh/compsys.yo))\x01
+ifnzman(includefile(Zsh/compctl.yo))\x01
 ifnzman(includefile(Zsh/modules.yo))\x01
 ifnzman(includefile(Zsh/zftpsys.yo))\x01
 ifzshall(\
@@ -75,9 +75,9 @@
 source(zshoptions)
 source(zshbuiltins)
 source(zshzle)
-source(zshcompctl)
 source(zshcompwid)
 source(zshcompsys)
+source(zshcompctl)
 source(zshmodules)
 source(zshzftpsys)
 manpage(ZSHALL)(1)(date())(zsh version())
Index: Doc/Zsh/compctl.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compctl.yo,v
retrieving revision 1.2
diff -u -r1.2 compctl.yo
--- Doc/Zsh/compctl.yo	2000/04/01 20:43:44	1.2
+++ Doc/Zsh/compctl.yo	2000/04/28 13:15:54
@@ -1,4 +1,4 @@
-texinode(Completion Using compctl)(Completion Widgets)(Zsh Line Editor)(Top)
+texinode(Completion Using compctl)(Zsh Modules)(Completion System)(Top)
 chapter(Completion Using compctl)
 cindex(completion, programmable)
 cindex(completion, controlling)
Index: Doc/Zsh/compsys.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compsys.yo,v
retrieving revision 1.25
diff -u -r1.25 compsys.yo
--- Doc/Zsh/compsys.yo	2000/04/27 14:16:15	1.25
+++ Doc/Zsh/compsys.yo	2000/04/28 13:15:55
@@ -1,4 +1,4 @@
-texinode(Completion System)(Zsh Modules)(Completion Widgets)(Top)
+texinode(Completion System)(Completion Using compctl)(Completion Widgets)(Top)
 chapter(Completion System)
 cindex(completion system)
 cindex(completion, programmable)
@@ -201,6 +201,18 @@
 after it.  The tt(#compdef) tags use the tt(compdef) function described
 below; the main difference is that the name of the function is supplied
 implicitly.
+
+Note also that the functions for the completion system assume that the
+tt(KSH_AUTOLOAD) option is not set, they can't be loaded when it is
+set. But when you can't or don't want to unset tt(KSH_AUTOLOAD) and
+still want to use the completion system, you can simply use one or
+more tt(zwc) file(s) created with the tt(zcompile) builtin command
+with the tt(-z) option to load the functions for the completion system 
+from (see
+ifzman(zmanref(zshbuiltins))\
+ifnzman(noderef(Shell Builtin Commands))\
+). This forces the functions to be autoloaded the way zsh normally
+loads functions.
 
 subsect(Functions)
 
Index: Doc/Zsh/compwid.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compwid.yo,v
retrieving revision 1.6
diff -u -r1.6 compwid.yo
--- Doc/Zsh/compwid.yo	2000/04/26 06:54:27	1.6
+++ Doc/Zsh/compwid.yo	2000/04/28 13:15:56
@@ -1,4 +1,4 @@
-texinode(Completion Widgets)(Completion System)(Completion Using compctl)(Top)
+texinode(Completion Widgets)(Completion System)(Zsh Line Editor)(Top)
 chapter(Completion Widgets)
 cindex(completion, widgets)
 cindex(completion, programmable)
Index: Doc/Zsh/modules.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/modules.yo,v
retrieving revision 1.2
diff -u -r1.2 modules.yo
--- Doc/Zsh/modules.yo	2000/04/01 20:43:44	1.2
+++ Doc/Zsh/modules.yo	2000/04/28 13:15:56
@@ -1,4 +1,4 @@
-texinode(Zsh Modules)(Zftp Function System)(Completion System)(Top)
+texinode(Zsh Modules)(Zftp Function System)(Completion Using compctl)(Top)
 chapter(Zsh Modules)
 cindex(modules)
 sect(Description)
Index: Doc/Zsh/seealso.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/seealso.yo,v
retrieving revision 1.1.1.3
diff -u -r1.1.1.3 seealso.yo
--- Doc/Zsh/seealso.yo	1999/04/15 18:25:51	1.1.1.3
+++ Doc/Zsh/seealso.yo	2000/04/28 13:15:56
@@ -9,9 +9,9 @@
 ifzshone(\
 ,
 zmanref(zshbuiltins),
-zmanref(zshcompctl),
 zmanref(zshcompwid),
 zmanref(zshcompsys),
+zmanref(zshcompctl),
 zmanref(zshexpn),
 zmanref(zshmisc),
 zmanref(zshmodules),
Index: Doc/Zsh/zle.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/zle.yo,v
retrieving revision 1.4
diff -u -r1.4 zle.yo
--- Doc/Zsh/zle.yo	2000/04/12 08:24:16	1.4
+++ Doc/Zsh/zle.yo	2000/04/28 13:15:57
@@ -1,4 +1,4 @@
-texinode(Zsh Line Editor)(Completion Using compctl)(Shell Builtin Commands)(Top)
+texinode(Zsh Line Editor)(Completion Widgets)(Shell Builtin Commands)(Top)
 chapter(Zsh Line Editor)
 cindex(line editor)
 cindex(editor, line)

--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


             reply	other threads:[~2000-04-28 13:18 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-04-28 13:17 Sven Wischnowsky [this message]
2000-04-28 17:03 ` Bart Schaefer
  -- strict thread matches above, loose matches on Subject: below --
2000-10-05 14:06 Sven Wischnowsky
2000-10-05  8:38 Sven Wischnowsky
2000-10-05 13:53 ` Andrej Borsenkow
2000-01-07 14:49 Sven Wischnowsky
2000-01-07 19:22 ` Zefram
2000-01-08 20:17 ` Bart Schaefer
2000-01-08 20:21   ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200004281317.PAA22902@beta.informatik.hu-berlin.de \
    --to=wischnow@informatik.hu-berlin.de \
    --cc=zsh-workers@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).