Lines Matching defs:editline
79 struct editline { struct
80 char *el_prog; /* the program name */
81 FILE *el_outfile; /* Stdio stuff */
82 FILE *el_errfile; /* Stdio stuff */
83 int el_infd; /* Input file descriptor */
84 int el_flags; /* Various flags. */
85 coord_t el_cursor; /* Cursor location */
86 char **el_display, /* Real screen image = what is there */
87 **el_vdisplay; /* Virtual screen image = what we see */
89 el_line_t el_line; /* The current line information */
90 el_state_t el_state; /* Current editor state */
91 el_term_t el_term; /* Terminal dependent stuff */
92 el_tty_t el_tty; /* Tty dependent stuff */
93 el_refresh_t el_refresh; /* Refresh stuff */
94 el_prompt_t el_prompt; /* Prompt stuff */
95 el_chared_t el_chared; /* Characted editor stuff */
96 el_map_t el_map; /* Key mapping stuff */
97 el_key_t el_key; /* Key binding stuff */
98 el_history_t el_history; /* History stuff */
99 el_search_t el_search; /* Search stuff */
100 el_signal_t el_signal; /* Signal handling stuff */