Lines Matching refs:tp

45 	char	**ep, *s, **tp, *text[MAXHELP];  in help()  local
48 tp = text; in help()
51 *tp++ = "Point with the mouse and click button 1 to " in help()
53 *tp++ = "type the pattern to search for, and then " in help()
55 *tp++ = "and last 2 input fields, the pattern can be " in help()
57 *tp++ = "If the search is successful, you can edit " in help()
59 *tp++ = "by pointing with the mouse and clicking " in help()
61 *tp++ = "\nYou can either use the button 2 menu or " in help()
64 *tp++ = "Press the TAB key repeatedly to move to the " in help()
66 *tp++ = "pattern to search for, and then press the " in help()
68 *tp++ = "last 2 input fields, the pattern can be a " in help()
70 *tp++ = "If the search is successful, you can use " in help()
72 *tp++ = "1-9\tEdit the file containing the displayed " in help()
75 *tp++ = "space\tDisplay next lines.\n"; in help()
76 *tp++ = "+\tDisplay next lines.\n"; in help()
77 *tp++ = "-\tDisplay previous lines.\n"; in help()
78 *tp++ = "^E\tEdit all lines.\n"; in help()
79 *tp++ = ">\tWrite all lines to a file.\n"; in help()
80 *tp++ = ">>\tAppend all lines to a file.\n"; in help()
81 *tp++ = "<\tRead lines from a file.\n"; in help()
82 *tp++ = "^\tFilter all lines through a shell command.\n"; in help()
83 *tp++ = "|\tPipe all lines to a shell command.\n"; in help()
84 *tp++ = "\nAt any time you can use these command " in help()
87 *tp++ = "^P\tMove to the previous input field.\n"; in help()
89 *tp++ = "^A\tSearch again with the last pattern typed.\n"; in help()
90 *tp++ = "^B\tRecall previous input field and search pattern.\n"; in help()
91 *tp++ = "^F\tRecall next input field and search pattern.\n"; in help()
92 *tp++ = "^C\tToggle ignore/use letter case when searching.\n"; in help()
93 *tp++ = "^R\tRebuild the symbol database.\n"; in help()
94 *tp++ = "!\tStart an interactive shell (type ^D to return " in help()
96 *tp++ = "^L\tRedraw the screen.\n"; in help()
97 *tp++ = "?\tDisplay this list of commands.\n"; in help()
98 *tp++ = "^D\tExit cscope.\n"; in help()
99 *tp++ = "\nNote: If the first character of the pattern you " in help()
101 *tp++ = "a command, type a \\ character first.\n"; in help()
104 *tp++ = "Point with the mouse and click button 1 " in help()
106 *tp++ = "changed. You can also use the button 2 " in help()
109 *tp++ = "When changing text, you can use these " in help()
111 *tp++ = "1-9\tMark or unmark the line to be changed.\n"; in help()
113 *tp++ = "*\tMark or unmark all displayed lines to be " in help()
115 *tp++ = "space\tDisplay next lines.\n"; in help()
116 *tp++ = "+\tDisplay next lines.\n"; in help()
117 *tp++ = "-\tDisplay previous lines.\n"; in help()
118 *tp++ = "a\tMark or unmark all lines to be changed.\n"; in help()
119 *tp++ = "^D\tChange the marked lines and exit.\n"; in help()
120 *tp++ = "RETURN\tExit without changing the marked lines.\n"; in help()
121 *tp++ = "!\tStart an interactive shell (type ^D to return " in help()
123 *tp++ = "^L\tRedraw the screen.\n"; in help()
124 *tp++ = "?\tDisplay this list of commands.\n"; in help()
127 ep = tp; in help()
129 for (tp = text; tp < ep; ) { in help()
131 for (s = *tp; *s != '\0'; ++s) { in help()
136 (void) addstr(*tp++); in help()