Lines Matching refs:optname

98 static struct optname a_optname      = { "search-skip-screen",   NULL };
99 static struct optname b_optname = { "buffers", NULL };
100 static struct optname B__optname = { "auto-buffers", NULL };
101 static struct optname c_optname = { "clear-screen", NULL };
102 static struct optname d_optname = { "dumb", NULL };
103 static struct optname D__optname = { "color", NULL };
104 static struct optname e_optname = { "quit-at-eof", NULL };
105 static struct optname f_optname = { "force", NULL };
106 static struct optname F__optname = { "quit-if-one-screen", NULL };
108 static struct optname g_optname = { "hilite-search", NULL };
110 static struct optname h_optname = { "max-back-scroll", NULL };
111 static struct optname i_optname = { "ignore-case", NULL };
112 static struct optname j_optname = { "jump-target", NULL };
113 static struct optname J__optname = { "status-column", NULL };
115 static struct optname k_optname = { "lesskey-file", NULL };
117 static struct optname ks_optname = { "lesskey-src", NULL };
118 static struct optname kc_optname = { "lesskey-content", NULL };
121 static struct optname K__optname = { "quit-on-intr", NULL };
122 static struct optname L__optname = { "no-lessopen", NULL };
123 static struct optname m_optname = { "long-prompt", NULL };
124 static struct optname n_optname = { "line-numbers", NULL };
126 static struct optname o_optname = { "log-file", NULL };
127 static struct optname O__optname = { "LOG-FILE", NULL };
129 static struct optname p_optname = { "pattern", NULL };
130 static struct optname P__optname = { "prompt", NULL };
131 static struct optname q2_optname = { "silent", NULL };
132 static struct optname q_optname = { "quiet", &q2_optname };
133 static struct optname r_optname = { "raw-control-chars", NULL };
134 static struct optname s_optname = { "squeeze-blank-lines", NULL };
135 static struct optname S__optname = { "chop-long-lines", NULL };
137 static struct optname t_optname = { "tag", NULL };
138 static struct optname T__optname = { "tag-file", NULL };
140 static struct optname u_optname = { "underline-special", NULL };
141 static struct optname V__optname = { "version", NULL };
142 static struct optname w_optname = { "hilite-unread", NULL };
143 static struct optname x_optname = { "tabs", NULL };
144 static struct optname X__optname = { "no-init", NULL };
145 static struct optname y_optname = { "max-forw-scroll", NULL };
146 static struct optname z_optname = { "window", NULL };
147 static struct optname quote_optname = { "quotes", NULL };
148 static struct optname tilde_optname = { "tilde", NULL };
149 static struct optname query_optname = { "help", NULL };
150 static struct optname pound_optname = { "shift", NULL };
151 static struct optname keypad_optname = { "no-keypad", NULL };
152 static struct optname oldbot_optname = { "old-bot", NULL };
153 static struct optname follow_optname = { "follow-name", NULL };
154 static struct optname use_backslash_optname = { "use-backslash", NULL };
155 static struct optname rscroll_optname = { "rscroll", NULL };
156 static struct optname nohistdups_optname = { "no-histdups", NULL };
157 static struct optname mousecap_optname = { "mouse", NULL };
158 static struct optname wheel_lines_optname = { "wheel-lines", NULL };
159 static struct optname perma_marks_optname = { "save-marks", NULL };
160 static struct optname linenum_width_optname = { "line-num-width", NULL };
161 static struct optname status_col_width_optname = { "status-col-width", NULL };
162 static struct optname incr_search_optname = { "incsearch", NULL };
163 static struct optname use_color_optname = { "use-color", NULL };
164 static struct optname want_filesize_optname = { "file-size", NULL };
165 static struct optname status_line_optname = { "status-line", NULL };
166 static struct optname header_optname = { "header", NULL };
167 static struct optname no_paste_optname = { "no-paste", NULL };
168 static struct optname form_feed_optname = { "form-feed", NULL };
169 static struct optname no_edit_warn_optname2 = { "no-warn-edit", NULL };
170 static struct optname no_edit_warn_optname = { "no-edit-warn", &no_edit_warn_optname2 };
171 static struct optname nonum_headers_optname = { "no-number-headers", NULL };
172 static struct optname nosearch_headers_optname = { "no-search-headers", NULL };
173 static struct optname nosearch_header_lines_optname = { "no-search-header-lines", NULL };
174 static struct optname nosearch_header_cols_optname = { "no-search-header-columns", NULL };
175 static struct optname redraw_on_quit_optname = { "redraw-on-quit", NULL };
176 static struct optname search_type_optname = { "search-options", NULL };
177 static struct optname exit_F_on_close_optname = { "exit-follow-on-close", NULL };
178 static struct optname modelines_optname = { "modelines", NULL };
179 static struct optname no_vbell_optname = { "no-vbell", NULL };
180 static struct optname intr_optname = { "intr", NULL };
181 static struct optname wordwrap_optname = { "wordwrap", NULL };
182 static struct optname show_preproc_error_optname = { "show-preproc-errors", NULL };
183 static struct optname proc_backspace_optname = { "proc-backspace", NULL };
184 static struct optname proc_tab_optname = { "proc-tab", NULL };
185 static struct optname proc_return_optname = { "proc-return", NULL };
186 static struct optname match_shift_optname = { "match-shift", NULL };
188 static struct optname ttyin_name_optname = { "tty", NULL };
836 constant char *optname = *p_optname; in findopt_name() local
838 struct optname *oname; in findopt_name()
842 struct optname *maxoname = NULL; in findopt_name()
864 len = sprefix(optname, oname->oname, uppercase); in findopt_name()
865 if (len == 0 || is_optchar(optname[len])) in findopt_name()
905 *p_optname = optname + maxlen; in findopt_name()
918 constant struct optname *oname; in findopts_name()