1 | ZVEMSH4 ;DJB,VSHL**SYSTEM QWIKS [9/8/97 8:24pm]
|
---|
2 | ;;12;VPE;;COPYRIGHT David Bolduc @1993
|
---|
3 | ;
|
---|
4 | SYSTEM ;;;
|
---|
5 | ;;; S Y S T E M Q W I K S
|
---|
6 | ;;;
|
---|
7 | ;;; System QWIKs come with the VShell. To invoke a System QWIK, type two dots
|
---|
8 | ;;; followed by the name. For example, to run VGL you would type ..VGL.
|
---|
9 | ;;; The following is a list of the available System QWIKs, grouped by category:
|
---|
10 | ;;;
|
---|
11 | ;;; 1.) QWIK RELATED
|
---|
12 | ;;;
|
---|
13 | ;;; QB Assign User QWIKs to a Box. See BOXES help text.
|
---|
14 | ;;; QC Copy a QWIK.
|
---|
15 | ;;; QD Delete a QWIK.
|
---|
16 | ;;; QE Add/Edit a QWIK. Same as <TAB>.
|
---|
17 | ;;; QL1 List User QWIKs/Description - Same as <F1>1.
|
---|
18 | ;;; QL2 List User QWIKs/Code - Same as <F1>2.
|
---|
19 | ;;; QL3 List System QWIKs/Description - Same as <F1>3.
|
---|
20 | ;;; QL4 List System QWIKs/Code - Same as <F1>4.
|
---|
21 | ;;; QSAVE Saves your User QWIKs to a routine. Use for back-up or to send your
|
---|
22 | ;;; QWIKs to another programmer. This option also restores previously
|
---|
23 | ;;; saved QWIKs.
|
---|
24 | ;;; QV Create QWIKs that will run on different vendors' Mumps systems. See
|
---|
25 | ;;; VENDOR SPECIFIC CONFIGURATIONS help text.
|
---|
26 | ;;; QVL List Vendor Specific Code for QWIKs set up with QV.
|
---|
27 | ;;;
|
---|
28 | ;;; 2.) SHELL RELATED
|
---|
29 | ;;;
|
---|
30 | ;;; CLH Resequences your Command Line History. The VShell saves your last 20
|
---|
31 | ;;; commands. As new commands are added and old commands dropped, the
|
---|
32 | ;;; sequence number of each entry can get large. You may type ..CLH
|
---|
33 | ;;; at anytime, to resequence the numbers back to 1-20.
|
---|
34 | ;;; DTMVT For DataTree users. If you Control C out of some DataTree utilities,
|
---|
35 | ;;; VT100 terminal emulation is no longer in effect and you will see
|
---|
36 | ;;; junk on the screen. Use this QWIK to reset your terminal to VT100.
|
---|
37 | ;;; PARAM Enter System Parameters. See MISCELLANEOUS help text.
|
---|
38 | ;;; PUR The VShell has it's own scratch area: ^%ZVEMS("%"). PUR will purge
|
---|
39 | ;;; older nodes left behind by a previous session.
|
---|
40 | ;;; PURVGL Purge VGL's Command Line History.
|
---|
41 | ;;; PURVRR Purge VRR's Command Line History.
|
---|
42 | ;;; PURVEDD Purge VEDD's Command Line History.
|
---|
43 | ;;; PURVSHL Purge Command Line History for the VShell.
|
---|
44 | ;;; UL List VShell Users, including DUZ and ID numbers.
|
---|
45 | ;;; VER Displays VShell version number.
|
---|
46 | ;;;
|
---|
47 | ;;; 3.) PROGRAMMER TOOLS
|
---|
48 | ;;;
|
---|
49 | ;;; ASCII ASCII table display.
|
---|
50 | ;;; CAL 6 month calendar display.
|
---|
51 | ;;; E VRoutine Editor.
|
---|
52 | ;;; KEY Display escape sequence for any key pressed.
|
---|
53 | ;;; LBRY Routine Library. Used with ..E to help prevent routines from being
|
---|
54 | ;;; accidentily overwritten when there are multiple programmers working
|
---|
55 | ;;; on the same routines.
|
---|
56 | ;;; NOTES VPE programmer notes.
|
---|
57 | ;;; RL Routine Lister
|
---|
58 | ;;; RTN Start a new M routine. You may enter your lines of
|
---|
59 | ;;; code and it will prompt you for a routine name and save it to disk.
|
---|
60 | ;;; VEDD VElectronic Data Dictionary.
|
---|
61 | ;;; VGL VGlobal Lister.
|
---|
62 | ;;; VRR VRoutine Reader.
|
---|
63 | ;;; ZD Kill all local variables that start with %1(parameter).
|
---|
64 | ;;; ZP Use to ZPRINT a routine.
|
---|
65 | ;;; ZR Use to ZREMOVE from 1 to 9 routines.
|
---|
66 | ;;; ZW ZWRITE the symbol table. Writes the variables one page at a time.
|
---|
67 | ;;;
|
---|
68 | ;;; 4.) FILEMAN/VA KERNEL RELATED
|
---|
69 | ;;;
|
---|
70 | ;;; FMC Fileman programmer calls.
|
---|
71 | ;;; FMTI Fileman Input Template display.
|
---|
72 | ;;; FMTP Fileman Print Template display.
|
---|
73 | ;;; FMTS Fileman Sort Template display.
|
---|
74 | ;;; LF VA KERNEL Libray Functions.
|
---|
75 | ;;; XQRT Help text for VA Kernel menu options.
|
---|
76 | ;;;
|
---|
77 | ;;; 5.) VENDOR GENERIC QWIKS
|
---|
78 | ;;;
|
---|
79 | ;;; See VENDOR SPECIFIC CONFIGURATIONS help text.
|
---|
80 | ;;;***
|
---|