Lines Matching full:public
4 * You may distribute under the terms of either the GNU General Public
21 public int quiet; /* Should we suppress the audible bell? */
22 public int no_vbell; /* Should we suppress the visual bell? */
23 public int how_search; /* Where should forward searches start? */
24 public int top_scroll; /* Repaint screen from top?
26 public int pr_type; /* Type of prompt (short, medium, long) */
27 public int bs_mode; /* How to process backspaces */
28 public int know_dumb; /* Don't complain about dumb terminals */
29 public int quit_at_eof; /* Quit after hitting end of file twice */
30 public int quit_if_one_screen; /* Quit if EOF on first screen */
31 public int squeeze; /* Squeeze multiple blank lines into one */
32 public int tabstop; /* Tab settings */
33 public int back_scroll; /* Repaint screen on backwards movement */
34 public int forw_scroll; /* Repaint screen on forward movement */
35 public int caseless; /* Do "caseless" searches */
36 public int linenums; /* Use line numbers */
37 public int autobuf; /* Automatically allocate buffers as needed */
38 public int bufspace; /* Max buffer space per file (K) */
39 public int ctldisp; /* Send control chars to screen untranslated */
40 public int force_open; /* Open the file even if not regular file */
41 public int swindow; /* Size of scrolling window */
42 public int jump_sline; /* Screen line of "jump target" */
43 public long jump_sline_fraction = -1;
44 public int shift_count; /* Number of positions to shift horizontally */
45 public long shift_count_fraction = -1;
46 public int chopline; /* Truncate displayed lines at screen width */
47 public int wordwrap; /* Wrap lines at space */
48 public int no_init; /* Disable sending ti/te termcap strings */
49 public int no_keypad; /* Disable sending ks/ke termcap strings */
50 public int twiddle; /* Show tildes after EOF */
51 public int show_attn; /* Hilite first unread line */
52 public int status_col; /* Display a status column */
53 public int use_lessopen; /* Use the LESSOPEN filter */
54 public int quit_on_intr; /* Quit on interrupt */
55 public int follow_mode; /* F cmd Follows file desc or file name? */
56 public int oldbot; /* Old bottom of screen behavior {{REMOVE}} */
57 public int opt_use_backslash; /* Use backslash escaping in option parsing */
58 public LWCHAR rscroll_char; /* Char which marks chopped lines with -S */
59 public int rscroll_attr; /* Attribute of rscroll_char */
60 public int no_hist_dups; /* Remove dups from history list */
61 public int mousecap; /* Allow mouse for scrolling */
62 public int wheel_lines; /* Number of lines to scroll on mouse wheel scroll */
63 public int perma_marks; /* Save marks in history file */
64 public int linenum_width; /* Width of line numbers */
65 public int status_col_width; /* Width of status column */
66 public int incr_search; /* Incremental search */
67 public int use_color; /* Use UI color */
68 public int want_filesize; /* Scan to EOF if necessary to get file size */
69 public int status_line; /* Highlight entire marked lines */
70 public int header_lines; /* Freeze header lines at top of screen */
71 public int header_cols; /* Freeze header columns at left of screen */
72 public int nonum_headers; /* Don't give headers line numbers */
73 public int nosearch_header_lines = 0; /* Don't search in header lines */
74 public int nosearch_header_cols = 0; /* Don't search in header columns */
75 public int redraw_on_quit; /* Redraw last screen after term deinit */
76 public int def_search_type; /* */
77 public int exit_F_on_close; /* Exit F command when input closes */
78 public int modelines; /* Lines to read looking for modelines */
79 public int show_preproc_error; /* Display msg when preproc exits with error */
80 public int proc_backspace; /* Special handling of backspace */
81 public int proc_tab; /* Special handling of tab */
82 public int proc_return; /* Special handling of carriage return */
83 public int match_shift; /* Extra horizontal shift on search match */
84 public long match_shift_fraction = NUM_FRAC_DENOM/2; /* 1/2 of screen width */
85 public char intr_char = CONTROL('X'); /* Char to interrupt reads */
87 public int hilite_search; /* Highlight matched search patterns? */
90 public int less_is_more = 0; /* Make compatible with POSIX more */
745 public void init_option(void)
769 public struct loption * findopt(int c)
803 public struct loption * findopt_name(constant char **p_optname, constant char **p_oname, lbool *p_ambig)