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