diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-07-29 15:02:23 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-07-29 15:02:23 +0000 |
commit | c58eaf4659856a5c0ffa750d5b8b4e6983bb778a (patch) | |
tree | 351d116ba795feb86dd5f9cff46bafa79e35c651 | |
parent | 434fd59b3889827c8bbc961cbb896ee914698cf9 (diff) |
help messages
git-svn-id: svn://tug.org/texlive/trunk@9878 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/texdoc.tlu | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Master/texmf/scripts/texlive/texdoc.tlu b/Master/texmf/scripts/texlive/texdoc.tlu index 9836755c76e..c13cc940d61 100755 --- a/Master/texmf/scripts/texlive/texdoc.tlu +++ b/Master/texmf/scripts/texlive/texdoc.tlu @@ -34,23 +34,23 @@ version = '0.4beta' -- and set a default value in setup_config_from_defaults() if relevant usage_msg = [[ Usage: texdoc -h, --help | -V, --version | [option(s)] name(s) - -h|--help Show this help. - -V|--version Print the version of the program. - -v|--verbose Show the command used to display the documentation. - -i|--interactive Force interactive menus. - -I|--nointeractive Force non-interactive menus (lists). - -a|--alias Use the alias table. - -A|--noalias Don't use the alias table. - -e|--extension Search only for files of given type (extension). - -w|--view Use view mode: start a viewer. - -m|--mixed Use mixed mode (view or list). - -l|--list Use list mode: don't start a viewer. - -s|--search Search for name as a substring. - -r|--regex Search for name as a lua regex. -Typing `texdoc texdoc' gives you the complete manual.]] + -h, --help Show this short help. + -V, --version Print the version of the program. + -v, --verbose Show the command used to display the documentation. + -i, --interact Use interactive menus. + -I, --nointeract Use plain lists, no interaction required. + -a, --alias Use the alias table. + -A, --noalias Don't use the alias table. + -e, --extension Restrict file extensions to the given list. + -w, --view Use view mode: start a viewer. + -m, --mixed Use mixed mode (view or list). + -l, --list Use list mode: don't start a viewer. + -s, --search Search for name as a substring. + -r, --regex Search for name as a lua regex. +The command `texdoc texdoc' gives you the full user guide in pdf.]] notfound_msg = [[ Sorry, no documentation found for PKGNAME. -Perhap's you'll be more lucky with the CTAN catalogue's search tool at +If you are unsure about the name, try searching CTAN's TeX catalogue at http://ctan.org/search.html#byDescription.]] place_holder = '%%s' -- used for viewer commands |