Rob Landley | e5e1a10 | 2006-06-21 01:15:36 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2 | /* |
| 3 | * tiny vi.c: A small 'vi' clone |
| 4 | * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com> |
| 5 | * |
Paul Fox | dbf935d | 2006-03-27 20:29:33 +0000 | [diff] [blame] | 6 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 9 | /* |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 10 | * Things To Do: |
| 11 | * EXINIT |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 12 | * $HOME/.exrc and ./.exrc |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 13 | * add magic to search /foo.*bar |
| 14 | * add :help command |
| 15 | * :map macros |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 16 | * if mark[] values were line numbers rather than pointers |
| 17 | * it would be easier to change the mark when add/delete lines |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 18 | * More intelligence in refresh() |
| 19 | * ":r !cmd" and "!cmd" to filter text through an external command |
| 20 | * A true "undo" facility |
| 21 | * An "ex" line oriented mode- maybe using "cmdedit" |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 24 | #include "libbb.h" |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 25 | |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 26 | /* the CRASHME code is unmaintained, and doesn't currently build */ |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 27 | #define ENABLE_FEATURE_VI_CRASHME 0 |
| 28 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 29 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 30 | #if ENABLE_LOCALE_SUPPORT |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 31 | |
| 32 | #if ENABLE_FEATURE_VI_8BIT |
| 33 | #define Isprint(c) isprint(c) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 34 | #else |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 35 | #define Isprint(c) (isprint(c) && (unsigned char)(c) < 0x7f) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 36 | #endif |
| 37 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 38 | #else |
| 39 | |
| 40 | /* 0x9b is Meta-ESC */ |
| 41 | #if ENABLE_FEATURE_VI_8BIT |
| 42 | #define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b) |
| 43 | #else |
| 44 | #define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f) |
| 45 | #endif |
| 46 | |
| 47 | #endif |
| 48 | |
| 49 | |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 50 | enum { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 51 | MAX_TABSTOP = 32, // sanity limit |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 52 | // User input len. Need not be extra big. |
| 53 | // Lines in file being edited *can* be bigger than this. |
| 54 | MAX_INPUT_LEN = 128, |
| 55 | // Sanity limits. We have only one buffer of this size. |
| 56 | MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN, |
| 57 | MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN, |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 58 | }; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 59 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 60 | /* vt102 typical ESC sequence */ |
| 61 | /* terminal standout start/normal ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 62 | static const char SOs[] ALIGN1 = "\033[7m"; |
| 63 | static const char SOn[] ALIGN1 = "\033[0m"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 64 | /* terminal bell sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 65 | static const char bell[] ALIGN1 = "\007"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 66 | /* Clear-end-of-line and Clear-end-of-screen ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 67 | static const char Ceol[] ALIGN1 = "\033[0K"; |
| 68 | static const char Ceos[] ALIGN1 = "\033[0J"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 69 | /* Cursor motion arbitrary destination ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 70 | static const char CMrc[] ALIGN1 = "\033[%d;%dH"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 71 | /* Cursor motion up and down ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 72 | static const char CMup[] ALIGN1 = "\033[A"; |
| 73 | static const char CMdown[] ALIGN1 = "\n"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 74 | |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 75 | #if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK |
| 76 | // cmds modifying text[] |
| 77 | // vda: removed "aAiIs" as they switch us into insert mode |
| 78 | // and remembering input for replay after them makes no sense |
| 79 | static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~"; |
| 80 | #endif |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 81 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 82 | enum { |
| 83 | YANKONLY = FALSE, |
| 84 | YANKDEL = TRUE, |
| 85 | FORWARD = 1, // code depends on "1" for array index |
| 86 | BACK = -1, // code depends on "-1" for array index |
| 87 | LIMITED = 0, // how much of text[] in char_search |
| 88 | FULL = 1, // how much of text[] in char_search |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 89 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 90 | S_BEFORE_WS = 1, // used in skip_thing() for moving "dot" |
| 91 | S_TO_WS = 2, // used in skip_thing() for moving "dot" |
| 92 | S_OVER_WS = 3, // used in skip_thing() for moving "dot" |
| 93 | S_END_PUNCT = 4, // used in skip_thing() for moving "dot" |
Denis Vlasenko | 8e858e2 | 2007-03-07 09:35:43 +0000 | [diff] [blame] | 94 | S_END_ALNUM = 5, // used in skip_thing() for moving "dot" |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 95 | }; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 96 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 97 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 98 | /* vi.c expects chars to be unsigned. */ |
| 99 | /* busybox build system provides that, but it's better */ |
| 100 | /* to audit and fix the source */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 101 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 102 | struct globals { |
| 103 | /* many references - keep near the top of globals */ |
| 104 | char *text, *end; // pointers to the user data in memory |
| 105 | char *dot; // where all the action takes place |
| 106 | int text_size; // size of the allocated buffer |
| 107 | |
| 108 | /* the rest */ |
| 109 | smallint vi_setops; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 110 | #define VI_AUTOINDENT 1 |
| 111 | #define VI_SHOWMATCH 2 |
| 112 | #define VI_IGNORECASE 4 |
| 113 | #define VI_ERR_METHOD 8 |
| 114 | #define autoindent (vi_setops & VI_AUTOINDENT) |
| 115 | #define showmatch (vi_setops & VI_SHOWMATCH ) |
| 116 | #define ignorecase (vi_setops & VI_IGNORECASE) |
| 117 | /* indicate error with beep or flash */ |
| 118 | #define err_method (vi_setops & VI_ERR_METHOD) |
| 119 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 120 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 121 | smallint readonly_mode; |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 122 | #define SET_READONLY_FILE(flags) ((flags) |= 0x01) |
| 123 | #define SET_READONLY_MODE(flags) ((flags) |= 0x02) |
| 124 | #define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe) |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 125 | #else |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 126 | #define SET_READONLY_FILE(flags) ((void)0) |
| 127 | #define SET_READONLY_MODE(flags) ((void)0) |
| 128 | #define UNSET_READONLY_FILE(flags) ((void)0) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 129 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 130 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 131 | smallint editing; // >0 while we are editing a file |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 132 | // [code audit says "can be 0, 1 or 2 only"] |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 133 | smallint cmd_mode; // 0=command 1=insert 2=replace |
| 134 | int file_modified; // buffer contents changed (counter, not flag!) |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 135 | int last_file_modified; // = -1; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 136 | int fn_start; // index of first cmd line file name |
| 137 | int save_argc; // how many file names on cmd line |
| 138 | int cmdcnt; // repetition count |
| 139 | unsigned rows, columns; // the terminal screen is this size |
| 140 | int crow, ccol; // cursor is on Crow x Ccol |
| 141 | int offset; // chars scrolled off the screen to the left |
| 142 | int have_status_msg; // is default edit status needed? |
| 143 | // [don't make smallint!] |
| 144 | int last_status_cksum; // hash of current status line |
| 145 | char *current_filename; |
| 146 | char *screenbegin; // index into text[], of top line on the screen |
| 147 | char *screen; // pointer to the virtual screen buffer |
| 148 | int screensize; // and its size |
| 149 | int tabstop; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 150 | int last_forward_char; // last char searched for with 'f' (int because of Unicode) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 151 | char erase_char; // the users erase character |
| 152 | char last_input_char; // last char read from user |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 153 | |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 154 | smalluint chars_to_parse; |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 155 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 156 | smallint adding2q; // are we currently adding user input to q |
| 157 | int lmc_len; // length of last_modifying_cmd |
| 158 | char *ioq, *ioq_start; // pointer to string for get_one_char to "read" |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 159 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 160 | #if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 161 | int last_row; // where the cursor was last moved to |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 162 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 163 | #if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 164 | int my_pid; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 165 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 166 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 167 | char *last_search_pattern; // last pattern from a '/' or '?' search |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 168 | #endif |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 169 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 170 | /* former statics */ |
| 171 | #if ENABLE_FEATURE_VI_YANKMARK |
| 172 | char *edit_file__cur_line; |
| 173 | #endif |
| 174 | int refresh__old_offset; |
| 175 | int format_edit_status__tot; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 176 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 177 | /* a few references only */ |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 178 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 179 | int YDreg, Ureg; // default delete register and orig line for "U" |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 180 | char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27 |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 181 | char *mark[28]; // user marks points somewhere in text[]- a-z and previous context '' |
| 182 | char *context_start, *context_end; |
| 183 | #endif |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 184 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 185 | sigjmp_buf restart; // catch_sig() |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 186 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 187 | struct termios term_orig, term_vi; // remember what the cooked mode was |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 188 | #if ENABLE_FEATURE_VI_COLON |
| 189 | char *initial_cmds[3]; // currently 2 entries, NULL terminated |
| 190 | #endif |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 191 | // Should be just enough to hold a key sequence, |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 192 | // but CRASHME mode uses it as generated command buffer too |
| 193 | #if ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 1dfeeeb | 2008-10-18 19:04:37 +0000 | [diff] [blame] | 194 | char readbuffer[128]; |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 195 | #else |
Denis Vlasenko | 5f6aaf3 | 2008-10-25 23:27:29 +0000 | [diff] [blame] | 196 | char readbuffer[KEYCODE_BUFFER_SIZE]; |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 197 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 198 | #define STATUS_BUFFER_LEN 200 |
| 199 | char status_buffer[STATUS_BUFFER_LEN]; // messages to the user |
| 200 | #if ENABLE_FEATURE_VI_DOT_CMD |
| 201 | char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "." |
| 202 | #endif |
| 203 | char get_input_line__buf[MAX_INPUT_LEN]; /* former static */ |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 204 | |
| 205 | char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2]; |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 206 | }; |
| 207 | #define G (*ptr_to_globals) |
| 208 | #define text (G.text ) |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 209 | #define text_size (G.text_size ) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 210 | #define end (G.end ) |
| 211 | #define dot (G.dot ) |
| 212 | #define reg (G.reg ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 213 | |
| 214 | #define vi_setops (G.vi_setops ) |
| 215 | #define editing (G.editing ) |
| 216 | #define cmd_mode (G.cmd_mode ) |
| 217 | #define file_modified (G.file_modified ) |
| 218 | #define last_file_modified (G.last_file_modified ) |
| 219 | #define fn_start (G.fn_start ) |
| 220 | #define save_argc (G.save_argc ) |
| 221 | #define cmdcnt (G.cmdcnt ) |
| 222 | #define rows (G.rows ) |
| 223 | #define columns (G.columns ) |
| 224 | #define crow (G.crow ) |
| 225 | #define ccol (G.ccol ) |
| 226 | #define offset (G.offset ) |
| 227 | #define status_buffer (G.status_buffer ) |
| 228 | #define have_status_msg (G.have_status_msg ) |
| 229 | #define last_status_cksum (G.last_status_cksum ) |
| 230 | #define current_filename (G.current_filename ) |
| 231 | #define screen (G.screen ) |
| 232 | #define screensize (G.screensize ) |
| 233 | #define screenbegin (G.screenbegin ) |
| 234 | #define tabstop (G.tabstop ) |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 235 | #define last_forward_char (G.last_forward_char ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 236 | #define erase_char (G.erase_char ) |
| 237 | #define last_input_char (G.last_input_char ) |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 238 | #define chars_to_parse (G.chars_to_parse ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 239 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 240 | #define readonly_mode (G.readonly_mode ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 241 | #else |
| 242 | #define readonly_mode 0 |
| 243 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 244 | #define adding2q (G.adding2q ) |
| 245 | #define lmc_len (G.lmc_len ) |
| 246 | #define ioq (G.ioq ) |
| 247 | #define ioq_start (G.ioq_start ) |
| 248 | #define last_row (G.last_row ) |
| 249 | #define my_pid (G.my_pid ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 250 | #define last_search_pattern (G.last_search_pattern) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 251 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 252 | #define edit_file__cur_line (G.edit_file__cur_line) |
| 253 | #define refresh__old_offset (G.refresh__old_offset) |
| 254 | #define format_edit_status__tot (G.format_edit_status__tot) |
| 255 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 256 | #define YDreg (G.YDreg ) |
| 257 | #define Ureg (G.Ureg ) |
| 258 | #define mark (G.mark ) |
| 259 | #define context_start (G.context_start ) |
| 260 | #define context_end (G.context_end ) |
| 261 | #define restart (G.restart ) |
| 262 | #define term_orig (G.term_orig ) |
| 263 | #define term_vi (G.term_vi ) |
| 264 | #define initial_cmds (G.initial_cmds ) |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 265 | #define readbuffer (G.readbuffer ) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 266 | #define scr_out_buf (G.scr_out_buf ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 267 | #define last_modifying_cmd (G.last_modifying_cmd ) |
| 268 | #define get_input_line__buf (G.get_input_line__buf) |
| 269 | |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 270 | #define INIT_G() do { \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 271 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 272 | last_file_modified = -1; \ |
Denis Vlasenko | 31d58e5 | 2008-10-29 13:16:28 +0000 | [diff] [blame] | 273 | /* "" but has space for 2 chars: */ \ |
| 274 | USE_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \ |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 275 | } while (0) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 276 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 277 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 278 | static int init_text_buffer(char *); // init from file or create new |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 279 | static void edit_file(char *); // edit one file |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 280 | static void do_cmd(int); // execute a command |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 281 | static int next_tabstop(int); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 282 | static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot |
| 283 | static char *begin_line(char *); // return pointer to cur line B-o-l |
| 284 | static char *end_line(char *); // return pointer to cur line E-o-l |
| 285 | static char *prev_line(char *); // return pointer to prev line B-o-l |
| 286 | static char *next_line(char *); // return pointer to next line B-o-l |
| 287 | static char *end_screen(void); // get pointer to last char on screen |
| 288 | static int count_lines(char *, char *); // count line from start to stop |
| 289 | static char *find_line(int); // find begining of line #li |
| 290 | static char *move_to_col(char *, int); // move "p" to column l |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 291 | static void dot_left(void); // move dot left- dont leave line |
| 292 | static void dot_right(void); // move dot right- dont leave line |
| 293 | static void dot_begin(void); // move dot to B-o-l |
| 294 | static void dot_end(void); // move dot to E-o-l |
| 295 | static void dot_next(void); // move dot to next line B-o-l |
| 296 | static void dot_prev(void); // move dot to prev line B-o-l |
| 297 | static void dot_scroll(int, int); // move the screen up or down |
| 298 | static void dot_skip_over_ws(void); // move dot pat WS |
| 299 | static void dot_delete(void); // delete the char at 'dot' |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 300 | static char *bound_dot(char *); // make sure text[0] <= P < "end" |
| 301 | static char *new_screen(int, int); // malloc virtual screen memory |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 302 | static char *char_insert(char *, char); // insert the char c at 'p' |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 303 | // might reallocate text[]! use p += stupid_insert(p, ...), |
| 304 | // and be careful to not use pointers into potentially freed text[]! |
| 305 | static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p' |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 306 | static int find_range(char **, char **, char); // return pointers for an object |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 307 | static int st_test(char *, int, int, char *); // helper for skip_thing() |
| 308 | static char *skip_thing(char *, int, int, int); // skip some object |
| 309 | static char *find_pair(char *, char); // find matching pair () [] {} |
| 310 | static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 311 | // might reallocate text[]! use p += text_hole_make(p, ...), |
| 312 | // and be careful to not use pointers into potentially freed text[]! |
| 313 | static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 314 | static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 315 | static void show_help(void); // display some help info |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 316 | static void rawmode(void); // set "raw" mode on tty |
| 317 | static void cookmode(void); // return to "cooked" mode on tty |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 318 | // sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready) |
| 319 | static int mysleep(int); |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 320 | static int readit(void); // read (maybe cursor) key from stdin |
| 321 | static int get_one_char(void); // read 1 char from stdin |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 322 | static int file_size(const char *); // what is the byte size of "fn" |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 323 | #if !ENABLE_FEATURE_VI_READONLY |
| 324 | #define file_insert(fn, p, update_ro_status) file_insert(fn, p) |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 325 | #endif |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 326 | // file_insert might reallocate text[]! |
| 327 | static int file_insert(const char *, char *, int); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 328 | static int file_write(char *, char *, char *); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 329 | #if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
| 330 | #define place_cursor(a, b, optimize) place_cursor(a, b) |
| 331 | #endif |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 332 | static void place_cursor(int, int, int); |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 333 | static void screen_erase(void); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 334 | static void clear_to_eol(void); |
| 335 | static void clear_to_eos(void); |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 336 | static void go_bottom_and_clear_to_eol(void); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 337 | static void standout_start(void); // send "start reverse video" sequence |
| 338 | static void standout_end(void); // send "end reverse video" sequence |
| 339 | static void flash(int); // flash the terminal screen |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 340 | static void show_status_line(void); // put a message on the bottom line |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 341 | static void status_line(const char *, ...); // print to status buf |
| 342 | static void status_line_bold(const char *, ...); |
| 343 | static void not_implemented(const char *); // display "Not implemented" message |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 344 | static int format_edit_status(void); // format file status on status line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 345 | static void redraw(int); // force a full screen refresh |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 346 | static char* format_line(char* /*, int*/); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 347 | static void refresh(int); // update the terminal from screen[] |
| 348 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 349 | static void Indicate_Error(void); // use flash or beep to indicate error |
| 350 | #define indicate_error(c) Indicate_Error() |
Paul Fox | 90372ed | 2005-10-09 14:26:26 +0000 | [diff] [blame] | 351 | static void Hit_Return(void); |
| 352 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 353 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 354 | static char *char_search(char *, const char *, int, int); // search for pattern starting at p |
| 355 | static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 356 | #endif |
| 357 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 358 | static char *get_one_address(char *, int *); // get colon addr, if present |
| 359 | static char *get_address(char *, int *, int *); // get two colon addrs, if present |
| 360 | static void colon(char *); // execute the "colon" mode cmds |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 361 | #endif |
| 362 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 363 | static void winch_sig(int); // catch window size changes |
| 364 | static void suspend_sig(int); // catch ctrl-Z |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 365 | static void catch_sig(int); // catch ctrl-C and alarm time-outs |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 366 | #endif |
| 367 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 368 | static void start_new_cmd_q(char); // new queue for command |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 369 | static void end_cmd_q(void); // stop saving input chars |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 370 | #else |
| 371 | #define end_cmd_q() ((void)0) |
| 372 | #endif |
| 373 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 374 | static void showmatching(char *); // show the matching pair () [] {} |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 375 | #endif |
| 376 | #if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 377 | // might reallocate text[]! use p += string_insert(p, ...), |
| 378 | // and be careful to not use pointers into potentially freed text[]! |
| 379 | static uintptr_t string_insert(char *, const char *); // insert the string at 'p' |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 380 | #endif |
| 381 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 382 | static char *text_yank(char *, char *, int); // save copy of "p" into a register |
| 383 | static char what_reg(void); // what is letter of current YDreg |
| 384 | static void check_context(char); // remember context for '' command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 385 | #endif |
| 386 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 387 | static void crash_dummy(); |
| 388 | static void crash_test(); |
| 389 | static int crashme = 0; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 390 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 391 | |
| 392 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 393 | static void write1(const char *out) |
| 394 | { |
| 395 | fputs(out, stdout); |
| 396 | } |
| 397 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 398 | int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 399 | int vi_main(int argc, char **argv) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 400 | { |
Eric Andersen | d402edf | 2001-04-04 19:29:48 +0000 | [diff] [blame] | 401 | int c; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 402 | |
| 403 | INIT_G(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 404 | |
Denis Vlasenko | cd5c786 | 2007-05-17 16:37:22 +0000 | [diff] [blame] | 405 | #if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 406 | my_pid = getpid(); |
| 407 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 408 | #if ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 409 | srand((long) my_pid); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 410 | #endif |
Denis Vlasenko | 2414a96 | 2007-07-18 22:03:40 +0000 | [diff] [blame] | 411 | #ifdef NO_SUCH_APPLET_YET |
| 412 | /* If we aren't "vi", we are "view" */ |
| 413 | if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 414 | SET_READONLY_MODE(readonly_mode); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 415 | } |
Denis Vlasenko | 2414a96 | 2007-07-18 22:03:40 +0000 | [diff] [blame] | 416 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 417 | |
Bernhard Reutner-Fischer | 73f56bb | 2007-09-22 21:18:46 +0000 | [diff] [blame] | 418 | vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE; |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 419 | // 1- process $HOME/.exrc file (not inplemented yet) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 420 | // 2- process EXINIT variable from environment |
| 421 | // 3- process command line args |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 422 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 423 | { |
| 424 | char *p = getenv("EXINIT"); |
| 425 | if (p && *p) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 426 | initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 427 | } |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 428 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 429 | while ((c = getopt(argc, argv, "hCRH" USE_FEATURE_VI_COLON("c:"))) != -1) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 430 | switch (c) { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 431 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 432 | case 'C': |
| 433 | crashme = 1; |
| 434 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 435 | #endif |
| 436 | #if ENABLE_FEATURE_VI_READONLY |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 437 | case 'R': // Read-only flag |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 438 | SET_READONLY_MODE(readonly_mode); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 439 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 440 | #endif |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 441 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 442 | case 'c': // cmd line vi command |
| 443 | if (*optarg) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 444 | initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 445 | break; |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 446 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 447 | case 'H': |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 448 | show_help(); |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 449 | /* fall through */ |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 450 | default: |
Denis Vlasenko | c693840 | 2008-03-24 02:18:03 +0000 | [diff] [blame] | 451 | bb_show_usage(); |
Eric Andersen | dd8500b | 2001-07-02 18:06:14 +0000 | [diff] [blame] | 452 | return 1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | |
| 456 | // The argv array can be used by the ":next" and ":rewind" commands |
| 457 | // save optind. |
| 458 | fn_start = optind; // remember first file name for :next and :rew |
| 459 | save_argc = argc; |
| 460 | |
| 461 | //----- This is the main file handling loop -------------- |
| 462 | if (optind >= argc) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 463 | edit_file(0); |
| 464 | } else { |
| 465 | for (; optind < argc; optind++) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 466 | edit_file(argv[optind]); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | //----------------------------------------------------------- |
| 470 | |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 471 | return 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 472 | } |
| 473 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 474 | /* read text from file or create an empty buf */ |
| 475 | /* will also update current_filename */ |
| 476 | static int init_text_buffer(char *fn) |
| 477 | { |
| 478 | int rc; |
| 479 | int size = file_size(fn); // file size. -1 means does not exist. |
| 480 | |
| 481 | /* allocate/reallocate text buffer */ |
| 482 | free(text); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 483 | text_size = size + 10240; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 484 | screenbegin = dot = end = text = xzalloc(text_size); |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 485 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 486 | if (fn != current_filename) { |
| 487 | free(current_filename); |
| 488 | current_filename = xstrdup(fn); |
| 489 | } |
| 490 | if (size < 0) { |
| 491 | // file dont exist. Start empty buf with dummy line |
| 492 | char_insert(text, '\n'); |
| 493 | rc = 0; |
| 494 | } else { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 495 | rc = file_insert(fn, text, 1); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 496 | } |
| 497 | file_modified = 0; |
| 498 | last_file_modified = -1; |
| 499 | #if ENABLE_FEATURE_VI_YANKMARK |
| 500 | /* init the marks. */ |
| 501 | memset(mark, 0, sizeof(mark)); |
| 502 | #endif |
| 503 | return rc; |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 504 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 505 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 506 | static void edit_file(char *fn) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 507 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 508 | #if ENABLE_FEATURE_VI_YANKMARK |
| 509 | #define cur_line edit_file__cur_line |
| 510 | #endif |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 511 | int c; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 512 | int size; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 513 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 514 | int sig; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 515 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 516 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 517 | editing = 1; // 0 = exit, 1 = one file, 2 = multiple files |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 518 | rawmode(); |
| 519 | rows = 24; |
| 520 | columns = 80; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 521 | size = 0; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 522 | if (ENABLE_FEATURE_VI_WIN_RESIZE) { |
Rob Landley | e5e1a10 | 2006-06-21 01:15:36 +0000 | [diff] [blame] | 523 | get_terminal_width_height(0, &columns, &rows); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 524 | if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS; |
| 525 | if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS; |
| 526 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 527 | new_screen(rows, columns); // get memory for virtual screen |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 528 | init_text_buffer(fn); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 529 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 530 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 531 | YDreg = 26; // default Yank/Delete reg |
| 532 | Ureg = 27; // hold orig line for "U" cmd |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 533 | mark[26] = mark[27] = text; // init "previous context" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 534 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 535 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 536 | last_forward_char = last_input_char = '\0'; |
| 537 | crow = 0; |
| 538 | ccol = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 539 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 540 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 541 | catch_sig(0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 542 | signal(SIGWINCH, winch_sig); |
| 543 | signal(SIGTSTP, suspend_sig); |
Paul Fox | 2724fa9 | 2008-03-17 15:28:07 +0000 | [diff] [blame] | 544 | sig = sigsetjmp(restart, 1); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 545 | if (sig != 0) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 546 | screenbegin = dot = text; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 547 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 548 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 549 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 550 | cmd_mode = 0; // 0=command 1=insert 2='R'eplace |
| 551 | cmdcnt = 0; |
| 552 | tabstop = 8; |
| 553 | offset = 0; // no horizontal offset |
| 554 | c = '\0'; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 555 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 556 | free(ioq_start); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 557 | ioq = ioq_start = NULL; |
| 558 | lmc_len = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 559 | adding2q = 0; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 560 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 561 | |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 562 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 563 | { |
| 564 | char *p, *q; |
| 565 | int n = 0; |
| 566 | |
| 567 | while ((p = initial_cmds[n])) { |
| 568 | do { |
| 569 | q = p; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 570 | p = strchr(q, '\n'); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 571 | if (p) |
Denis Vlasenko | 51742f4 | 2007-04-12 00:32:05 +0000 | [diff] [blame] | 572 | while (*p == '\n') |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 573 | *p++ = '\0'; |
| 574 | if (*q) |
| 575 | colon(q); |
| 576 | } while (p); |
| 577 | free(initial_cmds[n]); |
| 578 | initial_cmds[n] = NULL; |
| 579 | n++; |
| 580 | } |
| 581 | } |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 582 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 583 | redraw(FALSE); // dont force every col re-draw |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 584 | //------This is the main Vi cmd handling loop ----------------------- |
| 585 | while (editing > 0) { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 586 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 587 | if (crashme > 0) { |
| 588 | if ((end - text) > 1) { |
| 589 | crash_dummy(); // generate a random command |
| 590 | } else { |
| 591 | crashme = 0; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 592 | string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string |
| 593 | dot = text; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 594 | refresh(FALSE); |
| 595 | } |
| 596 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 597 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 598 | last_input_char = c = get_one_char(); // get a cmd from user |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 599 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 600 | // save a copy of the current line- for the 'U" command |
| 601 | if (begin_line(dot) != cur_line) { |
| 602 | cur_line = begin_line(dot); |
| 603 | text_yank(begin_line(dot), end_line(dot), Ureg); |
| 604 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 605 | #endif |
| 606 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 607 | // These are commands that change text[]. |
| 608 | // Remember the input for the "." command |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 609 | if (!adding2q && ioq_start == NULL |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 610 | && cmd_mode == 0 // command mode |
| 611 | && c > '\0' // exclude NUL and non-ASCII chars |
| 612 | && c < 0x7f // (Unicode and such) |
| 613 | && strchr(modifying_cmds, c) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 614 | ) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 615 | start_new_cmd_q(c); |
| 616 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 617 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 618 | do_cmd(c); // execute the user command |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 619 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 620 | // poll to see if there is input already waiting. if we are |
| 621 | // not able to display output fast enough to keep up, skip |
| 622 | // the display update until we catch up with input. |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 623 | if (!chars_to_parse && mysleep(0) == 0) { |
| 624 | // no input pending - so update output |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 625 | refresh(FALSE); |
| 626 | show_status_line(); |
| 627 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 628 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 629 | if (crashme > 0) |
| 630 | crash_test(); // test editor variables |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 631 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 632 | } |
| 633 | //------------------------------------------------------------------- |
| 634 | |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 635 | go_bottom_and_clear_to_eol(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 636 | cookmode(); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 637 | #undef cur_line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 638 | } |
| 639 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 640 | //----- The Colon commands ------------------------------------- |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 641 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 642 | static char *get_one_address(char *p, int *addr) // get colon addr, if present |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 643 | { |
| 644 | int st; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 645 | char *q; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 646 | USE_FEATURE_VI_YANKMARK(char c;) |
| 647 | USE_FEATURE_VI_SEARCH(char *pat;) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 648 | |
| 649 | *addr = -1; // assume no addr |
| 650 | if (*p == '.') { // the current line |
| 651 | p++; |
| 652 | q = begin_line(dot); |
| 653 | *addr = count_lines(text, q); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 654 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 655 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 656 | else if (*p == '\'') { // is this a mark addr |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 657 | p++; |
| 658 | c = tolower(*p); |
| 659 | p++; |
| 660 | if (c >= 'a' && c <= 'z') { |
| 661 | // we have a mark |
| 662 | c = c - 'a'; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 663 | q = mark[(unsigned char) c]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 664 | if (q != NULL) { // is mark valid |
| 665 | *addr = count_lines(text, q); // count lines |
| 666 | } |
| 667 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 668 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 669 | #endif |
| 670 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 671 | else if (*p == '/') { // a search pattern |
| 672 | q = strchrnul(++p, '/'); |
| 673 | pat = xstrndup(p, q - p); // save copy of pattern |
| 674 | p = q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 675 | if (*p == '/') |
| 676 | p++; |
| 677 | q = char_search(dot, pat, FORWARD, FULL); |
| 678 | if (q != NULL) { |
| 679 | *addr = count_lines(text, q); |
| 680 | } |
| 681 | free(pat); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 682 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 683 | #endif |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 684 | else if (*p == '$') { // the last line in file |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 685 | p++; |
| 686 | q = begin_line(end - 1); |
| 687 | *addr = count_lines(text, q); |
| 688 | } else if (isdigit(*p)) { // specific line number |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 689 | sscanf(p, "%d%n", addr, &st); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 690 | p += st; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 691 | } else { |
| 692 | // unrecognised address - assume -1 |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 693 | *addr = -1; |
| 694 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 695 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 696 | } |
| 697 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 698 | static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 699 | { |
| 700 | //----- get the address' i.e., 1,3 'a,'b ----- |
| 701 | // get FIRST addr, if present |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 702 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 703 | p++; // skip over leading spaces |
| 704 | if (*p == '%') { // alias for 1,$ |
| 705 | p++; |
| 706 | *b = 1; |
| 707 | *e = count_lines(text, end-1); |
| 708 | goto ga0; |
| 709 | } |
| 710 | p = get_one_address(p, b); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 711 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 712 | p++; |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 713 | if (*p == ',') { // is there a address separator |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 714 | p++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 715 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 716 | p++; |
| 717 | // get SECOND addr, if present |
| 718 | p = get_one_address(p, e); |
| 719 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 720 | ga0: |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 721 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 722 | p++; // skip over trailing spaces |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 723 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 724 | } |
| 725 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 726 | #if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 727 | static void setops(const char *args, const char *opname, int flg_no, |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 728 | const char *short_opname, int opt) |
| 729 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 730 | const char *a = args + flg_no; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 731 | int l = strlen(opname) - 1; /* opname have + ' ' */ |
| 732 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 733 | if (strncasecmp(a, opname, l) == 0 |
| 734 | || strncasecmp(a, short_opname, 2) == 0 |
| 735 | ) { |
| 736 | if (flg_no) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 737 | vi_setops &= ~opt; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 738 | else |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 739 | vi_setops |= opt; |
| 740 | } |
| 741 | } |
| 742 | #endif |
| 743 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 744 | // buf must be no longer than MAX_INPUT_LEN! |
| 745 | static void colon(char *buf) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 746 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 747 | char c, *orig_buf, *buf1, *q, *r; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 748 | char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN]; |
Bernhard Reutner-Fischer | d591a36 | 2006-08-20 17:35:13 +0000 | [diff] [blame] | 749 | int i, l, li, ch, b, e; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 750 | int useforce, forced = FALSE; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 751 | |
| 752 | // :3154 // if (-e line 3154) goto it else stay put |
| 753 | // :4,33w! foo // write a portion of buffer to file "foo" |
| 754 | // :w // write all of buffer to current file |
| 755 | // :q // quit |
| 756 | // :q! // quit- dont care about modified file |
| 757 | // :'a,'z!sort -u // filter block through sort |
| 758 | // :'f // goto mark "f" |
| 759 | // :'fl // list literal the mark "f" line |
| 760 | // :.r bar // read file "bar" into buffer before dot |
| 761 | // :/123/,/abc/d // delete lines from "123" line to "abc" line |
| 762 | // :/xyz/ // goto the "xyz" line |
| 763 | // :s/find/replace/ // substitute pattern "find" with "replace" |
| 764 | // :!<cmd> // run <cmd> then return |
| 765 | // |
Eric Andersen | 165e8cb | 2004-07-20 06:44:46 +0000 | [diff] [blame] | 766 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 767 | if (!buf[0]) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 768 | goto vc1; |
| 769 | if (*buf == ':') |
| 770 | buf++; // move past the ':' |
| 771 | |
Bernhard Reutner-Fischer | d591a36 | 2006-08-20 17:35:13 +0000 | [diff] [blame] | 772 | li = ch = i = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 773 | b = e = -1; |
| 774 | q = text; // assume 1,$ for the range |
| 775 | r = end - 1; |
| 776 | li = count_lines(text, end - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 777 | fn = current_filename; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 778 | |
| 779 | // look for optional address(es) :. :1 :1,9 :'q,'a :% |
| 780 | buf = get_address(buf, &b, &e); |
| 781 | |
| 782 | // remember orig command line |
| 783 | orig_buf = buf; |
| 784 | |
| 785 | // get the COMMAND into cmd[] |
| 786 | buf1 = cmd; |
| 787 | while (*buf != '\0') { |
| 788 | if (isspace(*buf)) |
| 789 | break; |
| 790 | *buf1++ = *buf++; |
| 791 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 792 | *buf1 = '\0'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 793 | // get any ARGuments |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 794 | while (isblank(*buf)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 795 | buf++; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 796 | strcpy(args, buf); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 797 | useforce = FALSE; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 798 | buf1 = last_char_is(cmd, '!'); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 799 | if (buf1) { |
| 800 | useforce = TRUE; |
| 801 | *buf1 = '\0'; // get rid of ! |
| 802 | } |
| 803 | if (b >= 0) { |
| 804 | // if there is only one addr, then the addr |
| 805 | // is the line number of the single line the |
| 806 | // user wants. So, reset the end |
| 807 | // pointer to point at end of the "b" line |
| 808 | q = find_line(b); // what line is #b |
| 809 | r = end_line(q); |
| 810 | li = 1; |
| 811 | } |
| 812 | if (e >= 0) { |
| 813 | // we were given two addrs. change the |
| 814 | // end pointer to the addr given by user. |
| 815 | r = find_line(e); // what line is #e |
| 816 | r = end_line(r); |
| 817 | li = e - b + 1; |
| 818 | } |
| 819 | // ------------ now look for the command ------------ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 820 | i = strlen(cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 821 | if (i == 0) { // :123CR goto line #123 |
| 822 | if (b >= 0) { |
| 823 | dot = find_line(b); // what line is #b |
| 824 | dot_skip_over_ws(); |
| 825 | } |
Denis Vlasenko | 249fabf | 2006-12-19 00:29:22 +0000 | [diff] [blame] | 826 | } |
| 827 | #if ENABLE_FEATURE_ALLOW_EXEC |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 828 | else if (strncmp(cmd, "!", 1) == 0) { // run a cmd |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 829 | int retcode; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 830 | // :!ls run the <cmd> |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 831 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 832 | cookmode(); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 833 | retcode = system(orig_buf + 1); // run the cmd |
| 834 | if (retcode) |
| 835 | printf("\nshell returned %i\n\n", retcode); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 836 | rawmode(); |
| 837 | Hit_Return(); // let user see results |
Denis Vlasenko | 249fabf | 2006-12-19 00:29:22 +0000 | [diff] [blame] | 838 | } |
| 839 | #endif |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 840 | else if (strncmp(cmd, "=", i) == 0) { // where is the address |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 841 | if (b < 0) { // no addr given- use defaults |
| 842 | b = e = count_lines(text, dot); |
| 843 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 844 | status_line("%d", b); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 845 | } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 846 | if (b < 0) { // no addr given- use defaults |
| 847 | q = begin_line(dot); // assume .,. for the range |
| 848 | r = end_line(dot); |
| 849 | } |
| 850 | dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines |
| 851 | dot_skip_over_ws(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 852 | } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 853 | // don't edit, if the current file has been modified |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 854 | if (file_modified && !useforce) { |
| 855 | status_line_bold("No write since last change (:edit! overrides)"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 856 | goto vc1; |
| 857 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 858 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 859 | // the user supplied a file name |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 860 | fn = args; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 861 | } else if (current_filename && current_filename[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 862 | // no user supplied name- use the current filename |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 863 | // fn = current_filename; was set by default |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 864 | } else { |
| 865 | // no user file name, no current name- punt |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 866 | status_line_bold("No current filename"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 867 | goto vc1; |
| 868 | } |
| 869 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 870 | if (init_text_buffer(fn) < 0) |
| 871 | goto vc1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 872 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 873 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 874 | if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) { |
| 875 | free(reg[Ureg]); // free orig line reg- for 'U' |
| 876 | reg[Ureg]= 0; |
| 877 | } |
| 878 | if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) { |
| 879 | free(reg[YDreg]); // free default yank/delete register |
| 880 | reg[YDreg]= 0; |
| 881 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 882 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 883 | // how many lines in text[]? |
| 884 | li = count_lines(text, end - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 885 | status_line("\"%s\"%s" |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 886 | USE_FEATURE_VI_READONLY("%s") |
| 887 | " %dL, %dC", current_filename, |
| 888 | (file_size(fn) < 0 ? " [New file]" : ""), |
| 889 | USE_FEATURE_VI_READONLY( |
| 890 | ((readonly_mode) ? " [Readonly]" : ""), |
| 891 | ) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 892 | li, ch); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 893 | } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 894 | if (b != -1 || e != -1) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 895 | not_implemented("No address allowed on this command"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 896 | goto vc1; |
| 897 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 898 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 899 | // user wants a new filename |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 900 | free(current_filename); |
| 901 | current_filename = xstrdup(args); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 902 | } else { |
| 903 | // user wants file status info |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 904 | last_status_cksum = 0; // force status update |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 905 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 906 | } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 907 | // print out values of all features |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 908 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 909 | cookmode(); |
| 910 | show_help(); |
| 911 | rawmode(); |
| 912 | Hit_Return(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 913 | } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 914 | if (b < 0) { // no addr given- use defaults |
| 915 | q = begin_line(dot); // assume .,. for the range |
| 916 | r = end_line(dot); |
| 917 | } |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 918 | go_bottom_and_clear_to_eol(); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 919 | puts("\r"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 920 | for (; q <= r; q++) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 921 | int c_is_no_print; |
| 922 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 923 | c = *q; |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 924 | c_is_no_print = (c & 0x80) && !Isprint(c); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 925 | if (c_is_no_print) { |
| 926 | c = '.'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 927 | standout_start(); |
Denis Vlasenko | d3c042f | 2007-12-30 01:59:53 +0000 | [diff] [blame] | 928 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 929 | if (c == '\n') { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 930 | write1("$\r"); |
| 931 | } else if (c < ' ' || c == 127) { |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 932 | bb_putchar('^'); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 933 | if (c == 127) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 934 | c = '?'; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 935 | else |
| 936 | c += '@'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 937 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 938 | bb_putchar(c); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 939 | if (c_is_no_print) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 940 | standout_end(); |
| 941 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 942 | #if ENABLE_FEATURE_VI_SET |
| 943 | vc2: |
| 944 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 945 | Hit_Return(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 946 | } else if (strncasecmp(cmd, "quit", i) == 0 // Quit |
| 947 | || strncasecmp(cmd, "next", i) == 0 // edit next file |
| 948 | ) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 949 | if (useforce) { |
| 950 | // force end of argv list |
| 951 | if (*cmd == 'q') { |
| 952 | optind = save_argc; |
| 953 | } |
| 954 | editing = 0; |
| 955 | goto vc1; |
| 956 | } |
| 957 | // don't exit if the file been modified |
| 958 | if (file_modified) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 959 | status_line_bold("No write since last change (:%s! overrides)", |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 960 | (*cmd == 'q' ? "quit" : "next")); |
| 961 | goto vc1; |
| 962 | } |
| 963 | // are there other file to edit |
| 964 | if (*cmd == 'q' && optind < save_argc - 1) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 965 | status_line_bold("%d more file to edit", (save_argc - optind - 1)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 966 | goto vc1; |
| 967 | } |
| 968 | if (*cmd == 'n' && optind >= save_argc - 1) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 969 | status_line_bold("No more files to edit"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 970 | goto vc1; |
| 971 | } |
| 972 | editing = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 973 | } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[] |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 974 | fn = args; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 975 | if (!fn[0]) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 976 | status_line_bold("No filename given"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 977 | goto vc1; |
| 978 | } |
| 979 | if (b < 0) { // no addr given- use defaults |
| 980 | q = begin_line(dot); // assume "dot" |
| 981 | } |
| 982 | // read after current line- unless user said ":0r foo" |
| 983 | if (b != 0) |
| 984 | q = next_line(q); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 985 | { // dance around potentially-reallocated text[] |
| 986 | uintptr_t ofs = q - text; |
| 987 | ch = file_insert(fn, q, 0); |
| 988 | q = text + ofs; |
| 989 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 990 | if (ch < 0) |
| 991 | goto vc1; // nothing was inserted |
| 992 | // how many lines in text[]? |
| 993 | li = count_lines(q, q + ch - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 994 | status_line("\"%s\"" |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 995 | USE_FEATURE_VI_READONLY("%s") |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 996 | " %dL, %dC", fn, |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 997 | USE_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 998 | li, ch); |
| 999 | if (ch > 0) { |
| 1000 | // if the insert is before "dot" then we need to update |
| 1001 | if (q <= dot) |
| 1002 | dot += ch; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1003 | /*file_modified++; - done by file_insert */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1004 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1005 | } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1006 | if (file_modified && !useforce) { |
| 1007 | status_line_bold("No write since last change (:rewind! overrides)"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1008 | } else { |
| 1009 | // reset the filenames to edit |
| 1010 | optind = fn_start - 1; |
| 1011 | editing = 0; |
| 1012 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1013 | #if ENABLE_FEATURE_VI_SET |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1014 | } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 1015 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1016 | char *argp; |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 1017 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1018 | i = 0; // offset into args |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1019 | // only blank is regarded as args delmiter. What about tab '\t' ? |
| 1020 | if (!args[0] || strcasecmp(args, "all") == 0) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1021 | // print out values of all options |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 1022 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1023 | printf("----------------------------------------\r\n"); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1024 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1025 | if (!autoindent) |
| 1026 | printf("no"); |
| 1027 | printf("autoindent "); |
| 1028 | if (!err_method) |
| 1029 | printf("no"); |
| 1030 | printf("flash "); |
| 1031 | if (!ignorecase) |
| 1032 | printf("no"); |
| 1033 | printf("ignorecase "); |
| 1034 | if (!showmatch) |
| 1035 | printf("no"); |
| 1036 | printf("showmatch "); |
| 1037 | printf("tabstop=%d ", tabstop); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1038 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1039 | printf("\r\n"); |
| 1040 | goto vc2; |
| 1041 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1042 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1043 | argp = args; |
Denis Vlasenko | ba2fb71 | 2007-04-01 09:39:03 +0000 | [diff] [blame] | 1044 | while (*argp) { |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1045 | if (strncasecmp(argp, "no", 2) == 0) |
| 1046 | i = 2; // ":set noautoindent" |
| 1047 | setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT); |
| 1048 | setops(argp, "flash ", i, "fl", VI_ERR_METHOD); |
| 1049 | setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE); |
| 1050 | setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH); |
| 1051 | /* tabstopXXXX */ |
| 1052 | if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1053 | sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 1054 | if (ch > 0 && ch <= MAX_TABSTOP) |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1055 | tabstop = ch; |
| 1056 | } |
| 1057 | while (*argp && *argp != ' ') |
| 1058 | argp++; // skip to arg delimiter (i.e. blank) |
| 1059 | while (*argp && *argp == ' ') |
| 1060 | argp++; // skip all delimiting blanks |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1061 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1062 | #endif /* FEATURE_VI_SETOPTS */ |
| 1063 | #endif /* FEATURE_VI_SET */ |
| 1064 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1065 | } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern |
| 1066 | char *ls, *F, *R; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1067 | int gflag; |
| 1068 | |
| 1069 | // F points to the "find" pattern |
| 1070 | // R points to the "replace" pattern |
| 1071 | // replace the cmd line delimiters "/" with NULLs |
| 1072 | gflag = 0; // global replace flag |
| 1073 | c = orig_buf[1]; // what is the delimiter |
| 1074 | F = orig_buf + 2; // start of "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1075 | R = strchr(F, c); // middle delimiter |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1076 | if (!R) |
| 1077 | goto colon_s_fail; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1078 | *R++ = '\0'; // terminate "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1079 | buf1 = strchr(R, c); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1080 | if (!buf1) |
| 1081 | goto colon_s_fail; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1082 | *buf1++ = '\0'; // terminate "replace" |
| 1083 | if (*buf1 == 'g') { // :s/foo/bar/g |
| 1084 | buf1++; |
| 1085 | gflag++; // turn on gflag |
| 1086 | } |
| 1087 | q = begin_line(q); |
| 1088 | if (b < 0) { // maybe :s/foo/bar/ |
| 1089 | q = begin_line(dot); // start with cur line |
| 1090 | b = count_lines(text, q); // cur line number |
| 1091 | } |
| 1092 | if (e < 0) |
| 1093 | e = b; // maybe :.s/foo/bar/ |
| 1094 | for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0 |
| 1095 | ls = q; // orig line start |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1096 | vc4: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1097 | buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1098 | if (buf1) { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1099 | uintptr_t bias; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1100 | // we found the "find" pattern - delete it |
| 1101 | text_hole_delete(buf1, buf1 + strlen(F) - 1); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1102 | // inset the "replace" patern |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1103 | bias = string_insert(buf1, R); // insert the string |
| 1104 | buf1 += bias; |
| 1105 | ls += bias; |
| 1106 | /*q += bias; - recalculated anyway */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1107 | // check for "global" :s/foo/bar/g |
| 1108 | if (gflag == 1) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1109 | if ((buf1 + strlen(R)) < end_line(ls)) { |
| 1110 | q = buf1 + strlen(R); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1111 | goto vc4; // don't let q move past cur line |
| 1112 | } |
| 1113 | } |
| 1114 | } |
| 1115 | q = next_line(ls); |
| 1116 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1117 | #endif /* FEATURE_VI_SEARCH */ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1118 | } else if (strncasecmp(cmd, "version", i) == 0) { // show software version |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1119 | status_line(BB_VER " " BB_BT); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1120 | } else if (strncasecmp(cmd, "write", i) == 0 // write text to file |
| 1121 | || strncasecmp(cmd, "wq", i) == 0 |
| 1122 | || strncasecmp(cmd, "wn", i) == 0 |
| 1123 | || strncasecmp(cmd, "x", i) == 0 |
| 1124 | ) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1125 | // is there a file name to write to? |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1126 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1127 | fn = args; |
| 1128 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1129 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1130 | if (readonly_mode && !useforce) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1131 | status_line_bold("\"%s\" File is read only", fn); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1132 | goto vc3; |
| 1133 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1134 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1135 | // how many lines in text[]? |
| 1136 | li = count_lines(q, r); |
| 1137 | ch = r - q + 1; |
| 1138 | // see if file exists- if not, its just a new file request |
| 1139 | if (useforce) { |
| 1140 | // if "fn" is not write-able, chmod u+w |
| 1141 | // sprintf(syscmd, "chmod u+w %s", fn); |
| 1142 | // system(syscmd); |
| 1143 | forced = TRUE; |
| 1144 | } |
| 1145 | l = file_write(fn, q, r); |
| 1146 | if (useforce && forced) { |
| 1147 | // chmod u-w |
| 1148 | // sprintf(syscmd, "chmod u-w %s", fn); |
| 1149 | // system(syscmd); |
| 1150 | forced = FALSE; |
| 1151 | } |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1152 | if (l < 0) { |
| 1153 | if (l == -1) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1154 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1155 | } else { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1156 | status_line("\"%s\" %dL, %dC", fn, li, l); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1157 | if (q == text && r == end - 1 && l == ch) { |
| 1158 | file_modified = 0; |
| 1159 | last_file_modified = -1; |
| 1160 | } |
Paul Fox | 9360f42 | 2006-03-27 21:51:16 +0000 | [diff] [blame] | 1161 | if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' || |
| 1162 | cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N') |
| 1163 | && l == ch) { |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1164 | editing = 0; |
| 1165 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1166 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1167 | #if ENABLE_FEATURE_VI_READONLY |
| 1168 | vc3:; |
| 1169 | #endif |
| 1170 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1171 | } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1172 | if (b < 0) { // no addr given- use defaults |
| 1173 | q = begin_line(dot); // assume .,. for the range |
| 1174 | r = end_line(dot); |
| 1175 | } |
| 1176 | text_yank(q, r, YDreg); |
| 1177 | li = count_lines(q, r); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1178 | status_line("Yank %d lines (%d chars) into [%c]", |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1179 | li, strlen(reg[YDreg]), what_reg()); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1180 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1181 | } else { |
| 1182 | // cmd unknown |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1183 | not_implemented(cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1184 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1185 | vc1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1186 | dot = bound_dot(dot); // make sure "dot" is valid |
| 1187 | return; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1188 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1189 | colon_s_fail: |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1190 | status_line(":s expression missing delimiters"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1191 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1192 | } |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1193 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1194 | #endif /* FEATURE_VI_COLON */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1195 | |
| 1196 | static void Hit_Return(void) |
| 1197 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 1198 | int c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1199 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1200 | standout_start(); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1201 | write1("[Hit return to continue]"); |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1202 | standout_end(); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1203 | while ((c = get_one_char()) != '\n' && c != '\r') |
| 1204 | continue; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1205 | redraw(TRUE); // force redraw all |
| 1206 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1207 | |
Denis Vlasenko | 91afdf8 | 2007-07-17 23:22:49 +0000 | [diff] [blame] | 1208 | static int next_tabstop(int col) |
| 1209 | { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1210 | return col + ((tabstop - 1) - (col % tabstop)); |
| 1211 | } |
| 1212 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1213 | //----- Synchronize the cursor to Dot -------------------------- |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1214 | static void sync_cursor(char *d, int *row, int *col) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1215 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1216 | char *beg_cur; // begin and end of "d" line |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1217 | char *tp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1218 | int cnt, ro, co; |
| 1219 | |
| 1220 | beg_cur = begin_line(d); // first char of cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1221 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1222 | if (beg_cur < screenbegin) { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1223 | // "d" is before top line on screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1224 | // how many lines do we have to move |
| 1225 | cnt = count_lines(beg_cur, screenbegin); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1226 | sc1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1227 | screenbegin = beg_cur; |
| 1228 | if (cnt > (rows - 1) / 2) { |
| 1229 | // we moved too many lines. put "dot" in middle of screen |
| 1230 | for (cnt = 0; cnt < (rows - 1) / 2; cnt++) { |
| 1231 | screenbegin = prev_line(screenbegin); |
| 1232 | } |
| 1233 | } |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1234 | } else { |
| 1235 | char *end_scr; // begin and end of screen |
| 1236 | end_scr = end_screen(); // last char of screen |
| 1237 | if (beg_cur > end_scr) { |
| 1238 | // "d" is after bottom line on screen |
| 1239 | // how many lines do we have to move |
| 1240 | cnt = count_lines(end_scr, beg_cur); |
| 1241 | if (cnt > (rows - 1) / 2) |
| 1242 | goto sc1; // too many lines |
| 1243 | for (ro = 0; ro < cnt - 1; ro++) { |
| 1244 | // move screen begin the same amount |
| 1245 | screenbegin = next_line(screenbegin); |
| 1246 | // now, move the end of screen |
| 1247 | end_scr = next_line(end_scr); |
| 1248 | end_scr = end_line(end_scr); |
| 1249 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1250 | } |
| 1251 | } |
| 1252 | // "d" is on screen- find out which row |
| 1253 | tp = screenbegin; |
| 1254 | for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row |
| 1255 | if (tp == beg_cur) |
| 1256 | break; |
| 1257 | tp = next_line(tp); |
| 1258 | } |
| 1259 | |
| 1260 | // find out what col "d" is on |
| 1261 | co = 0; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1262 | while (tp < d) { // drive "co" to correct column |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1263 | if (*tp == '\n') //vda || *tp == '\0') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1264 | break; |
| 1265 | if (*tp == '\t') { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1266 | // handle tabs like real vi |
| 1267 | if (d == tp && cmd_mode) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1268 | break; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1269 | } |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1270 | co = next_tabstop(co); |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1271 | } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) { |
| 1272 | co++; // display as ^X, use 2 columns |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1273 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1274 | co++; |
| 1275 | tp++; |
| 1276 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1277 | |
| 1278 | // "co" is the column where "dot" is. |
| 1279 | // The screen has "columns" columns. |
| 1280 | // The currently displayed columns are 0+offset -- columns+ofset |
| 1281 | // |-------------------------------------------------------------| |
| 1282 | // ^ ^ ^ |
| 1283 | // offset | |------- columns ----------------| |
| 1284 | // |
| 1285 | // If "co" is already in this range then we do not have to adjust offset |
| 1286 | // but, we do have to subtract the "offset" bias from "co". |
| 1287 | // If "co" is outside this range then we have to change "offset". |
| 1288 | // If the first char of a line is a tab the cursor will try to stay |
| 1289 | // in column 7, but we have to set offset to 0. |
| 1290 | |
| 1291 | if (co < 0 + offset) { |
| 1292 | offset = co; |
| 1293 | } |
| 1294 | if (co >= columns + offset) { |
| 1295 | offset = co - columns + 1; |
| 1296 | } |
| 1297 | // if the first char of the line is a tab, and "dot" is sitting on it |
| 1298 | // force offset to 0. |
| 1299 | if (d == beg_cur && *d == '\t') { |
| 1300 | offset = 0; |
| 1301 | } |
| 1302 | co -= offset; |
| 1303 | |
| 1304 | *row = ro; |
| 1305 | *col = co; |
| 1306 | } |
| 1307 | |
| 1308 | //----- Text Movement Routines --------------------------------- |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1309 | static char *begin_line(char *p) // return pointer to first char cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1310 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1311 | if (p > text) { |
| 1312 | p = memrchr(text, '\n', p - text); |
| 1313 | if (!p) |
| 1314 | return text; |
| 1315 | return p + 1; |
| 1316 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1317 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1318 | } |
| 1319 | |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1320 | static char *end_line(char *p) // return pointer to NL of cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1321 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1322 | if (p < end - 1) { |
| 1323 | p = memchr(p, '\n', end - p - 1); |
| 1324 | if (!p) |
| 1325 | return end - 1; |
| 1326 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1327 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1328 | } |
| 1329 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1330 | static char *dollar_line(char *p) // return pointer to just before NL line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1331 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1332 | p = end_line(p); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1333 | // Try to stay off of the Newline |
| 1334 | if (*p == '\n' && (p - begin_line(p)) > 0) |
| 1335 | p--; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1336 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1339 | static char *prev_line(char *p) // return pointer first char prev line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1340 | { |
| 1341 | p = begin_line(p); // goto begining of cur line |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1342 | if (p > text && p[-1] == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1343 | p--; // step to prev line |
| 1344 | p = begin_line(p); // goto begining of prev line |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1345 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1346 | } |
| 1347 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1348 | static char *next_line(char *p) // return pointer first char next line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1349 | { |
| 1350 | p = end_line(p); |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1351 | if (p < end - 1 && *p == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1352 | p++; // step to next line |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1353 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | //----- Text Information Routines ------------------------------ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1357 | static char *end_screen(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1358 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1359 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1360 | int cnt; |
| 1361 | |
| 1362 | // find new bottom line |
| 1363 | q = screenbegin; |
| 1364 | for (cnt = 0; cnt < rows - 2; cnt++) |
| 1365 | q = next_line(q); |
| 1366 | q = end_line(q); |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1367 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1368 | } |
| 1369 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1370 | // count line from start to stop |
| 1371 | static int count_lines(char *start, char *stop) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1372 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1373 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1374 | int cnt; |
| 1375 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1376 | if (stop < start) { // start and stop are backwards- reverse them |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1377 | q = start; |
| 1378 | start = stop; |
| 1379 | stop = q; |
| 1380 | } |
| 1381 | cnt = 0; |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1382 | stop = end_line(stop); |
| 1383 | while (start <= stop && start <= end - 1) { |
| 1384 | start = end_line(start); |
| 1385 | if (*start == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1386 | cnt++; |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1387 | start++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1388 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1389 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1392 | static char *find_line(int li) // find begining of line #li |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1393 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1394 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1395 | |
| 1396 | for (q = text; li > 1; li--) { |
| 1397 | q = next_line(q); |
| 1398 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1399 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | //----- Dot Movement Routines ---------------------------------- |
| 1403 | static void dot_left(void) |
| 1404 | { |
| 1405 | if (dot > text && dot[-1] != '\n') |
| 1406 | dot--; |
| 1407 | } |
| 1408 | |
| 1409 | static void dot_right(void) |
| 1410 | { |
| 1411 | if (dot < end - 1 && *dot != '\n') |
| 1412 | dot++; |
| 1413 | } |
| 1414 | |
| 1415 | static void dot_begin(void) |
| 1416 | { |
| 1417 | dot = begin_line(dot); // return pointer to first char cur line |
| 1418 | } |
| 1419 | |
| 1420 | static void dot_end(void) |
| 1421 | { |
| 1422 | dot = end_line(dot); // return pointer to last char cur line |
| 1423 | } |
| 1424 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1425 | static char *move_to_col(char *p, int l) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1426 | { |
| 1427 | int co; |
| 1428 | |
| 1429 | p = begin_line(p); |
| 1430 | co = 0; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1431 | while (co < l && p < end) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1432 | if (*p == '\n') //vda || *p == '\0') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1433 | break; |
| 1434 | if (*p == '\t') { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1435 | co = next_tabstop(co); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1436 | } else if (*p < ' ' || *p == 127) { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1437 | co++; // display as ^X, use 2 columns |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1438 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1439 | co++; |
| 1440 | p++; |
| 1441 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1442 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1443 | } |
| 1444 | |
| 1445 | static void dot_next(void) |
| 1446 | { |
| 1447 | dot = next_line(dot); |
| 1448 | } |
| 1449 | |
| 1450 | static void dot_prev(void) |
| 1451 | { |
| 1452 | dot = prev_line(dot); |
| 1453 | } |
| 1454 | |
| 1455 | static void dot_scroll(int cnt, int dir) |
| 1456 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1457 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1458 | |
| 1459 | for (; cnt > 0; cnt--) { |
| 1460 | if (dir < 0) { |
| 1461 | // scroll Backwards |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1462 | // ctrl-Y scroll up one line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1463 | screenbegin = prev_line(screenbegin); |
| 1464 | } else { |
| 1465 | // scroll Forwards |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1466 | // ctrl-E scroll down one line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1467 | screenbegin = next_line(screenbegin); |
| 1468 | } |
| 1469 | } |
| 1470 | // make sure "dot" stays on the screen so we dont scroll off |
| 1471 | if (dot < screenbegin) |
| 1472 | dot = screenbegin; |
| 1473 | q = end_screen(); // find new bottom line |
| 1474 | if (dot > q) |
| 1475 | dot = begin_line(q); // is dot is below bottom line? |
| 1476 | dot_skip_over_ws(); |
| 1477 | } |
| 1478 | |
| 1479 | static void dot_skip_over_ws(void) |
| 1480 | { |
| 1481 | // skip WS |
| 1482 | while (isspace(*dot) && *dot != '\n' && dot < end - 1) |
| 1483 | dot++; |
| 1484 | } |
| 1485 | |
| 1486 | static void dot_delete(void) // delete the char at 'dot' |
| 1487 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1488 | text_hole_delete(dot, dot); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1489 | } |
| 1490 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1491 | static char *bound_dot(char *p) // make sure text[0] <= P < "end" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1492 | { |
| 1493 | if (p >= end && end > text) { |
| 1494 | p = end - 1; |
| 1495 | indicate_error('1'); |
| 1496 | } |
| 1497 | if (p < text) { |
| 1498 | p = text; |
| 1499 | indicate_error('2'); |
| 1500 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1501 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1502 | } |
| 1503 | |
| 1504 | //----- Helper Utility Routines -------------------------------- |
| 1505 | |
| 1506 | //---------------------------------------------------------------- |
| 1507 | //----- Char Routines -------------------------------------------- |
| 1508 | /* Chars that are part of a word- |
| 1509 | * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz |
| 1510 | * Chars that are Not part of a word (stoppers) |
| 1511 | * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~ |
| 1512 | * Chars that are WhiteSpace |
| 1513 | * TAB NEWLINE VT FF RETURN SPACE |
| 1514 | * DO NOT COUNT NEWLINE AS WHITESPACE |
| 1515 | */ |
| 1516 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1517 | static char *new_screen(int ro, int co) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1518 | { |
| 1519 | int li; |
| 1520 | |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1521 | free(screen); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1522 | screensize = ro * co + 8; |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 1523 | screen = xmalloc(screensize); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1524 | // initialize the new screen. assume this will be a empty file. |
| 1525 | screen_erase(); |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1526 | // non-existent text[] lines start with a tilde (~). |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1527 | for (li = 1; li < ro - 1; li++) { |
| 1528 | screen[(li * co) + 0] = '~'; |
| 1529 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1530 | return screen; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1531 | } |
| 1532 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1533 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1534 | static int mycmp(const char *s1, const char *s2, int len) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1535 | { |
| 1536 | int i; |
| 1537 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1538 | i = strncmp(s1, s2, len); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1539 | if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1540 | i = strncasecmp(s1, s2, len); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1541 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1542 | return i; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1543 | } |
| 1544 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1545 | // search for pattern starting at p |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1546 | static char *char_search(char *p, const char *pat, int dir, int range) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1547 | { |
| 1548 | #ifndef REGEX_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1549 | char *start, *stop; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1550 | int len; |
| 1551 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1552 | len = strlen(pat); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1553 | if (dir == FORWARD) { |
| 1554 | stop = end - 1; // assume range is p - end-1 |
| 1555 | if (range == LIMITED) |
| 1556 | stop = next_line(p); // range is to next line |
| 1557 | for (start = p; start < stop; start++) { |
| 1558 | if (mycmp(start, pat, len) == 0) { |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1559 | return start; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1560 | } |
| 1561 | } |
| 1562 | } else if (dir == BACK) { |
| 1563 | stop = text; // assume range is text - p |
| 1564 | if (range == LIMITED) |
| 1565 | stop = prev_line(p); // range is to prev line |
| 1566 | for (start = p - len; start >= stop; start--) { |
| 1567 | if (mycmp(start, pat, len) == 0) { |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1568 | return start; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1569 | } |
| 1570 | } |
| 1571 | } |
| 1572 | // pattern not found |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1573 | return NULL; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1574 | #else /* REGEX_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1575 | char *q; |
| 1576 | struct re_pattern_buffer preg; |
| 1577 | int i; |
| 1578 | int size, range; |
| 1579 | |
| 1580 | re_syntax_options = RE_SYNTAX_POSIX_EXTENDED; |
| 1581 | preg.translate = 0; |
| 1582 | preg.fastmap = 0; |
| 1583 | preg.buffer = 0; |
| 1584 | preg.allocated = 0; |
| 1585 | |
| 1586 | // assume a LIMITED forward search |
| 1587 | q = next_line(p); |
| 1588 | q = end_line(q); |
| 1589 | q = end - 1; |
| 1590 | if (dir == BACK) { |
| 1591 | q = prev_line(p); |
| 1592 | q = text; |
| 1593 | } |
| 1594 | // count the number of chars to search over, forward or backward |
| 1595 | size = q - p; |
| 1596 | if (size < 0) |
| 1597 | size = p - q; |
| 1598 | // RANGE could be negative if we are searching backwards |
| 1599 | range = q - p; |
| 1600 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1601 | q = re_compile_pattern(pat, strlen(pat), &preg); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1602 | if (q != 0) { |
| 1603 | // The pattern was not compiled |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1604 | status_line_bold("bad search pattern: \"%s\": %s", pat, q); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1605 | i = 0; // return p if pattern not compiled |
| 1606 | goto cs1; |
| 1607 | } |
| 1608 | |
| 1609 | q = p; |
| 1610 | if (range < 0) { |
| 1611 | q = p - size; |
| 1612 | if (q < text) |
| 1613 | q = text; |
| 1614 | } |
| 1615 | // search for the compiled pattern, preg, in p[] |
| 1616 | // range < 0- search backward |
| 1617 | // range > 0- search forward |
| 1618 | // 0 < start < size |
| 1619 | // re_search() < 0 not found or error |
| 1620 | // re_search() > 0 index of found pattern |
| 1621 | // struct pattern char int int int struct reg |
| 1622 | // re_search (*pattern_buffer, *string, size, start, range, *regs) |
| 1623 | i = re_search(&preg, q, size, 0, range, 0); |
| 1624 | if (i == -1) { |
| 1625 | p = 0; |
| 1626 | i = 0; // return NULL if pattern not found |
| 1627 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1628 | cs1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1629 | if (dir == FORWARD) { |
| 1630 | p = p + i; |
| 1631 | } else { |
| 1632 | p = p - i; |
| 1633 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1634 | return p; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1635 | #endif /* REGEX_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1636 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1637 | #endif /* FEATURE_VI_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1638 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1639 | static char *char_insert(char *p, char c) // insert the char c at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1640 | { |
| 1641 | if (c == 22) { // Is this an ctrl-V? |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1642 | p += stupid_insert(p, '^'); // use ^ to indicate literal next |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1643 | refresh(FALSE); // show the ^ |
| 1644 | c = get_one_char(); |
| 1645 | *p = c; |
| 1646 | p++; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1647 | file_modified++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1648 | } else if (c == 27) { // Is this an ESC? |
| 1649 | cmd_mode = 0; |
| 1650 | cmdcnt = 0; |
| 1651 | end_cmd_q(); // stop adding to q |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 1652 | last_status_cksum = 0; // force status update |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 1653 | if ((p[-1] != '\n') && (dot > text)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1654 | p--; |
| 1655 | } |
Paul Fox | d13b90b | 2005-07-18 22:17:25 +0000 | [diff] [blame] | 1656 | } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1657 | // 123456789 |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 1658 | if ((p[-1] != '\n') && (dot>text)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1659 | p--; |
| 1660 | p = text_hole_delete(p, p); // shrink buffer 1 char |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1661 | } |
| 1662 | } else { |
| 1663 | // insert a char into text[] |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1664 | char *sp; // "save p" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1665 | |
| 1666 | if (c == 13) |
| 1667 | c = '\n'; // translate \r to \n |
| 1668 | sp = p; // remember addr of insert |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1669 | p += 1 + stupid_insert(p, c); // insert the char |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1670 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1671 | if (showmatch && strchr(")]}", *sp) != NULL) { |
| 1672 | showmatching(sp); |
| 1673 | } |
| 1674 | if (autoindent && c == '\n') { // auto indent the new line |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1675 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1676 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1677 | q = prev_line(p); // use prev line as template |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1678 | for (; isblank(*q); q++) { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1679 | uintptr_t bias = stupid_insert(p, *q); // insert the char |
| 1680 | p += bias + 1; |
| 1681 | q += bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1682 | } |
| 1683 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1684 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1685 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1686 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1687 | } |
| 1688 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1689 | // might reallocate text[]! use p += stupid_insert(p, ...), |
| 1690 | // and be careful to not use pointers into potentially freed text[]! |
| 1691 | static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1692 | { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1693 | uintptr_t bias; |
| 1694 | bias = text_hole_make(p, 1); |
| 1695 | p += bias; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1696 | *p = c; |
| 1697 | //file_modified++; - done by text_hole_make() |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1698 | return bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1701 | static int find_range(char **start, char **stop, char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1702 | { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1703 | char *save_dot, *p, *q, *t; |
| 1704 | int cnt, multiline = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1705 | |
| 1706 | save_dot = dot; |
| 1707 | p = q = dot; |
| 1708 | |
| 1709 | if (strchr("cdy><", c)) { |
| 1710 | // these cmds operate on whole lines |
| 1711 | p = q = begin_line(p); |
| 1712 | for (cnt = 1; cnt < cmdcnt; cnt++) { |
| 1713 | q = next_line(q); |
| 1714 | } |
| 1715 | q = end_line(q); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1716 | } else if (strchr("^%$0bBeEfth\b\177", c)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1717 | // These cmds operate on char positions |
| 1718 | do_cmd(c); // execute movement cmd |
| 1719 | q = dot; |
| 1720 | } else if (strchr("wW", c)) { |
| 1721 | do_cmd(c); // execute movement cmd |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1722 | // if we are at the next word's first char |
| 1723 | // step back one char |
| 1724 | // but check the possibilities when it is true |
Eric Andersen | 5cc90ea | 2004-02-06 10:36:08 +0000 | [diff] [blame] | 1725 | if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0])) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1726 | || (ispunct(dot[-1]) && !ispunct(dot[0])) |
| 1727 | || (isalnum(dot[-1]) && !isalnum(dot[0])))) |
| 1728 | dot--; // move back off of next word |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1729 | if (dot > text && *dot == '\n') |
| 1730 | dot--; // stay off NL |
| 1731 | q = dot; |
| 1732 | } else if (strchr("H-k{", c)) { |
| 1733 | // these operate on multi-lines backwards |
| 1734 | q = end_line(dot); // find NL |
| 1735 | do_cmd(c); // execute movement cmd |
| 1736 | dot_begin(); |
| 1737 | p = dot; |
| 1738 | } else if (strchr("L+j}\r\n", c)) { |
| 1739 | // these operate on multi-lines forwards |
| 1740 | p = begin_line(dot); |
| 1741 | do_cmd(c); // execute movement cmd |
| 1742 | dot_end(); // find NL |
| 1743 | q = dot; |
| 1744 | } else { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1745 | // nothing -- this causes any other values of c to |
| 1746 | // represent the one-character range under the |
| 1747 | // cursor. this is correct for ' ' and 'l', but |
| 1748 | // perhaps no others. |
| 1749 | // |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1750 | } |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1751 | if (q < p) { |
| 1752 | t = q; |
| 1753 | q = p; |
| 1754 | p = t; |
| 1755 | } |
| 1756 | |
Denis Vlasenko | 42cc304 | 2008-03-24 02:05:58 +0000 | [diff] [blame] | 1757 | // backward char movements don't include start position |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1758 | if (q > p && strchr("^0bBh\b\177", c)) q--; |
| 1759 | |
| 1760 | multiline = 0; |
| 1761 | for (t = p; t <= q; t++) { |
| 1762 | if (*t == '\n') { |
| 1763 | multiline = 1; |
| 1764 | break; |
| 1765 | } |
| 1766 | } |
| 1767 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1768 | *start = p; |
| 1769 | *stop = q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1770 | dot = save_dot; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1771 | return multiline; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1772 | } |
| 1773 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1774 | static int st_test(char *p, int type, int dir, char *tested) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1775 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1776 | char c, c0, ci; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1777 | int test, inc; |
| 1778 | |
| 1779 | inc = dir; |
| 1780 | c = c0 = p[0]; |
| 1781 | ci = p[inc]; |
| 1782 | test = 0; |
| 1783 | |
| 1784 | if (type == S_BEFORE_WS) { |
| 1785 | c = ci; |
| 1786 | test = ((!isspace(c)) || c == '\n'); |
| 1787 | } |
| 1788 | if (type == S_TO_WS) { |
| 1789 | c = c0; |
| 1790 | test = ((!isspace(c)) || c == '\n'); |
| 1791 | } |
| 1792 | if (type == S_OVER_WS) { |
| 1793 | c = c0; |
| 1794 | test = ((isspace(c))); |
| 1795 | } |
| 1796 | if (type == S_END_PUNCT) { |
| 1797 | c = ci; |
| 1798 | test = ((ispunct(c))); |
| 1799 | } |
| 1800 | if (type == S_END_ALNUM) { |
| 1801 | c = ci; |
| 1802 | test = ((isalnum(c)) || c == '_'); |
| 1803 | } |
| 1804 | *tested = c; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1805 | return test; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1806 | } |
| 1807 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1808 | static char *skip_thing(char *p, int linecnt, int dir, int type) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1809 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1810 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1811 | |
| 1812 | while (st_test(p, type, dir, &c)) { |
| 1813 | // make sure we limit search to correct number of lines |
| 1814 | if (c == '\n' && --linecnt < 1) |
| 1815 | break; |
| 1816 | if (dir >= 0 && p >= end - 1) |
| 1817 | break; |
| 1818 | if (dir < 0 && p <= text) |
| 1819 | break; |
| 1820 | p += dir; // move to next char |
| 1821 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1822 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1823 | } |
| 1824 | |
| 1825 | // find matching char of pair () [] {} |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1826 | static char *find_pair(char *p, const char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1827 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1828 | char match, *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1829 | int dir, level; |
| 1830 | |
| 1831 | match = ')'; |
| 1832 | level = 1; |
| 1833 | dir = 1; // assume forward |
| 1834 | switch (c) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1835 | case '(': match = ')'; break; |
| 1836 | case '[': match = ']'; break; |
| 1837 | case '{': match = '}'; break; |
| 1838 | case ')': match = '('; dir = -1; break; |
| 1839 | case ']': match = '['; dir = -1; break; |
| 1840 | case '}': match = '{'; dir = -1; break; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1841 | } |
| 1842 | for (q = p + dir; text <= q && q < end; q += dir) { |
| 1843 | // look for match, count levels of pairs (( )) |
| 1844 | if (*q == c) |
| 1845 | level++; // increase pair levels |
| 1846 | if (*q == match) |
| 1847 | level--; // reduce pair level |
| 1848 | if (level == 0) |
| 1849 | break; // found matching pair |
| 1850 | } |
| 1851 | if (level != 0) |
| 1852 | q = NULL; // indicate no match |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1853 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1854 | } |
| 1855 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1856 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1857 | // show the matching char of a pair, () [] {} |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1858 | static void showmatching(char *p) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1859 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1860 | char *q, *save_dot; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1861 | |
| 1862 | // we found half of a pair |
| 1863 | q = find_pair(p, *p); // get loc of matching char |
| 1864 | if (q == NULL) { |
| 1865 | indicate_error('3'); // no matching char |
| 1866 | } else { |
| 1867 | // "q" now points to matching pair |
| 1868 | save_dot = dot; // remember where we are |
| 1869 | dot = q; // go to new loc |
| 1870 | refresh(FALSE); // let the user see it |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1871 | mysleep(40); // give user some time |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1872 | dot = save_dot; // go back to old loc |
| 1873 | refresh(FALSE); |
| 1874 | } |
| 1875 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1876 | #endif /* FEATURE_VI_SETOPTS */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1877 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1878 | // open a hole in text[] |
| 1879 | // might reallocate text[]! use p += text_hole_make(p, ...), |
| 1880 | // and be careful to not use pointers into potentially freed text[]! |
| 1881 | static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1882 | { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1883 | uintptr_t bias = 0; |
| 1884 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1885 | if (size <= 0) |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1886 | return bias; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1887 | end += size; // adjust the new END |
| 1888 | if (end >= (text + text_size)) { |
| 1889 | char *new_text; |
| 1890 | text_size += end - (text + text_size) + 10240; |
| 1891 | new_text = xrealloc(text, text_size); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1892 | bias = (new_text - text); |
| 1893 | screenbegin += bias; |
| 1894 | dot += bias; |
| 1895 | end += bias; |
| 1896 | p += bias; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1897 | text = new_text; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1898 | } |
Denis Vlasenko | d699544 | 2008-06-27 04:06:13 +0000 | [diff] [blame] | 1899 | memmove(p + size, p, end - size - p); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1900 | memset(p, ' ', size); // clear new hole |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1901 | file_modified++; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1902 | return bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1903 | } |
| 1904 | |
| 1905 | // close a hole in text[] |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1906 | static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1907 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1908 | char *src, *dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1909 | int cnt, hole_size; |
| 1910 | |
| 1911 | // move forwards, from beginning |
| 1912 | // assume p <= q |
| 1913 | src = q + 1; |
| 1914 | dest = p; |
| 1915 | if (q < p) { // they are backward- swap them |
| 1916 | src = p + 1; |
| 1917 | dest = q; |
| 1918 | } |
| 1919 | hole_size = q - p + 1; |
| 1920 | cnt = end - src; |
| 1921 | if (src < text || src > end) |
| 1922 | goto thd0; |
| 1923 | if (dest < text || dest >= end) |
| 1924 | goto thd0; |
| 1925 | if (src >= end) |
| 1926 | goto thd_atend; // just delete the end of the buffer |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1927 | memmove(dest, src, cnt); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1928 | thd_atend: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1929 | end = end - hole_size; // adjust the new END |
| 1930 | if (dest >= end) |
| 1931 | dest = end - 1; // make sure dest in below end-1 |
| 1932 | if (end <= text) |
| 1933 | dest = end = text; // keep pointers valid |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1934 | file_modified++; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1935 | thd0: |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1936 | return dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1937 | } |
| 1938 | |
| 1939 | // copy text into register, then delete text. |
| 1940 | // if dist <= 0, do not include, or go past, a NewLine |
| 1941 | // |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1942 | static char *yank_delete(char *start, char *stop, int dist, int yf) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1943 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1944 | char *p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1945 | |
| 1946 | // make sure start <= stop |
| 1947 | if (start > stop) { |
| 1948 | // they are backwards, reverse them |
| 1949 | p = start; |
| 1950 | start = stop; |
| 1951 | stop = p; |
| 1952 | } |
| 1953 | if (dist <= 0) { |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 1954 | // we cannot cross NL boundaries |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1955 | p = start; |
| 1956 | if (*p == '\n') |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1957 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1958 | // dont go past a NewLine |
| 1959 | for (; p + 1 <= stop; p++) { |
| 1960 | if (p[1] == '\n') { |
| 1961 | stop = p; // "stop" just before NewLine |
| 1962 | break; |
| 1963 | } |
| 1964 | } |
| 1965 | } |
| 1966 | p = start; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1967 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1968 | text_yank(start, stop, YDreg); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1969 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1970 | if (yf == YANKDEL) { |
| 1971 | p = text_hole_delete(start, stop); |
| 1972 | } // delete lines |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1973 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1974 | } |
| 1975 | |
| 1976 | static void show_help(void) |
| 1977 | { |
| 1978 | puts("These features are available:" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1979 | #if ENABLE_FEATURE_VI_SEARCH |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1980 | "\n\tPattern searches with / and ?" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1981 | #endif |
| 1982 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1983 | "\n\tLast command repeat with \'.\'" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1984 | #endif |
| 1985 | #if ENABLE_FEATURE_VI_YANKMARK |
Bernhard Reutner-Fischer | d24d5c8 | 2007-10-01 18:04:42 +0000 | [diff] [blame] | 1986 | "\n\tLine marking with 'x" |
| 1987 | "\n\tNamed buffers with \"x" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1988 | #endif |
| 1989 | #if ENABLE_FEATURE_VI_READONLY |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1990 | "\n\tReadonly if vi is called as \"view\"" |
| 1991 | "\n\tReadonly with -R command line arg" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1992 | #endif |
| 1993 | #if ENABLE_FEATURE_VI_SET |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1994 | "\n\tSome colon mode commands with \':\'" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1995 | #endif |
| 1996 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1997 | "\n\tSettable options with \":set\"" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1998 | #endif |
| 1999 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2000 | "\n\tSignal catching- ^C" |
| 2001 | "\n\tJob suspend and resume with ^Z" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2002 | #endif |
| 2003 | #if ENABLE_FEATURE_VI_WIN_RESIZE |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2004 | "\n\tAdapt to window re-sizes" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2005 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2006 | ); |
| 2007 | } |
| 2008 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2009 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2010 | static void start_new_cmd_q(char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2011 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2012 | // get buffer for new cmd |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2013 | // if there is a current cmd count put it in the buffer first |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2014 | if (cmdcnt > 0) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2015 | lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2016 | } else { // just save char c onto queue |
Paul Fox | d957b95 | 2005-11-28 18:07:53 +0000 | [diff] [blame] | 2017 | last_modifying_cmd[0] = c; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2018 | lmc_len = 1; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2019 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2020 | adding2q = 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2021 | } |
| 2022 | |
| 2023 | static void end_cmd_q(void) |
| 2024 | { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2025 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2026 | YDreg = 26; // go back to default Yank/Delete reg |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2027 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2028 | adding2q = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2029 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2030 | #endif /* FEATURE_VI_DOT_CMD */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2031 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2032 | #if ENABLE_FEATURE_VI_YANKMARK \ |
| 2033 | || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \ |
| 2034 | || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2035 | // might reallocate text[]! use p += string_insert(p, ...), |
| 2036 | // and be careful to not use pointers into potentially freed text[]! |
| 2037 | static uintptr_t string_insert(char *p, const char *s) // insert the string at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2038 | { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2039 | uintptr_t bias; |
| 2040 | int i; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2041 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2042 | i = strlen(s); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2043 | bias = text_hole_make(p, i); |
| 2044 | p += bias; |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2045 | strncpy(p, s, i); |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2046 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2047 | { |
| 2048 | int cnt; |
| 2049 | for (cnt = 0; *s != '\0'; s++) { |
| 2050 | if (*s == '\n') |
| 2051 | cnt++; |
| 2052 | } |
| 2053 | status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg()); |
| 2054 | } |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2055 | #endif |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2056 | return bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2057 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2058 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2059 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2060 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2061 | static char *text_yank(char *p, char *q, int dest) // copy text into a register |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2062 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2063 | char *t; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2064 | int cnt; |
| 2065 | |
| 2066 | if (q < p) { // they are backwards- reverse them |
| 2067 | t = q; |
| 2068 | q = p; |
| 2069 | p = t; |
| 2070 | } |
| 2071 | cnt = q - p + 1; |
| 2072 | t = reg[dest]; |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 2073 | free(t); // if already a yank register, free it |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 2074 | t = xmalloc(cnt + 1); // get a new register |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2075 | memset(t, '\0', cnt + 1); // clear new text[] |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2076 | strncpy(t, p, cnt); // copy text[] into bufer |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2077 | reg[dest] = t; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2078 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2079 | } |
| 2080 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2081 | static char what_reg(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2082 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2083 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2084 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2085 | c = 'D'; // default to D-reg |
| 2086 | if (0 <= YDreg && YDreg <= 25) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2087 | c = 'a' + (char) YDreg; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2088 | if (YDreg == 26) |
| 2089 | c = 'D'; |
| 2090 | if (YDreg == 27) |
| 2091 | c = 'U'; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2092 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2093 | } |
| 2094 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2095 | static void check_context(char cmd) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2096 | { |
| 2097 | // A context is defined to be "modifying text" |
| 2098 | // Any modifying command establishes a new context. |
| 2099 | |
| 2100 | if (dot < context_start || dot > context_end) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2101 | if (strchr(modifying_cmds, cmd) != NULL) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2102 | // we are trying to modify text[]- make this the current context |
| 2103 | mark[27] = mark[26]; // move cur to prev |
| 2104 | mark[26] = dot; // move local to cur |
| 2105 | context_start = prev_line(prev_line(dot)); |
| 2106 | context_end = next_line(next_line(dot)); |
| 2107 | //loiter= start_loiter= now; |
| 2108 | } |
| 2109 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2110 | } |
| 2111 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2112 | static char *swap_context(char *p) // goto new context for '' command make this the current context |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2113 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2114 | char *tmp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2115 | |
| 2116 | // the current context is in mark[26] |
| 2117 | // the previous context is in mark[27] |
| 2118 | // only swap context if other context is valid |
| 2119 | if (text <= mark[27] && mark[27] <= end - 1) { |
| 2120 | tmp = mark[27]; |
| 2121 | mark[27] = mark[26]; |
| 2122 | mark[26] = tmp; |
| 2123 | p = mark[26]; // where we are going- previous context |
| 2124 | context_start = prev_line(prev_line(prev_line(p))); |
| 2125 | context_end = next_line(next_line(next_line(p))); |
| 2126 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2127 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2128 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2129 | #endif /* FEATURE_VI_YANKMARK */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2130 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2131 | //----- Set terminal attributes -------------------------------- |
| 2132 | static void rawmode(void) |
| 2133 | { |
| 2134 | tcgetattr(0, &term_orig); |
| 2135 | term_vi = term_orig; |
| 2136 | term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's |
| 2137 | term_vi.c_iflag &= (~IXON & ~ICRNL); |
| 2138 | term_vi.c_oflag &= (~ONLCR); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2139 | term_vi.c_cc[VMIN] = 1; |
| 2140 | term_vi.c_cc[VTIME] = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2141 | erase_char = term_vi.c_cc[VERASE]; |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 2142 | tcsetattr_stdin_TCSANOW(&term_vi); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2143 | } |
| 2144 | |
| 2145 | static void cookmode(void) |
| 2146 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2147 | fflush(stdout); |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 2148 | tcsetattr_stdin_TCSANOW(&term_orig); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2149 | } |
| 2150 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2151 | //----- Come here when we get a window resize signal --------- |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2152 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2153 | static void winch_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2154 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2155 | // FIXME: do it in main loop!!! |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2156 | signal(SIGWINCH, winch_sig); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2157 | if (ENABLE_FEATURE_VI_WIN_RESIZE) { |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 2158 | get_terminal_width_height(0, &columns, &rows); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2159 | if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS; |
| 2160 | if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS; |
| 2161 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2162 | new_screen(rows, columns); // get memory for virtual screen |
| 2163 | redraw(TRUE); // re-draw the screen |
| 2164 | } |
| 2165 | |
| 2166 | //----- Come here when we get a continue signal ------------------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2167 | static void cont_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2168 | { |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2169 | rawmode(); // terminal to "raw" |
| 2170 | last_status_cksum = 0; // force status update |
| 2171 | redraw(TRUE); // re-draw the screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2172 | |
| 2173 | signal(SIGTSTP, suspend_sig); |
| 2174 | signal(SIGCONT, SIG_DFL); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2175 | kill(my_pid, SIGCONT); // huh? why? we are already "continued"... |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2176 | } |
| 2177 | |
| 2178 | //----- Come here when we get a Suspend signal ------------------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2179 | static void suspend_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2180 | { |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2181 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2182 | cookmode(); // terminal to "cooked" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2183 | |
| 2184 | signal(SIGCONT, cont_sig); |
| 2185 | signal(SIGTSTP, SIG_DFL); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2186 | kill(my_pid, SIGTSTP); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2187 | } |
| 2188 | |
| 2189 | //----- Come here when we get a signal --------------------------- |
| 2190 | static void catch_sig(int sig) |
| 2191 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2192 | signal(SIGINT, catch_sig); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2193 | if (sig) |
Paul Fox | 2724fa9 | 2008-03-17 15:28:07 +0000 | [diff] [blame] | 2194 | siglongjmp(restart, sig); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2195 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2196 | #endif /* FEATURE_VI_USE_SIGNALS */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2197 | |
| 2198 | static int mysleep(int hund) // sleep for 'h' 1/100 seconds |
| 2199 | { |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 2200 | struct pollfd pfd[1]; |
Denis Vlasenko | cd5c786 | 2007-05-17 16:37:22 +0000 | [diff] [blame] | 2201 | |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 2202 | pfd[0].fd = 0; |
| 2203 | pfd[0].events = POLLIN; |
Denis Vlasenko | 5d61e71 | 2007-09-27 10:09:59 +0000 | [diff] [blame] | 2204 | return safe_poll(pfd, 1, hund*10) > 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2205 | } |
| 2206 | |
| 2207 | //----- IO Routines -------------------------------------------- |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2208 | static int readit(void) // read (maybe cursor) key from stdin |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2209 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2210 | int c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2211 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2212 | fflush(stdout); |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 2213 | c = read_key(STDIN_FILENO, &chars_to_parse, readbuffer); |
| 2214 | if (c == -1) { // EOF/error |
| 2215 | go_bottom_and_clear_to_eol(); |
| 2216 | cookmode(); // terminal to "cooked" |
| 2217 | bb_error_msg_and_die("can't read user input"); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2218 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2219 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2220 | } |
| 2221 | |
| 2222 | //----- IO Routines -------------------------------------------- |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2223 | static int get_one_char(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2224 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2225 | int c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2226 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2227 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2228 | if (!adding2q) { |
| 2229 | // we are not adding to the q. |
| 2230 | // but, we may be reading from a q |
| 2231 | if (ioq == 0) { |
| 2232 | // there is no current q, read from STDIN |
| 2233 | c = readit(); // get the users input |
| 2234 | } else { |
| 2235 | // there is a queue to get chars from first |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2236 | // careful with correct sign expansion! |
| 2237 | c = (unsigned char)*ioq++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2238 | if (c == '\0') { |
| 2239 | // the end of the q, read from STDIN |
| 2240 | free(ioq_start); |
| 2241 | ioq_start = ioq = 0; |
| 2242 | c = readit(); // get the users input |
| 2243 | } |
| 2244 | } |
| 2245 | } else { |
| 2246 | // adding STDIN chars to q |
| 2247 | c = readit(); // get the users input |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2248 | if (lmc_len >= MAX_INPUT_LEN - 1) { |
| 2249 | status_line_bold("last_modifying_cmd overrun"); |
| 2250 | } else { |
| 2251 | // add new char to q |
| 2252 | last_modifying_cmd[lmc_len++] = c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2253 | } |
| 2254 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2255 | #else |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2256 | c = readit(); // get the users input |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2257 | #endif /* FEATURE_VI_DOT_CMD */ |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2258 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2259 | } |
| 2260 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2261 | // Get input line (uses "status line" area) |
| 2262 | static char *get_input_line(const char *prompt) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2263 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2264 | // char [MAX_INPUT_LEN] |
| 2265 | #define buf get_input_line__buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2266 | |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2267 | int c; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2268 | int i; |
| 2269 | |
| 2270 | strcpy(buf, prompt); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2271 | last_status_cksum = 0; // force status update |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2272 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2273 | write1(prompt); // write out the :, /, or ? prompt |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2274 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2275 | i = strlen(buf); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2276 | while (i < MAX_INPUT_LEN) { |
| 2277 | c = get_one_char(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2278 | if (c == '\n' || c == '\r' || c == 27) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2279 | break; // this is end of input |
Paul Fox | f2de0b7 | 2005-09-13 22:20:37 +0000 | [diff] [blame] | 2280 | if (c == erase_char || c == 8 || c == 127) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 2281 | // user wants to erase prev char |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2282 | buf[--i] = '\0'; |
| 2283 | write1("\b \b"); // erase char on screen |
| 2284 | if (i <= 0) // user backs up before b-o-l, exit |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2285 | break; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2286 | } else if (c > 0 && c < 256) { // exclude Unicode |
| 2287 | // (TODO: need to handle Unicode) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2288 | buf[i] = c; |
| 2289 | buf[++i] = '\0'; |
| 2290 | bb_putchar(c); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2291 | } |
| 2292 | } |
| 2293 | refresh(FALSE); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2294 | return buf; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2295 | #undef buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2296 | } |
| 2297 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2298 | static int file_size(const char *fn) // what is the byte size of "fn" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2299 | { |
| 2300 | struct stat st_buf; |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2301 | int cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2302 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2303 | cnt = -1; |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2304 | if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2305 | cnt = (int) st_buf.st_size; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2306 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2307 | } |
| 2308 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2309 | // might reallocate text[]! |
| 2310 | static int file_insert(const char *fn, char *p, int update_ro_status) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2311 | { |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2312 | int cnt = -1; |
| 2313 | int fd, size; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2314 | struct stat statbuf; |
| 2315 | |
| 2316 | /* Validate file */ |
| 2317 | if (stat(fn, &statbuf) < 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2318 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2319 | goto fi0; |
| 2320 | } |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2321 | if (!S_ISREG(statbuf.st_mode)) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2322 | // This is not a regular file |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2323 | status_line_bold("\"%s\" Not a regular file", fn); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2324 | goto fi0; |
| 2325 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2326 | if (p < text || p > end) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2327 | status_line_bold("Trying to insert file outside of memory"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2328 | goto fi0; |
| 2329 | } |
| 2330 | |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2331 | // read file to buffer |
| 2332 | fd = open(fn, O_RDONLY); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2333 | if (fd < 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2334 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2335 | goto fi0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2336 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2337 | size = statbuf.st_size; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2338 | p += text_hole_make(p, size); |
Denis Vlasenko | 4f95e5a | 2007-10-11 10:10:15 +0000 | [diff] [blame] | 2339 | cnt = safe_read(fd, p, size); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2340 | if (cnt < 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2341 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2342 | p = text_hole_delete(p, p + size - 1); // un-do buffer insert |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2343 | } else if (cnt < size) { |
| 2344 | // There was a partial read, shrink unused space text[] |
| 2345 | p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2346 | status_line_bold("cannot read all of file \"%s\"", fn); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2347 | } |
| 2348 | if (cnt >= size) |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2349 | file_modified++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2350 | close(fd); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2351 | fi0: |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2352 | #if ENABLE_FEATURE_VI_READONLY |
| 2353 | if (update_ro_status |
| 2354 | && ((access(fn, W_OK) < 0) || |
| 2355 | /* root will always have access() |
| 2356 | * so we check fileperms too */ |
| 2357 | !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) |
| 2358 | ) |
| 2359 | ) { |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 2360 | SET_READONLY_FILE(readonly_mode); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2361 | } |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2362 | #endif |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2363 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2364 | } |
| 2365 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2366 | static int file_write(char *fn, char *first, char *last) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2367 | { |
| 2368 | int fd, cnt, charcnt; |
| 2369 | |
| 2370 | if (fn == 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2371 | status_line_bold("No current filename"); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2372 | return -2; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2373 | } |
| 2374 | charcnt = 0; |
Denis Vlasenko | 8abae88 | 2008-05-03 11:35:59 +0000 | [diff] [blame] | 2375 | /* By popular request we do not open file with O_TRUNC, |
| 2376 | * but instead ftruncate() it _after_ successful write. |
| 2377 | * Might reduce amount of data lost on power fail etc. |
| 2378 | */ |
| 2379 | fd = open(fn, (O_WRONLY | O_CREAT), 0666); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2380 | if (fd < 0) |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2381 | return -1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2382 | cnt = last - first + 1; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2383 | charcnt = full_write(fd, first, cnt); |
Denis Vlasenko | 8abae88 | 2008-05-03 11:35:59 +0000 | [diff] [blame] | 2384 | ftruncate(fd, charcnt); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2385 | if (charcnt == cnt) { |
| 2386 | // good write |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2387 | //file_modified = FALSE; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2388 | } else { |
| 2389 | charcnt = 0; |
| 2390 | } |
| 2391 | close(fd); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2392 | return charcnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2393 | } |
| 2394 | |
| 2395 | //----- Terminal Drawing --------------------------------------- |
| 2396 | // The terminal is made up of 'rows' line of 'columns' columns. |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 2397 | // classically this would be 24 x 80. |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2398 | // screen coordinates |
| 2399 | // 0,0 ... 0,79 |
| 2400 | // 1,0 ... 1,79 |
| 2401 | // . ... . |
| 2402 | // . ... . |
| 2403 | // 22,0 ... 22,79 |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2404 | // 23,0 ... 23,79 <- status line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2405 | |
| 2406 | //----- Move the cursor to row x col (count from 0, not 1) ------- |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2407 | static void place_cursor(int row, int col, int optimize) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2408 | { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2409 | char cm1[sizeof(CMrc) + sizeof(int)*3 * 2]; |
Denis Vlasenko | 7b54dc7 | 2008-07-17 21:32:32 +0000 | [diff] [blame] | 2410 | #if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
| 2411 | enum { |
| 2412 | SZ_UP = sizeof(CMup), |
| 2413 | SZ_DN = sizeof(CMdown), |
| 2414 | SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN, |
| 2415 | }; |
| 2416 | char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size |
| 2417 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2418 | char *cm; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2419 | |
| 2420 | if (row < 0) row = 0; |
| 2421 | if (row >= rows) row = rows - 1; |
| 2422 | if (col < 0) col = 0; |
| 2423 | if (col >= columns) col = columns - 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2424 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2425 | //----- 1. Try the standard terminal ESC sequence |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2426 | sprintf(cm1, CMrc, row + 1, col + 1); |
| 2427 | cm = cm1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2428 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2429 | #if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2430 | if (optimize && col < 16) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2431 | char *screenp; |
| 2432 | int Rrow = last_row; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2433 | int diff = Rrow - row; |
| 2434 | |
| 2435 | if (diff < -5 || diff > 5) |
| 2436 | goto skip; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2437 | |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2438 | //----- find the minimum # of chars to move cursor ------------- |
| 2439 | //----- 2. Try moving with discreet chars (Newline, [back]space, ...) |
| 2440 | cm2[0] = '\0'; |
| 2441 | |
| 2442 | // move to the correct row |
| 2443 | while (row < Rrow) { |
| 2444 | // the cursor has to move up |
| 2445 | strcat(cm2, CMup); |
| 2446 | Rrow--; |
| 2447 | } |
| 2448 | while (row > Rrow) { |
| 2449 | // the cursor has to move down |
| 2450 | strcat(cm2, CMdown); |
| 2451 | Rrow++; |
| 2452 | } |
| 2453 | |
| 2454 | // now move to the correct column |
| 2455 | strcat(cm2, "\r"); // start at col 0 |
| 2456 | // just send out orignal source char to get to correct place |
| 2457 | screenp = &screen[row * columns]; // start of screen line |
| 2458 | strncat(cm2, screenp, col); |
| 2459 | |
| 2460 | // pick the shortest cursor motion to send out |
| 2461 | if (strlen(cm2) < strlen(cm)) { |
| 2462 | cm = cm2; |
| 2463 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2464 | skip: ; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2465 | } |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2466 | last_row = row; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2467 | #endif /* FEATURE_VI_OPTIMIZE_CURSOR */ |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2468 | write1(cm); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2469 | } |
| 2470 | |
| 2471 | //----- Erase from cursor to end of line ----------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2472 | static void clear_to_eol(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2473 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2474 | write1(Ceol); // Erase from cursor to end of line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2475 | } |
| 2476 | |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2477 | static void go_bottom_and_clear_to_eol(void) |
| 2478 | { |
| 2479 | place_cursor(rows - 1, 0, FALSE); // go to bottom of screen |
| 2480 | clear_to_eol(); // erase to end of line |
| 2481 | } |
| 2482 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2483 | //----- Erase from cursor to end of screen ----------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2484 | static void clear_to_eos(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2485 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2486 | write1(Ceos); // Erase from cursor to end of screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2487 | } |
| 2488 | |
| 2489 | //----- Start standout mode ------------------------------------ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2490 | static void standout_start(void) // send "start reverse video" sequence |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2491 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2492 | write1(SOs); // Start reverse video mode |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2493 | } |
| 2494 | |
| 2495 | //----- End standout mode -------------------------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2496 | static void standout_end(void) // send "end reverse video" sequence |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2497 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2498 | write1(SOn); // End reverse video mode |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2499 | } |
| 2500 | |
| 2501 | //----- Flash the screen -------------------------------------- |
| 2502 | static void flash(int h) |
| 2503 | { |
| 2504 | standout_start(); // send "start reverse video" sequence |
| 2505 | redraw(TRUE); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2506 | mysleep(h); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2507 | standout_end(); // send "end reverse video" sequence |
| 2508 | redraw(TRUE); |
| 2509 | } |
| 2510 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2511 | static void Indicate_Error(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2512 | { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2513 | #if ENABLE_FEATURE_VI_CRASHME |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2514 | if (crashme > 0) |
| 2515 | return; // generate a random command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2516 | #endif |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2517 | if (!err_method) { |
| 2518 | write1(bell); // send out a bell character |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2519 | } else { |
| 2520 | flash(10); |
| 2521 | } |
| 2522 | } |
| 2523 | |
| 2524 | //----- Screen[] Routines -------------------------------------- |
| 2525 | //----- Erase the Screen[] memory ------------------------------ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2526 | static void screen_erase(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2527 | { |
| 2528 | memset(screen, ' ', screensize); // clear new screen |
| 2529 | } |
| 2530 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2531 | static int bufsum(char *buf, int count) |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2532 | { |
| 2533 | int sum = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2534 | char *e = buf + count; |
| 2535 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2536 | while (buf < e) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2537 | sum += (unsigned char) *buf++; |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2538 | return sum; |
| 2539 | } |
| 2540 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2541 | //----- Draw the status line at bottom of the screen ------------- |
| 2542 | static void show_status_line(void) |
| 2543 | { |
Paul Fox | c350485 | 2005-09-16 12:48:18 +0000 | [diff] [blame] | 2544 | int cnt = 0, cksum = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2545 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2546 | // either we already have an error or status message, or we |
| 2547 | // create one. |
| 2548 | if (!have_status_msg) { |
| 2549 | cnt = format_edit_status(); |
| 2550 | cksum = bufsum(status_buffer, cnt); |
| 2551 | } |
| 2552 | if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2553 | last_status_cksum = cksum; // remember if we have seen this line |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2554 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2555 | write1(status_buffer); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2556 | if (have_status_msg) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2557 | if (((int)strlen(status_buffer) - (have_status_msg - 1)) > |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2558 | (columns - 1) ) { |
| 2559 | have_status_msg = 0; |
| 2560 | Hit_Return(); |
| 2561 | } |
| 2562 | have_status_msg = 0; |
| 2563 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2564 | place_cursor(crow, ccol, FALSE); // put cursor back in correct place |
| 2565 | } |
Eric Andersen | a9eb33d | 2004-08-19 19:15:06 +0000 | [diff] [blame] | 2566 | fflush(stdout); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2567 | } |
| 2568 | |
| 2569 | //----- format the status buffer, the bottom line of screen ------ |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2570 | // format status buffer, with STANDOUT mode |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2571 | static void status_line_bold(const char *format, ...) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2572 | { |
| 2573 | va_list args; |
| 2574 | |
| 2575 | va_start(args, format); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2576 | strcpy(status_buffer, SOs); // Terminal standout mode on |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2577 | vsprintf(status_buffer + sizeof(SOs)-1, format, args); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2578 | strcat(status_buffer, SOn); // Terminal standout mode off |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2579 | va_end(args); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2580 | |
| 2581 | have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2582 | } |
| 2583 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2584 | // format status buffer |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2585 | static void status_line(const char *format, ...) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2586 | { |
| 2587 | va_list args; |
| 2588 | |
| 2589 | va_start(args, format); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2590 | vsprintf(status_buffer, format, args); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2591 | va_end(args); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2592 | |
| 2593 | have_status_msg = 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2594 | } |
| 2595 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2596 | // copy s to buf, convert unprintable |
| 2597 | static void print_literal(char *buf, const char *s) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2598 | { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2599 | unsigned char c; |
| 2600 | char b[2]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2601 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2602 | b[1] = '\0'; |
| 2603 | buf[0] = '\0'; |
| 2604 | if (!s[0]) |
| 2605 | s = "(NULL)"; |
| 2606 | for (; *s; s++) { |
| 2607 | int c_is_no_print; |
| 2608 | |
| 2609 | c = *s; |
| 2610 | c_is_no_print = (c & 0x80) && !Isprint(c); |
| 2611 | if (c_is_no_print) { |
| 2612 | strcat(buf, SOn); |
| 2613 | c = '.'; |
| 2614 | } |
| 2615 | if (c < ' ' || c == 127) { |
| 2616 | strcat(buf, "^"); |
| 2617 | if (c == 127) |
| 2618 | c = '?'; |
| 2619 | else |
| 2620 | c += '@'; |
| 2621 | } |
| 2622 | b[0] = c; |
| 2623 | strcat(buf, b); |
| 2624 | if (c_is_no_print) |
| 2625 | strcat(buf, SOs); |
| 2626 | if (*s == '\n') |
| 2627 | strcat(buf, "$"); |
| 2628 | if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia |
| 2629 | break; |
| 2630 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2631 | } |
| 2632 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2633 | static void not_implemented(const char *s) |
| 2634 | { |
| 2635 | char buf[MAX_INPUT_LEN]; |
| 2636 | |
| 2637 | print_literal(buf, s); |
| 2638 | status_line_bold("\'%s\' is not implemented", buf); |
| 2639 | } |
| 2640 | |
| 2641 | // show file status on status line |
| 2642 | static int format_edit_status(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2643 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 2644 | static const char cmd_mode_indicator[] ALIGN1 = "-IR-"; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2645 | |
| 2646 | #define tot format_edit_status__tot |
| 2647 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2648 | int cur, percent, ret, trunc_at; |
| 2649 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2650 | // file_modified is now a counter rather than a flag. this |
| 2651 | // helps reduce the amount of line counting we need to do. |
| 2652 | // (this will cause a mis-reporting of modified status |
| 2653 | // once every MAXINT editing operations.) |
| 2654 | |
| 2655 | // it would be nice to do a similar optimization here -- if |
| 2656 | // we haven't done a motion that could have changed which line |
| 2657 | // we're on, then we shouldn't have to do this count_lines() |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2658 | cur = count_lines(text, dot); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2659 | |
| 2660 | // reduce counting -- the total lines can't have |
| 2661 | // changed if we haven't done any edits. |
| 2662 | if (file_modified != last_file_modified) { |
| 2663 | tot = cur + count_lines(dot, end - 1) - 1; |
| 2664 | last_file_modified = file_modified; |
| 2665 | } |
| 2666 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2667 | // current line percent |
| 2668 | // ------------- ~~ ---------- |
| 2669 | // total lines 100 |
| 2670 | if (tot > 0) { |
| 2671 | percent = (100 * cur) / tot; |
| 2672 | } else { |
| 2673 | cur = tot = 0; |
| 2674 | percent = 100; |
| 2675 | } |
Eric Andersen | 0ef24c6 | 2005-07-18 10:32:59 +0000 | [diff] [blame] | 2676 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2677 | trunc_at = columns < STATUS_BUFFER_LEN-1 ? |
| 2678 | columns : STATUS_BUFFER_LEN-1; |
| 2679 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2680 | ret = snprintf(status_buffer, trunc_at+1, |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2681 | #if ENABLE_FEATURE_VI_READONLY |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2682 | "%c %s%s%s %d/%d %d%%", |
| 2683 | #else |
| 2684 | "%c %s%s %d/%d %d%%", |
| 2685 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2686 | cmd_mode_indicator[cmd_mode & 3], |
| 2687 | (current_filename != NULL ? current_filename : "No file"), |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2688 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2689 | (readonly_mode ? " [Readonly]" : ""), |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2690 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2691 | (file_modified ? " [Modified]" : ""), |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2692 | cur, tot, percent); |
| 2693 | |
| 2694 | if (ret >= 0 && ret < trunc_at) |
| 2695 | return ret; /* it all fit */ |
| 2696 | |
| 2697 | return trunc_at; /* had to truncate */ |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2698 | #undef tot |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2699 | } |
| 2700 | |
| 2701 | //----- Force refresh of all Lines ----------------------------- |
| 2702 | static void redraw(int full_screen) |
| 2703 | { |
| 2704 | place_cursor(0, 0, FALSE); // put cursor in correct place |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2705 | clear_to_eos(); // tell terminal to erase display |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2706 | screen_erase(); // erase the internal screen buffer |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2707 | last_status_cksum = 0; // force status update |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2708 | refresh(full_screen); // this will redraw the entire display |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2709 | show_status_line(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2710 | } |
| 2711 | |
| 2712 | //----- Format a text[] line into a buffer --------------------- |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 2713 | static char* format_line(char *src /*, int li*/) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2714 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2715 | unsigned char c; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2716 | int co; |
| 2717 | int ofs = offset; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2718 | char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2] |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2719 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2720 | c = '~'; // char in col 0 in non-existent lines is '~' |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2721 | co = 0; |
| 2722 | while (co < columns + tabstop) { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2723 | // have we gone past the end? |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2724 | if (src < end) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2725 | c = *src++; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2726 | if (c == '\n') |
| 2727 | break; |
| 2728 | if ((c & 0x80) && !Isprint(c)) { |
| 2729 | c = '.'; |
| 2730 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2731 | if (c < ' ' || c == 0x7f) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2732 | if (c == '\t') { |
| 2733 | c = ' '; |
| 2734 | // co % 8 != 7 |
| 2735 | while ((co % tabstop) != (tabstop - 1)) { |
| 2736 | dest[co++] = c; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2737 | } |
| 2738 | } else { |
| 2739 | dest[co++] = '^'; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2740 | if (c == 0x7f) |
| 2741 | c = '?'; |
| 2742 | else |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2743 | c += '@'; // Ctrl-X -> 'X' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2744 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2745 | } |
| 2746 | } |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2747 | dest[co++] = c; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2748 | // discard scrolled-off-to-the-left portion, |
| 2749 | // in tabstop-sized pieces |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2750 | if (ofs >= tabstop && co >= tabstop) { |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2751 | memmove(dest, dest + tabstop, co); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2752 | co -= tabstop; |
| 2753 | ofs -= tabstop; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2754 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2755 | if (src >= end) |
| 2756 | break; |
| 2757 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2758 | // check "short line, gigantic offset" case |
| 2759 | if (co < ofs) |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2760 | ofs = co; |
| 2761 | // discard last scrolled off part |
| 2762 | co -= ofs; |
| 2763 | dest += ofs; |
| 2764 | // fill the rest with spaces |
| 2765 | if (co < columns) |
| 2766 | memset(&dest[co], ' ', columns - co); |
| 2767 | return dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2768 | } |
| 2769 | |
| 2770 | //----- Refresh the changed screen lines ----------------------- |
| 2771 | // Copy the source line from text[] into the buffer and note |
| 2772 | // if the current screenline is different from the new buffer. |
| 2773 | // If they differ then that line needs redrawing on the terminal. |
| 2774 | // |
| 2775 | static void refresh(int full_screen) |
| 2776 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2777 | #define old_offset refresh__old_offset |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2778 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2779 | int li, changed; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2780 | char *tp, *sp; // pointer into text[] and screen[] |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2781 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2782 | if (ENABLE_FEATURE_VI_WIN_RESIZE) { |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 2783 | unsigned c = columns, r = rows; |
Rob Landley | e5e1a10 | 2006-06-21 01:15:36 +0000 | [diff] [blame] | 2784 | get_terminal_width_height(0, &columns, &rows); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2785 | if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS; |
| 2786 | if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS; |
| 2787 | full_screen |= (c - columns) | (r - rows); |
| 2788 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2789 | sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot") |
| 2790 | tp = screenbegin; // index into text[] of top line |
| 2791 | |
| 2792 | // compare text[] to screen[] and mark screen[] lines that need updating |
| 2793 | for (li = 0; li < rows - 1; li++) { |
| 2794 | int cs, ce; // column start & end |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2795 | char *out_buf; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2796 | // format current text line |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 2797 | out_buf = format_line(tp /*, li*/); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2798 | |
| 2799 | // skip to the end of the current text[] line |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2800 | if (tp < end) { |
| 2801 | char *t = memchr(tp, '\n', end - tp); |
| 2802 | if (!t) t = end - 1; |
| 2803 | tp = t + 1; |
| 2804 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2805 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2806 | // see if there are any changes between vitual screen and out_buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2807 | changed = FALSE; // assume no change |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2808 | cs = 0; |
| 2809 | ce = columns - 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2810 | sp = &screen[li * columns]; // start of screen line |
| 2811 | if (full_screen) { |
| 2812 | // force re-draw of every single column from 0 - columns-1 |
| 2813 | goto re0; |
| 2814 | } |
| 2815 | // compare newly formatted buffer with virtual screen |
| 2816 | // look forward for first difference between buf and screen |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2817 | for (; cs <= ce; cs++) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2818 | if (out_buf[cs] != sp[cs]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2819 | changed = TRUE; // mark for redraw |
| 2820 | break; |
| 2821 | } |
| 2822 | } |
| 2823 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2824 | // look backward for last difference between out_buf and screen |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2825 | for (; ce >= cs; ce--) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2826 | if (out_buf[ce] != sp[ce]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2827 | changed = TRUE; // mark for redraw |
| 2828 | break; |
| 2829 | } |
| 2830 | } |
| 2831 | // now, cs is index of first diff, and ce is index of last diff |
| 2832 | |
| 2833 | // if horz offset has changed, force a redraw |
| 2834 | if (offset != old_offset) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2835 | re0: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2836 | changed = TRUE; |
| 2837 | } |
| 2838 | |
| 2839 | // make a sanity check of columns indexes |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2840 | if (cs < 0) cs = 0; |
| 2841 | if (ce > columns - 1) ce = columns - 1; |
| 2842 | if (cs > ce) { cs = 0; ce = columns - 1; } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2843 | // is there a change between vitual screen and out_buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2844 | if (changed) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2845 | // copy changed part of buffer to virtual screen |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2846 | memcpy(sp+cs, out_buf+cs, ce-cs+1); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2847 | |
| 2848 | // move cursor to column of first change |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2849 | //if (offset != old_offset) { |
| 2850 | // // place_cursor is still too stupid |
| 2851 | // // to handle offsets correctly |
| 2852 | // place_cursor(li, cs, FALSE); |
| 2853 | //} else { |
| 2854 | place_cursor(li, cs, TRUE); |
| 2855 | //} |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2856 | |
| 2857 | // write line out to terminal |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2858 | fwrite(&sp[cs], ce - cs + 1, 1, stdout); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2859 | } |
| 2860 | } |
| 2861 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2862 | place_cursor(crow, ccol, TRUE); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2863 | |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2864 | old_offset = offset; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2865 | #undef old_offset |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2866 | } |
| 2867 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2868 | //--------------------------------------------------------------------- |
| 2869 | //----- the Ascii Chart ----------------------------------------------- |
| 2870 | // |
| 2871 | // 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel |
| 2872 | // 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si |
| 2873 | // 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb |
| 2874 | // 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us |
| 2875 | // 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 ' |
| 2876 | // 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f / |
| 2877 | // 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7 |
| 2878 | // 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ? |
| 2879 | // 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G |
| 2880 | // 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O |
| 2881 | // 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W |
| 2882 | // 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _ |
| 2883 | // 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g |
| 2884 | // 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o |
| 2885 | // 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w |
| 2886 | // 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del |
| 2887 | //--------------------------------------------------------------------- |
| 2888 | |
| 2889 | //----- Execute a Vi Command ----------------------------------- |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2890 | static void do_cmd(int c) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2891 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2892 | const char *msg = msg; // for compiler |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2893 | char *p, *q, *save_dot; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2894 | char buf[12]; |
Denis Vlasenko | c3a9dc8 | 2008-10-29 00:58:04 +0000 | [diff] [blame] | 2895 | int dir; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2896 | int cnt, i, j; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2897 | int c1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2898 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2899 | // c1 = c; // quiet the compiler |
| 2900 | // cnt = yf = 0; // quiet the compiler |
| 2901 | // msg = p = q = save_dot = buf; // quiet the compiler |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2902 | memset(buf, '\0', 12); |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 2903 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2904 | show_status_line(); |
| 2905 | |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 2906 | /* if this is a cursor key, skip these checks */ |
| 2907 | switch (c) { |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 2908 | case KEYCODE_UP: |
| 2909 | case KEYCODE_DOWN: |
| 2910 | case KEYCODE_LEFT: |
| 2911 | case KEYCODE_RIGHT: |
| 2912 | case KEYCODE_HOME: |
| 2913 | case KEYCODE_END: |
| 2914 | case KEYCODE_PAGEUP: |
| 2915 | case KEYCODE_PAGEDOWN: |
| 2916 | case KEYCODE_DELETE: |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 2917 | goto key_cmd_mode; |
| 2918 | } |
| 2919 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2920 | if (cmd_mode == 2) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2921 | // flip-flop Insert/Replace mode |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 2922 | if (c == KEYCODE_INSERT) |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 2923 | goto dc_i; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2924 | // we are 'R'eplacing the current *dot with new char |
| 2925 | if (*dot == '\n') { |
| 2926 | // don't Replace past E-o-l |
| 2927 | cmd_mode = 1; // convert to insert |
| 2928 | } else { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2929 | if (1 <= c || Isprint(c)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2930 | if (c != 27) |
| 2931 | dot = yank_delete(dot, dot, 0, YANKDEL); // delete char |
| 2932 | dot = char_insert(dot, c); // insert new char |
| 2933 | } |
| 2934 | goto dc1; |
| 2935 | } |
| 2936 | } |
| 2937 | if (cmd_mode == 1) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 2938 | // hitting "Insert" twice means "R" replace mode |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 2939 | if (c == KEYCODE_INSERT) goto dc5; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2940 | // insert the char c at "dot" |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2941 | if (1 <= c || Isprint(c)) { |
| 2942 | dot = char_insert(dot, c); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2943 | } |
| 2944 | goto dc1; |
| 2945 | } |
| 2946 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2947 | key_cmd_mode: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2948 | switch (c) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 2949 | //case 0x01: // soh |
| 2950 | //case 0x09: // ht |
| 2951 | //case 0x0b: // vt |
| 2952 | //case 0x0e: // so |
| 2953 | //case 0x0f: // si |
| 2954 | //case 0x10: // dle |
| 2955 | //case 0x11: // dc1 |
| 2956 | //case 0x13: // dc3 |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2957 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 2958 | case 0x14: // dc4 ctrl-T |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2959 | crashme = (crashme == 0) ? 1 : 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2960 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2961 | #endif |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 2962 | //case 0x16: // syn |
| 2963 | //case 0x17: // etb |
| 2964 | //case 0x18: // can |
| 2965 | //case 0x1c: // fs |
| 2966 | //case 0x1d: // gs |
| 2967 | //case 0x1e: // rs |
| 2968 | //case 0x1f: // us |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2969 | //case '!': // !- |
| 2970 | //case '#': // #- |
| 2971 | //case '&': // &- |
| 2972 | //case '(': // (- |
| 2973 | //case ')': // )- |
| 2974 | //case '*': // *- |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2975 | //case '=': // =- |
| 2976 | //case '@': // @- |
| 2977 | //case 'F': // F- |
| 2978 | //case 'K': // K- |
| 2979 | //case 'Q': // Q- |
| 2980 | //case 'S': // S- |
| 2981 | //case 'T': // T- |
| 2982 | //case 'V': // V- |
| 2983 | //case '[': // [- |
| 2984 | //case '\\': // \- |
| 2985 | //case ']': // ]- |
| 2986 | //case '_': // _- |
| 2987 | //case '`': // `- |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 2988 | //case 'u': // u- FIXME- there is no undo |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2989 | //case 'v': // v- |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2990 | default: // unrecognised command |
| 2991 | buf[0] = c; |
| 2992 | buf[1] = '\0'; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2993 | if (c < ' ') { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2994 | buf[0] = '^'; |
| 2995 | buf[1] = c + '@'; |
| 2996 | buf[2] = '\0'; |
| 2997 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2998 | not_implemented(buf); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2999 | end_cmd_q(); // stop adding to q |
| 3000 | case 0x00: // nul- ignore |
| 3001 | break; |
| 3002 | case 2: // ctrl-B scroll up full screen |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3003 | case KEYCODE_PAGEUP: // Cursor Key Page Up |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3004 | dot_scroll(rows - 2, -1); |
| 3005 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3006 | case 4: // ctrl-D scroll down half screen |
| 3007 | dot_scroll((rows - 2) / 2, 1); |
| 3008 | break; |
| 3009 | case 5: // ctrl-E scroll down one line |
| 3010 | dot_scroll(1, 1); |
| 3011 | break; |
| 3012 | case 6: // ctrl-F scroll down full screen |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3013 | case KEYCODE_PAGEDOWN: // Cursor Key Page Down |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3014 | dot_scroll(rows - 2, 1); |
| 3015 | break; |
| 3016 | case 7: // ctrl-G show current status |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3017 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3018 | break; |
| 3019 | case 'h': // h- move left |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3020 | case KEYCODE_LEFT: // cursor key Left |
Paul Fox | d13b90b | 2005-07-18 22:17:25 +0000 | [diff] [blame] | 3021 | case 8: // ctrl-H- move left (This may be ERASE char) |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 3022 | case 0x7f: // DEL- move left (This may be ERASE char) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3023 | if (cmdcnt-- > 1) { |
| 3024 | do_cmd(c); |
| 3025 | } // repeat cnt |
| 3026 | dot_left(); |
| 3027 | break; |
| 3028 | case 10: // Newline ^J |
| 3029 | case 'j': // j- goto next line, same col |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3030 | case KEYCODE_DOWN: // cursor key Down |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3031 | if (cmdcnt-- > 1) { |
| 3032 | do_cmd(c); |
| 3033 | } // repeat cnt |
| 3034 | dot_next(); // go to next B-o-l |
| 3035 | dot = move_to_col(dot, ccol + offset); // try stay in same col |
| 3036 | break; |
| 3037 | case 12: // ctrl-L force redraw whole screen |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3038 | case 18: // ctrl-R force redraw |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3039 | place_cursor(0, 0, FALSE); // put cursor in correct place |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3040 | clear_to_eos(); // tel terminal to erase display |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3041 | mysleep(10); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3042 | screen_erase(); // erase the internal screen buffer |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3043 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3044 | refresh(TRUE); // this will redraw the entire display |
| 3045 | break; |
| 3046 | case 13: // Carriage Return ^M |
| 3047 | case '+': // +- goto next line |
| 3048 | if (cmdcnt-- > 1) { |
| 3049 | do_cmd(c); |
| 3050 | } // repeat cnt |
| 3051 | dot_next(); |
| 3052 | dot_skip_over_ws(); |
| 3053 | break; |
| 3054 | case 21: // ctrl-U scroll up half screen |
| 3055 | dot_scroll((rows - 2) / 2, -1); |
| 3056 | break; |
| 3057 | case 25: // ctrl-Y scroll up one line |
| 3058 | dot_scroll(1, -1); |
| 3059 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3060 | case 27: // esc |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3061 | if (cmd_mode == 0) |
| 3062 | indicate_error(c); |
| 3063 | cmd_mode = 0; // stop insrting |
| 3064 | end_cmd_q(); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3065 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3066 | break; |
| 3067 | case ' ': // move right |
| 3068 | case 'l': // move right |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3069 | case KEYCODE_RIGHT: // Cursor Key Right |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3070 | if (cmdcnt-- > 1) { |
| 3071 | do_cmd(c); |
| 3072 | } // repeat cnt |
| 3073 | dot_right(); |
| 3074 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3075 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3076 | case '"': // "- name a register to use for Delete/Yank |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3077 | c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower() |
| 3078 | if ((unsigned)c1 <= 25) { // a-z? |
| 3079 | YDreg = c1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3080 | } else { |
| 3081 | indicate_error(c); |
| 3082 | } |
| 3083 | break; |
| 3084 | case '\'': // '- goto a specific mark |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3085 | c1 = (get_one_char() | 0x20) - 'a'; |
| 3086 | if ((unsigned)c1 <= 25) { // a-z? |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3087 | // get the b-o-l |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3088 | q = mark[c1]; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3089 | if (text <= q && q < end) { |
| 3090 | dot = q; |
| 3091 | dot_begin(); // go to B-o-l |
| 3092 | dot_skip_over_ws(); |
| 3093 | } |
| 3094 | } else if (c1 == '\'') { // goto previous context |
| 3095 | dot = swap_context(dot); // swap current and previous context |
| 3096 | dot_begin(); // go to B-o-l |
| 3097 | dot_skip_over_ws(); |
| 3098 | } else { |
| 3099 | indicate_error(c); |
| 3100 | } |
| 3101 | break; |
| 3102 | case 'm': // m- Mark a line |
| 3103 | // this is really stupid. If there are any inserts or deletes |
| 3104 | // between text[0] and dot then this mark will not point to the |
| 3105 | // correct location! It could be off by many lines! |
| 3106 | // Well..., at least its quick and dirty. |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3107 | c1 = (get_one_char() | 0x20) - 'a'; |
| 3108 | if ((unsigned)c1 <= 25) { // a-z? |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3109 | // remember the line |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3110 | mark[c1] = dot; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3111 | } else { |
| 3112 | indicate_error(c); |
| 3113 | } |
| 3114 | break; |
| 3115 | case 'P': // P- Put register before |
| 3116 | case 'p': // p- put register after |
| 3117 | p = reg[YDreg]; |
| 3118 | if (p == 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3119 | status_line_bold("Nothing in register %c", what_reg()); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3120 | break; |
| 3121 | } |
| 3122 | // are we putting whole lines or strings |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3123 | if (strchr(p, '\n') != NULL) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3124 | if (c == 'P') { |
| 3125 | dot_begin(); // putting lines- Put above |
| 3126 | } |
| 3127 | if (c == 'p') { |
| 3128 | // are we putting after very last line? |
| 3129 | if (end_line(dot) == (end - 1)) { |
| 3130 | dot = end; // force dot to end of text[] |
| 3131 | } else { |
| 3132 | dot_next(); // next line, then put before |
| 3133 | } |
| 3134 | } |
| 3135 | } else { |
| 3136 | if (c == 'p') |
| 3137 | dot_right(); // move to right, can move to NL |
| 3138 | } |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 3139 | string_insert(dot, p); // insert the string |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3140 | end_cmd_q(); // stop adding to q |
| 3141 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3142 | case 'U': // U- Undo; replace current line with original version |
| 3143 | if (reg[Ureg] != 0) { |
| 3144 | p = begin_line(dot); |
| 3145 | q = end_line(dot); |
| 3146 | p = text_hole_delete(p, q); // delete cur line |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 3147 | p += string_insert(p, reg[Ureg]); // insert orig line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3148 | dot = p; |
| 3149 | dot_skip_over_ws(); |
| 3150 | } |
| 3151 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3152 | #endif /* FEATURE_VI_YANKMARK */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3153 | case '$': // $- goto end of line |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3154 | case KEYCODE_END: // Cursor Key End |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3155 | if (cmdcnt-- > 1) { |
| 3156 | do_cmd(c); |
| 3157 | } // repeat cnt |
Glenn L McGrath | ee82906 | 2004-01-21 10:59:45 +0000 | [diff] [blame] | 3158 | dot = end_line(dot); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3159 | break; |
| 3160 | case '%': // %- find matching char of pair () [] {} |
| 3161 | for (q = dot; q < end && *q != '\n'; q++) { |
| 3162 | if (strchr("()[]{}", *q) != NULL) { |
| 3163 | // we found half of a pair |
| 3164 | p = find_pair(q, *q); |
| 3165 | if (p == NULL) { |
| 3166 | indicate_error(c); |
| 3167 | } else { |
| 3168 | dot = p; |
| 3169 | } |
| 3170 | break; |
| 3171 | } |
| 3172 | } |
| 3173 | if (*q == '\n') |
| 3174 | indicate_error(c); |
| 3175 | break; |
| 3176 | case 'f': // f- forward to a user specified char |
| 3177 | last_forward_char = get_one_char(); // get the search char |
| 3178 | // |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 3179 | // dont separate these two commands. 'f' depends on ';' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3180 | // |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3181 | //**** fall through to ... ';' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3182 | case ';': // ;- look at rest of line for last forward char |
| 3183 | if (cmdcnt-- > 1) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3184 | do_cmd(';'); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3185 | } // repeat cnt |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3186 | if (last_forward_char == 0) |
| 3187 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3188 | q = dot + 1; |
| 3189 | while (q < end - 1 && *q != '\n' && *q != last_forward_char) { |
| 3190 | q++; |
| 3191 | } |
| 3192 | if (*q == last_forward_char) |
| 3193 | dot = q; |
| 3194 | break; |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3195 | case ',': // repeat latest 'f' in opposite direction |
| 3196 | if (cmdcnt-- > 1) { |
| 3197 | do_cmd(','); |
| 3198 | } // repeat cnt |
| 3199 | if (last_forward_char == 0) |
| 3200 | break; |
| 3201 | q = dot - 1; |
| 3202 | while (q >= text && *q != '\n' && *q != last_forward_char) { |
| 3203 | q--; |
| 3204 | } |
| 3205 | if (q >= text && *q == last_forward_char) |
| 3206 | dot = q; |
| 3207 | break; |
| 3208 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3209 | case '-': // -- goto prev line |
| 3210 | if (cmdcnt-- > 1) { |
| 3211 | do_cmd(c); |
| 3212 | } // repeat cnt |
| 3213 | dot_prev(); |
| 3214 | dot_skip_over_ws(); |
| 3215 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3216 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3217 | case '.': // .- repeat the last modifying command |
| 3218 | // Stuff the last_modifying_cmd back into stdin |
| 3219 | // and let it be re-executed. |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3220 | if (lmc_len > 0) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3221 | last_modifying_cmd[lmc_len] = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3222 | ioq = ioq_start = xstrdup(last_modifying_cmd); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3223 | } |
| 3224 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3225 | #endif |
| 3226 | #if ENABLE_FEATURE_VI_SEARCH |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3227 | case '?': // /- search for a pattern |
| 3228 | case '/': // /- search for a pattern |
| 3229 | buf[0] = c; |
| 3230 | buf[1] = '\0'; |
| 3231 | q = get_input_line(buf); // get input line- use "status line" |
Paul Fox | 4917c11 | 2008-03-05 16:44:02 +0000 | [diff] [blame] | 3232 | if (q[0] && !q[1]) { |
| 3233 | if (last_search_pattern[0]) |
Denis Vlasenko | c3a9dc8 | 2008-10-29 00:58:04 +0000 | [diff] [blame] | 3234 | last_search_pattern[0] = c; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3235 | goto dc3; // if no pat re-use old pat |
Paul Fox | 4917c11 | 2008-03-05 16:44:02 +0000 | [diff] [blame] | 3236 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3237 | if (q[0]) { // strlen(q) > 1: new pat- save it and find |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3238 | // there is a new pat |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 3239 | free(last_search_pattern); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3240 | last_search_pattern = xstrdup(q); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3241 | goto dc3; // now find the pattern |
| 3242 | } |
| 3243 | // user changed mind and erased the "/"- do nothing |
| 3244 | break; |
| 3245 | case 'N': // N- backward search for last pattern |
| 3246 | if (cmdcnt-- > 1) { |
| 3247 | do_cmd(c); |
| 3248 | } // repeat cnt |
| 3249 | dir = BACK; // assume BACKWARD search |
| 3250 | p = dot - 1; |
| 3251 | if (last_search_pattern[0] == '?') { |
| 3252 | dir = FORWARD; |
| 3253 | p = dot + 1; |
| 3254 | } |
| 3255 | goto dc4; // now search for pattern |
| 3256 | break; |
| 3257 | case 'n': // n- repeat search for last pattern |
| 3258 | // search rest of text[] starting at next char |
| 3259 | // if search fails return orignal "p" not the "p+1" address |
| 3260 | if (cmdcnt-- > 1) { |
| 3261 | do_cmd(c); |
| 3262 | } // repeat cnt |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3263 | dc3: |
Denis Vlasenko | c3a9dc8 | 2008-10-29 00:58:04 +0000 | [diff] [blame] | 3264 | dir = FORWARD; // assume FORWARD search |
| 3265 | p = dot + 1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3266 | if (last_search_pattern[0] == '?') { |
| 3267 | dir = BACK; |
| 3268 | p = dot - 1; |
| 3269 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3270 | dc4: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3271 | q = char_search(p, last_search_pattern + 1, dir, FULL); |
| 3272 | if (q != NULL) { |
| 3273 | dot = q; // good search, update "dot" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3274 | msg = ""; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3275 | goto dc2; |
| 3276 | } |
| 3277 | // no pattern found between "dot" and "end"- continue at top |
| 3278 | p = text; |
| 3279 | if (dir == BACK) { |
| 3280 | p = end - 1; |
| 3281 | } |
| 3282 | q = char_search(p, last_search_pattern + 1, dir, FULL); |
| 3283 | if (q != NULL) { // found something |
| 3284 | dot = q; // found new pattern- goto it |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3285 | msg = "search hit BOTTOM, continuing at TOP"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3286 | if (dir == BACK) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3287 | msg = "search hit TOP, continuing at BOTTOM"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3288 | } |
| 3289 | } else { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3290 | msg = "Pattern not found"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3291 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3292 | dc2: |
| 3293 | if (*msg) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3294 | status_line_bold("%s", msg); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3295 | break; |
| 3296 | case '{': // {- move backward paragraph |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3297 | q = char_search(dot, "\n\n", BACK, FULL); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3298 | if (q != NULL) { // found blank line |
| 3299 | dot = next_line(q); // move to next blank line |
| 3300 | } |
| 3301 | break; |
| 3302 | case '}': // }- move forward paragraph |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3303 | q = char_search(dot, "\n\n", FORWARD, FULL); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3304 | if (q != NULL) { // found blank line |
| 3305 | dot = next_line(q); // move to next blank line |
| 3306 | } |
| 3307 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3308 | #endif /* FEATURE_VI_SEARCH */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3309 | case '0': // 0- goto begining of line |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3310 | case '1': // 1- |
| 3311 | case '2': // 2- |
| 3312 | case '3': // 3- |
| 3313 | case '4': // 4- |
| 3314 | case '5': // 5- |
| 3315 | case '6': // 6- |
| 3316 | case '7': // 7- |
| 3317 | case '8': // 8- |
| 3318 | case '9': // 9- |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3319 | if (c == '0' && cmdcnt < 1) { |
| 3320 | dot_begin(); // this was a standalone zero |
| 3321 | } else { |
| 3322 | cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number |
| 3323 | } |
| 3324 | break; |
| 3325 | case ':': // :- the colon mode commands |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3326 | p = get_input_line(":"); // get input line- use "status line" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3327 | #if ENABLE_FEATURE_VI_COLON |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3328 | colon(p); // execute the command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3329 | #else |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3330 | if (*p == ':') |
| 3331 | p++; // move past the ':' |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3332 | cnt = strlen(p); |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3333 | if (cnt <= 0) |
| 3334 | break; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3335 | if (strncasecmp(p, "quit", cnt) == 0 |
| 3336 | || strncasecmp(p, "q!", cnt) == 0 // delete lines |
| 3337 | ) { |
Matt Kraai | 1f0c436 | 2001-12-20 23:13:26 +0000 | [diff] [blame] | 3338 | if (file_modified && p[1] != '!') { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3339 | status_line_bold("No write since last change (:quit! overrides)"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3340 | } else { |
| 3341 | editing = 0; |
| 3342 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3343 | } else if (strncasecmp(p, "write", cnt) == 0 |
| 3344 | || strncasecmp(p, "wq", cnt) == 0 |
| 3345 | || strncasecmp(p, "wn", cnt) == 0 |
| 3346 | || strncasecmp(p, "x", cnt) == 0 |
| 3347 | ) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3348 | cnt = file_write(current_filename, text, end - 1); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3349 | if (cnt < 0) { |
| 3350 | if (cnt == -1) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3351 | status_line_bold("Write error: %s", strerror(errno)); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3352 | } else { |
| 3353 | file_modified = 0; |
| 3354 | last_file_modified = -1; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3355 | status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3356 | if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n' |
| 3357 | || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N' |
| 3358 | ) { |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3359 | editing = 0; |
| 3360 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3361 | } |
Denis Vlasenko | 219d14d | 2007-03-24 15:40:16 +0000 | [diff] [blame] | 3362 | } else if (strncasecmp(p, "file", cnt) == 0) { |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3363 | last_status_cksum = 0; // force status update |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3364 | } else if (sscanf(p, "%d", &j) > 0) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3365 | dot = find_line(j); // go to line # j |
| 3366 | dot_skip_over_ws(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3367 | } else { // unrecognised cmd |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3368 | not_implemented(p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3369 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3370 | #endif /* !FEATURE_VI_COLON */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3371 | break; |
| 3372 | case '<': // <- Left shift something |
| 3373 | case '>': // >- Right shift something |
| 3374 | cnt = count_lines(text, dot); // remember what line we are on |
| 3375 | c1 = get_one_char(); // get the type of thing to delete |
| 3376 | find_range(&p, &q, c1); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3377 | yank_delete(p, q, 1, YANKONLY); // save copy before change |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3378 | p = begin_line(p); |
| 3379 | q = end_line(q); |
| 3380 | i = count_lines(p, q); // # of lines we are shifting |
| 3381 | for ( ; i > 0; i--, p = next_line(p)) { |
| 3382 | if (c == '<') { |
| 3383 | // shift left- remove tab or 8 spaces |
| 3384 | if (*p == '\t') { |
| 3385 | // shrink buffer 1 char |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3386 | text_hole_delete(p, p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3387 | } else if (*p == ' ') { |
| 3388 | // we should be calculating columns, not just SPACE |
| 3389 | for (j = 0; *p == ' ' && j < tabstop; j++) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3390 | text_hole_delete(p, p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3391 | } |
| 3392 | } |
| 3393 | } else if (c == '>') { |
| 3394 | // shift right -- add tab or 8 spaces |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3395 | char_insert(p, '\t'); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3396 | } |
| 3397 | } |
| 3398 | dot = find_line(cnt); // what line were we on |
| 3399 | dot_skip_over_ws(); |
| 3400 | end_cmd_q(); // stop adding to q |
| 3401 | break; |
| 3402 | case 'A': // A- append at e-o-l |
| 3403 | dot_end(); // go to e-o-l |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3404 | //**** fall through to ... 'a' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3405 | case 'a': // a- append after current char |
| 3406 | if (*dot != '\n') |
| 3407 | dot++; |
| 3408 | goto dc_i; |
| 3409 | break; |
| 3410 | case 'B': // B- back a blank-delimited Word |
| 3411 | case 'E': // E- end of a blank-delimited word |
| 3412 | case 'W': // W- forward a blank-delimited word |
| 3413 | if (cmdcnt-- > 1) { |
| 3414 | do_cmd(c); |
| 3415 | } // repeat cnt |
| 3416 | dir = FORWARD; |
| 3417 | if (c == 'B') |
| 3418 | dir = BACK; |
| 3419 | if (c == 'W' || isspace(dot[dir])) { |
| 3420 | dot = skip_thing(dot, 1, dir, S_TO_WS); |
| 3421 | dot = skip_thing(dot, 2, dir, S_OVER_WS); |
| 3422 | } |
| 3423 | if (c != 'W') |
| 3424 | dot = skip_thing(dot, 1, dir, S_BEFORE_WS); |
| 3425 | break; |
| 3426 | case 'C': // C- Change to e-o-l |
| 3427 | case 'D': // D- delete to e-o-l |
| 3428 | save_dot = dot; |
| 3429 | dot = dollar_line(dot); // move to before NL |
| 3430 | // copy text into a register and delete |
| 3431 | dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l |
| 3432 | if (c == 'C') |
| 3433 | goto dc_i; // start inserting |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3434 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3435 | if (c == 'D') |
| 3436 | end_cmd_q(); // stop adding to q |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3437 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3438 | break; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3439 | case 'g': // 'gg' goto a line number (vim) (default: very first line) |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3440 | c1 = get_one_char(); |
| 3441 | if (c1 != 'g') { |
| 3442 | buf[0] = 'g'; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3443 | buf[1] = c1; // TODO: if Unicode? |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3444 | buf[2] = '\0'; |
| 3445 | not_implemented(buf); |
| 3446 | break; |
| 3447 | } |
| 3448 | if (cmdcnt == 0) |
| 3449 | cmdcnt = 1; |
| 3450 | /* fall through */ |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3451 | case 'G': // G- goto to a line number (default= E-O-F) |
| 3452 | dot = end - 1; // assume E-O-F |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3453 | if (cmdcnt > 0) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3454 | dot = find_line(cmdcnt); // what line is #cmdcnt |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3455 | } |
| 3456 | dot_skip_over_ws(); |
| 3457 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3458 | case 'H': // H- goto top line on screen |
| 3459 | dot = screenbegin; |
| 3460 | if (cmdcnt > (rows - 1)) { |
| 3461 | cmdcnt = (rows - 1); |
| 3462 | } |
| 3463 | if (cmdcnt-- > 1) { |
| 3464 | do_cmd('+'); |
| 3465 | } // repeat cnt |
| 3466 | dot_skip_over_ws(); |
| 3467 | break; |
| 3468 | case 'I': // I- insert before first non-blank |
| 3469 | dot_begin(); // 0 |
| 3470 | dot_skip_over_ws(); |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3471 | //**** fall through to ... 'i' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3472 | case 'i': // i- insert before current char |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3473 | case KEYCODE_INSERT: // Cursor Key Insert |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3474 | dc_i: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3475 | cmd_mode = 1; // start insrting |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3476 | break; |
| 3477 | case 'J': // J- join current and next lines together |
| 3478 | if (cmdcnt-- > 2) { |
| 3479 | do_cmd(c); |
| 3480 | } // repeat cnt |
| 3481 | dot_end(); // move to NL |
| 3482 | if (dot < end - 1) { // make sure not last char in text[] |
| 3483 | *dot++ = ' '; // replace NL with space |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3484 | file_modified++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3485 | while (isblank(*dot)) { // delete leading WS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3486 | dot_delete(); |
| 3487 | } |
| 3488 | } |
| 3489 | end_cmd_q(); // stop adding to q |
| 3490 | break; |
| 3491 | case 'L': // L- goto bottom line on screen |
| 3492 | dot = end_screen(); |
| 3493 | if (cmdcnt > (rows - 1)) { |
| 3494 | cmdcnt = (rows - 1); |
| 3495 | } |
| 3496 | if (cmdcnt-- > 1) { |
| 3497 | do_cmd('-'); |
| 3498 | } // repeat cnt |
| 3499 | dot_begin(); |
| 3500 | dot_skip_over_ws(); |
| 3501 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3502 | case 'M': // M- goto middle line on screen |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3503 | dot = screenbegin; |
| 3504 | for (cnt = 0; cnt < (rows-1) / 2; cnt++) |
| 3505 | dot = next_line(dot); |
| 3506 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3507 | case 'O': // O- open a empty line above |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3508 | // 0i\n ESC -i |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3509 | p = begin_line(dot); |
| 3510 | if (p[-1] == '\n') { |
| 3511 | dot_prev(); |
| 3512 | case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..." |
| 3513 | dot_end(); |
| 3514 | dot = char_insert(dot, '\n'); |
| 3515 | } else { |
| 3516 | dot_begin(); // 0 |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3517 | dot = char_insert(dot, '\n'); // i\n ESC |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3518 | dot_prev(); // - |
| 3519 | } |
| 3520 | goto dc_i; |
| 3521 | break; |
| 3522 | case 'R': // R- continuous Replace char |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3523 | dc5: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3524 | cmd_mode = 2; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3525 | break; |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3526 | case KEYCODE_DELETE: |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3527 | c = 'x'; |
| 3528 | // fall through |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3529 | case 'X': // X- delete char before dot |
| 3530 | case 'x': // x- delete the current char |
| 3531 | case 's': // s- substitute the current char |
| 3532 | if (cmdcnt-- > 1) { |
| 3533 | do_cmd(c); |
| 3534 | } // repeat cnt |
| 3535 | dir = 0; |
| 3536 | if (c == 'X') |
| 3537 | dir = -1; |
| 3538 | if (dot[dir] != '\n') { |
| 3539 | if (c == 'X') |
| 3540 | dot--; // delete prev char |
| 3541 | dot = yank_delete(dot, dot, 0, YANKDEL); // delete char |
| 3542 | } |
| 3543 | if (c == 's') |
| 3544 | goto dc_i; // start insrting |
| 3545 | end_cmd_q(); // stop adding to q |
| 3546 | break; |
| 3547 | case 'Z': // Z- if modified, {write}; exit |
| 3548 | // ZZ means to save file (if necessary), then exit |
| 3549 | c1 = get_one_char(); |
| 3550 | if (c1 != 'Z') { |
| 3551 | indicate_error(c); |
| 3552 | break; |
| 3553 | } |
Paul Fox | f0305b7 | 2006-03-28 14:18:21 +0000 | [diff] [blame] | 3554 | if (file_modified) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3555 | if (ENABLE_FEATURE_VI_READONLY && readonly_mode) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3556 | status_line_bold("\"%s\" File is read only", current_filename); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 3557 | break; |
Paul Fox | f0305b7 | 2006-03-28 14:18:21 +0000 | [diff] [blame] | 3558 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3559 | cnt = file_write(current_filename, text, end - 1); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3560 | if (cnt < 0) { |
| 3561 | if (cnt == -1) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3562 | status_line_bold("Write error: %s", strerror(errno)); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3563 | } else if (cnt == (end - 1 - text + 1)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3564 | editing = 0; |
| 3565 | } |
| 3566 | } else { |
| 3567 | editing = 0; |
| 3568 | } |
| 3569 | break; |
| 3570 | case '^': // ^- move to first non-blank on line |
| 3571 | dot_begin(); |
| 3572 | dot_skip_over_ws(); |
| 3573 | break; |
| 3574 | case 'b': // b- back a word |
| 3575 | case 'e': // e- end of word |
| 3576 | if (cmdcnt-- > 1) { |
| 3577 | do_cmd(c); |
| 3578 | } // repeat cnt |
| 3579 | dir = FORWARD; |
| 3580 | if (c == 'b') |
| 3581 | dir = BACK; |
| 3582 | if ((dot + dir) < text || (dot + dir) > end - 1) |
| 3583 | break; |
| 3584 | dot += dir; |
| 3585 | if (isspace(*dot)) { |
| 3586 | dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS); |
| 3587 | } |
| 3588 | if (isalnum(*dot) || *dot == '_') { |
| 3589 | dot = skip_thing(dot, 1, dir, S_END_ALNUM); |
| 3590 | } else if (ispunct(*dot)) { |
| 3591 | dot = skip_thing(dot, 1, dir, S_END_PUNCT); |
| 3592 | } |
| 3593 | break; |
| 3594 | case 'c': // c- change something |
| 3595 | case 'd': // d- delete something |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3596 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3597 | case 'y': // y- yank something |
| 3598 | case 'Y': // Y- Yank a line |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3599 | #endif |
Denis Vlasenko | d44c153 | 2008-10-14 12:59:42 +0000 | [diff] [blame] | 3600 | { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3601 | int yf, ml, whole = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3602 | yf = YANKDEL; // assume either "c" or "d" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3603 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3604 | if (c == 'y' || c == 'Y') |
| 3605 | yf = YANKONLY; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3606 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3607 | c1 = 'y'; |
| 3608 | if (c != 'Y') |
| 3609 | c1 = get_one_char(); // get the type of thing to delete |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3610 | // determine range, and whether it spans lines |
| 3611 | ml = find_range(&p, &q, c1); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3612 | if (c1 == 27) { // ESC- user changed mind and wants out |
| 3613 | c = c1 = 27; // Escape- do nothing |
| 3614 | } else if (strchr("wW", c1)) { |
| 3615 | if (c == 'c') { |
| 3616 | // don't include trailing WS as part of word |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3617 | while (isblank(*q)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3618 | if (q <= text || q[-1] == '\n') |
| 3619 | break; |
| 3620 | q--; |
| 3621 | } |
| 3622 | } |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3623 | dot = yank_delete(p, q, ml, yf); // delete word |
| 3624 | } else if (strchr("^0bBeEft%$ lh\b\177", c1)) { |
| 3625 | // partial line copy text into a register and delete |
| 3626 | dot = yank_delete(p, q, ml, yf); // delete word |
| 3627 | } else if (strchr("cdykjHL+-{}\r\n", c1)) { |
| 3628 | // whole line copy text into a register and delete |
| 3629 | dot = yank_delete(p, q, ml, yf); // delete lines |
| 3630 | whole = 1; |
| 3631 | } else { |
| 3632 | // could not recognize object |
| 3633 | c = c1 = 27; // error- |
| 3634 | ml = 0; |
| 3635 | indicate_error(c); |
| 3636 | } |
| 3637 | if (ml && whole) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3638 | if (c == 'c') { |
| 3639 | dot = char_insert(dot, '\n'); |
| 3640 | // on the last line of file don't move to prev line |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3641 | if (whole && dot != (end-1)) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3642 | dot_prev(); |
| 3643 | } |
| 3644 | } else if (c == 'd') { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3645 | dot_begin(); |
| 3646 | dot_skip_over_ws(); |
| 3647 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3648 | } |
| 3649 | if (c1 != 27) { |
| 3650 | // if CHANGING, not deleting, start inserting after the delete |
| 3651 | if (c == 'c') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3652 | strcpy(buf, "Change"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3653 | goto dc_i; // start inserting |
| 3654 | } |
| 3655 | if (c == 'd') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3656 | strcpy(buf, "Delete"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3657 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3658 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3659 | if (c == 'y' || c == 'Y') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3660 | strcpy(buf, "Yank"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3661 | } |
| 3662 | p = reg[YDreg]; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3663 | q = p + strlen(p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3664 | for (cnt = 0; p <= q; p++) { |
| 3665 | if (*p == '\n') |
| 3666 | cnt++; |
| 3667 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3668 | status_line("%s %d lines (%d chars) using [%c]", |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3669 | buf, cnt, strlen(reg[YDreg]), what_reg()); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3670 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3671 | end_cmd_q(); // stop adding to q |
| 3672 | } |
| 3673 | break; |
Denis Vlasenko | d44c153 | 2008-10-14 12:59:42 +0000 | [diff] [blame] | 3674 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3675 | case 'k': // k- goto prev line, same col |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3676 | case KEYCODE_UP: // cursor key Up |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3677 | if (cmdcnt-- > 1) { |
| 3678 | do_cmd(c); |
| 3679 | } // repeat cnt |
| 3680 | dot_prev(); |
| 3681 | dot = move_to_col(dot, ccol + offset); // try stay in same col |
| 3682 | break; |
| 3683 | case 'r': // r- replace the current char with user input |
| 3684 | c1 = get_one_char(); // get the replacement char |
| 3685 | if (*dot != '\n') { |
| 3686 | *dot = c1; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3687 | file_modified++; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3688 | } |
| 3689 | end_cmd_q(); // stop adding to q |
| 3690 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3691 | case 't': // t- move to char prior to next x |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 3692 | last_forward_char = get_one_char(); |
| 3693 | do_cmd(';'); |
| 3694 | if (*dot == last_forward_char) |
| 3695 | dot_left(); |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3696 | last_forward_char = 0; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3697 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3698 | case 'w': // w- forward a word |
| 3699 | if (cmdcnt-- > 1) { |
| 3700 | do_cmd(c); |
| 3701 | } // repeat cnt |
| 3702 | if (isalnum(*dot) || *dot == '_') { // we are on ALNUM |
| 3703 | dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM); |
| 3704 | } else if (ispunct(*dot)) { // we are on PUNCT |
| 3705 | dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT); |
| 3706 | } |
| 3707 | if (dot < end - 1) |
| 3708 | dot++; // move over word |
| 3709 | if (isspace(*dot)) { |
| 3710 | dot = skip_thing(dot, 2, FORWARD, S_OVER_WS); |
| 3711 | } |
| 3712 | break; |
| 3713 | case 'z': // z- |
| 3714 | c1 = get_one_char(); // get the replacement char |
| 3715 | cnt = 0; |
| 3716 | if (c1 == '.') |
| 3717 | cnt = (rows - 2) / 2; // put dot at center |
| 3718 | if (c1 == '-') |
| 3719 | cnt = rows - 2; // put dot at bottom |
| 3720 | screenbegin = begin_line(dot); // start dot at top |
| 3721 | dot_scroll(cnt, -1); |
| 3722 | break; |
| 3723 | case '|': // |- move to column "cmdcnt" |
| 3724 | dot = move_to_col(dot, cmdcnt - 1); // try to move to column |
| 3725 | break; |
| 3726 | case '~': // ~- flip the case of letters a-z -> A-Z |
| 3727 | if (cmdcnt-- > 1) { |
| 3728 | do_cmd(c); |
| 3729 | } // repeat cnt |
| 3730 | if (islower(*dot)) { |
| 3731 | *dot = toupper(*dot); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3732 | file_modified++; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3733 | } else if (isupper(*dot)) { |
| 3734 | *dot = tolower(*dot); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3735 | file_modified++; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3736 | } |
| 3737 | dot_right(); |
| 3738 | end_cmd_q(); // stop adding to q |
| 3739 | break; |
| 3740 | //----- The Cursor and Function Keys ----------------------------- |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3741 | case KEYCODE_HOME: // Cursor Key Home |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3742 | dot_begin(); |
| 3743 | break; |
| 3744 | // The Fn keys could point to do_macro which could translate them |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3745 | #if 0 |
| 3746 | case KEYCODE_FUN1: // Function Key F1 |
| 3747 | case KEYCODE_FUN2: // Function Key F2 |
| 3748 | case KEYCODE_FUN3: // Function Key F3 |
| 3749 | case KEYCODE_FUN4: // Function Key F4 |
| 3750 | case KEYCODE_FUN5: // Function Key F5 |
| 3751 | case KEYCODE_FUN6: // Function Key F6 |
| 3752 | case KEYCODE_FUN7: // Function Key F7 |
| 3753 | case KEYCODE_FUN8: // Function Key F8 |
| 3754 | case KEYCODE_FUN9: // Function Key F9 |
| 3755 | case KEYCODE_FUN10: // Function Key F10 |
| 3756 | case KEYCODE_FUN11: // Function Key F11 |
| 3757 | case KEYCODE_FUN12: // Function Key F12 |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3758 | break; |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3759 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3760 | } |
| 3761 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3762 | dc1: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3763 | // if text[] just became empty, add back an empty line |
| 3764 | if (end == text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3765 | char_insert(text, '\n'); // start empty buf with dummy line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3766 | dot = text; |
| 3767 | } |
| 3768 | // it is OK for dot to exactly equal to end, otherwise check dot validity |
| 3769 | if (dot != end) { |
| 3770 | dot = bound_dot(dot); // make sure "dot" is valid |
| 3771 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3772 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3773 | check_context(c); // update the current context |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3774 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3775 | |
| 3776 | if (!isdigit(c)) |
| 3777 | cmdcnt = 0; // cmd was not a number, reset cmdcnt |
| 3778 | cnt = dot - begin_line(dot); |
| 3779 | // Try to stay off of the Newline |
| 3780 | if (*dot == '\n' && cnt > 0 && cmd_mode == 0) |
| 3781 | dot--; |
| 3782 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3783 | |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 3784 | /* NB! the CRASHME code is unmaintained, and doesn't currently build */ |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3785 | #if ENABLE_FEATURE_VI_CRASHME |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3786 | static int totalcmds = 0; |
| 3787 | static int Mp = 85; // Movement command Probability |
| 3788 | static int Np = 90; // Non-movement command Probability |
| 3789 | static int Dp = 96; // Delete command Probability |
| 3790 | static int Ip = 97; // Insert command Probability |
| 3791 | static int Yp = 98; // Yank command Probability |
| 3792 | static int Pp = 99; // Put command Probability |
| 3793 | static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3794 | static const char chars[20] = "\t012345 abcdABCD-=.$"; |
| 3795 | static const char *const words[20] = { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3796 | "this", "is", "a", "test", |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3797 | "broadcast", "the", "emergency", "of", |
| 3798 | "system", "quick", "brown", "fox", |
| 3799 | "jumped", "over", "lazy", "dogs", |
| 3800 | "back", "January", "Febuary", "March" |
| 3801 | }; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3802 | static const char *const lines[20] = { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3803 | "You should have received a copy of the GNU General Public License\n", |
| 3804 | "char c, cm, *cmd, *cmd1;\n", |
| 3805 | "generate a command by percentages\n", |
| 3806 | "Numbers may be typed as a prefix to some commands.\n", |
| 3807 | "Quit, discarding changes!\n", |
| 3808 | "Forced write, if permission originally not valid.\n", |
| 3809 | "In general, any ex or ed command (such as substitute or delete).\n", |
| 3810 | "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n", |
| 3811 | "Please get w/ me and I will go over it with you.\n", |
| 3812 | "The following is a list of scheduled, committed changes.\n", |
| 3813 | "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n", |
| 3814 | "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n", |
| 3815 | "Any question about transactions please contact Sterling Huxley.\n", |
| 3816 | "I will try to get back to you by Friday, December 31.\n", |
| 3817 | "This Change will be implemented on Friday.\n", |
| 3818 | "Let me know if you have problems accessing this;\n", |
| 3819 | "Sterling Huxley recently added you to the access list.\n", |
| 3820 | "Would you like to go to lunch?\n", |
| 3821 | "The last command will be automatically run.\n", |
| 3822 | "This is too much english for a computer geek.\n", |
| 3823 | }; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3824 | static char *multilines[20] = { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3825 | "You should have received a copy of the GNU General Public License\n", |
| 3826 | "char c, cm, *cmd, *cmd1;\n", |
| 3827 | "generate a command by percentages\n", |
| 3828 | "Numbers may be typed as a prefix to some commands.\n", |
| 3829 | "Quit, discarding changes!\n", |
| 3830 | "Forced write, if permission originally not valid.\n", |
| 3831 | "In general, any ex or ed command (such as substitute or delete).\n", |
| 3832 | "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n", |
| 3833 | "Please get w/ me and I will go over it with you.\n", |
| 3834 | "The following is a list of scheduled, committed changes.\n", |
| 3835 | "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n", |
| 3836 | "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n", |
| 3837 | "Any question about transactions please contact Sterling Huxley.\n", |
| 3838 | "I will try to get back to you by Friday, December 31.\n", |
| 3839 | "This Change will be implemented on Friday.\n", |
| 3840 | "Let me know if you have problems accessing this;\n", |
| 3841 | "Sterling Huxley recently added you to the access list.\n", |
| 3842 | "Would you like to go to lunch?\n", |
| 3843 | "The last command will be automatically run.\n", |
| 3844 | "This is too much english for a computer geek.\n", |
| 3845 | }; |
| 3846 | |
| 3847 | // create a random command to execute |
| 3848 | static void crash_dummy() |
| 3849 | { |
| 3850 | static int sleeptime; // how long to pause between commands |
| 3851 | char c, cm, *cmd, *cmd1; |
| 3852 | int i, cnt, thing, rbi, startrbi, percent; |
| 3853 | |
| 3854 | // "dot" movement commands |
| 3855 | cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL"; |
| 3856 | |
| 3857 | // is there already a command running? |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3858 | if (chars_to_parse > 0) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3859 | goto cd1; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3860 | cd0: |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3861 | startrbi = rbi = 0; |
| 3862 | sleeptime = 0; // how long to pause between commands |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3863 | memset(readbuffer, '\0', sizeof(readbuffer)); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3864 | // generate a command by percentages |
| 3865 | percent = (int) lrand48() % 100; // get a number from 0-99 |
| 3866 | if (percent < Mp) { // Movement commands |
| 3867 | // available commands |
| 3868 | cmd = cmd1; |
| 3869 | M++; |
| 3870 | } else if (percent < Np) { // non-movement commands |
| 3871 | cmd = "mz<>\'\""; // available commands |
| 3872 | N++; |
| 3873 | } else if (percent < Dp) { // Delete commands |
| 3874 | cmd = "dx"; // available commands |
| 3875 | D++; |
| 3876 | } else if (percent < Ip) { // Inset commands |
| 3877 | cmd = "iIaAsrJ"; // available commands |
| 3878 | I++; |
| 3879 | } else if (percent < Yp) { // Yank commands |
| 3880 | cmd = "yY"; // available commands |
| 3881 | Y++; |
| 3882 | } else if (percent < Pp) { // Put commands |
| 3883 | cmd = "pP"; // available commands |
| 3884 | P++; |
| 3885 | } else { |
| 3886 | // We do not know how to handle this command, try again |
| 3887 | U++; |
| 3888 | goto cd0; |
| 3889 | } |
| 3890 | // randomly pick one of the available cmds from "cmd[]" |
| 3891 | i = (int) lrand48() % strlen(cmd); |
| 3892 | cm = cmd[i]; |
| 3893 | if (strchr(":\024", cm)) |
| 3894 | goto cd0; // dont allow colon or ctrl-T commands |
| 3895 | readbuffer[rbi++] = cm; // put cmd into input buffer |
| 3896 | |
| 3897 | // now we have the command- |
| 3898 | // there are 1, 2, and multi char commands |
| 3899 | // find out which and generate the rest of command as necessary |
| 3900 | if (strchr("dmryz<>\'\"", cm)) { // 2-char commands |
| 3901 | cmd1 = " \n\r0$^-+wWeEbBhjklHL"; |
| 3902 | if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[] |
| 3903 | cmd1 = "abcdefghijklmnopqrstuvwxyz"; |
| 3904 | } |
| 3905 | thing = (int) lrand48() % strlen(cmd1); // pick a movement command |
| 3906 | c = cmd1[thing]; |
| 3907 | readbuffer[rbi++] = c; // add movement to input buffer |
| 3908 | } |
| 3909 | if (strchr("iIaAsc", cm)) { // multi-char commands |
| 3910 | if (cm == 'c') { |
| 3911 | // change some thing |
| 3912 | thing = (int) lrand48() % strlen(cmd1); // pick a movement command |
| 3913 | c = cmd1[thing]; |
| 3914 | readbuffer[rbi++] = c; // add movement to input buffer |
| 3915 | } |
| 3916 | thing = (int) lrand48() % 4; // what thing to insert |
| 3917 | cnt = (int) lrand48() % 10; // how many to insert |
| 3918 | for (i = 0; i < cnt; i++) { |
| 3919 | if (thing == 0) { // insert chars |
| 3920 | readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))]; |
| 3921 | } else if (thing == 1) { // insert words |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3922 | strcat(readbuffer, words[(int) lrand48() % 20]); |
| 3923 | strcat(readbuffer, " "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3924 | sleeptime = 0; // how fast to type |
| 3925 | } else if (thing == 2) { // insert lines |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3926 | strcat(readbuffer, lines[(int) lrand48() % 20]); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3927 | sleeptime = 0; // how fast to type |
| 3928 | } else { // insert multi-lines |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3929 | strcat(readbuffer, multilines[(int) lrand48() % 20]); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3930 | sleeptime = 0; // how fast to type |
| 3931 | } |
| 3932 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3933 | strcat(readbuffer, "\033"); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3934 | } |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3935 | chars_to_parse = strlen(readbuffer); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3936 | cd1: |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3937 | totalcmds++; |
| 3938 | if (sleeptime > 0) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3939 | mysleep(sleeptime); // sleep 1/100 sec |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3940 | } |
| 3941 | |
| 3942 | // test to see if there are any errors |
| 3943 | static void crash_test() |
| 3944 | { |
| 3945 | static time_t oldtim; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3946 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3947 | time_t tim; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3948 | char d[2], msg[80]; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3949 | |
| 3950 | msg[0] = '\0'; |
| 3951 | if (end < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3952 | strcat(msg, "end<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3953 | } |
| 3954 | if (end > textend) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3955 | strcat(msg, "end>textend "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3956 | } |
| 3957 | if (dot < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3958 | strcat(msg, "dot<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3959 | } |
| 3960 | if (dot > end) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3961 | strcat(msg, "dot>end "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3962 | } |
| 3963 | if (screenbegin < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3964 | strcat(msg, "screenbegin<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3965 | } |
| 3966 | if (screenbegin > end - 1) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3967 | strcat(msg, "screenbegin>end-1 "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3968 | } |
| 3969 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3970 | if (msg[0]) { |
Glenn L McGrath | 7127b58 | 2002-12-03 21:48:15 +0000 | [diff] [blame] | 3971 | printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s", |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3972 | totalcmds, last_input_char, msg, SOs, SOn); |
| 3973 | fflush(stdout); |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 3974 | while (safe_read(STDIN_FILENO, d, 1) > 0) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3975 | if (d[0] == '\n' || d[0] == '\r') |
| 3976 | break; |
| 3977 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3978 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3979 | tim = time(NULL); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3980 | if (tim >= (oldtim + 3)) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3981 | sprintf(status_buffer, |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3982 | "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d", |
| 3983 | totalcmds, M, N, I, D, Y, P, U, end - text + 1); |
| 3984 | oldtim = tim; |
| 3985 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3986 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3987 | #endif |