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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 7 | */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 8 | /* |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 9 | * Things To Do: |
| 10 | * EXINIT |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 11 | * $HOME/.exrc and ./.exrc |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 12 | * add magic to search /foo.*bar |
| 13 | * add :help command |
| 14 | * :map macros |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 15 | * if mark[] values were line numbers rather than pointers |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 16 | * it would be easier to change the mark when add/delete lines |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 17 | * More intelligence in refresh() |
| 18 | * ":r !cmd" and "!cmd" to filter text through an external command |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 19 | * An "ex" line oriented mode- maybe using "cmdedit" |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 20 | */ |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 21 | //config:config VI |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 22 | //config: bool "vi (22 kb)" |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 23 | //config: default y |
| 24 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 25 | //config: 'vi' is a text editor. More specifically, it is the One True |
| 26 | //config: text editor <grin>. It does, however, have a rather steep |
| 27 | //config: learning curve. If you are not already comfortable with 'vi' |
| 28 | //config: you may wish to use something else. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 29 | //config: |
| 30 | //config:config FEATURE_VI_MAX_LEN |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 31 | //config: int "Maximum screen width" |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 32 | //config: range 256 16384 |
| 33 | //config: default 4096 |
| 34 | //config: depends on VI |
| 35 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 36 | //config: Contrary to what you may think, this is not eating much. |
| 37 | //config: Make it smaller than 4k only if you are very limited on memory. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 38 | //config: |
| 39 | //config:config FEATURE_VI_8BIT |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 40 | //config: bool "Allow to display 8-bit chars (otherwise shows dots)" |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 41 | //config: default n |
| 42 | //config: depends on VI |
| 43 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 44 | //config: If your terminal can display characters with high bit set, |
| 45 | //config: you may want to enable this. Note: vi is not Unicode-capable. |
| 46 | //config: If your terminal combines several 8-bit bytes into one character |
| 47 | //config: (as in Unicode mode), this will not work properly. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 48 | //config: |
| 49 | //config:config FEATURE_VI_COLON |
| 50 | //config: bool "Enable \":\" colon commands (no \"ex\" mode)" |
| 51 | //config: default y |
| 52 | //config: depends on VI |
| 53 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 54 | //config: Enable a limited set of colon commands. This does not |
| 55 | //config: provide an "ex" mode. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 56 | //config: |
| 57 | //config:config FEATURE_VI_YANKMARK |
| 58 | //config: bool "Enable yank/put commands and mark cmds" |
| 59 | //config: default y |
| 60 | //config: depends on VI |
| 61 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 62 | //config: This enables you to use yank and put, as well as mark. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 63 | //config: |
| 64 | //config:config FEATURE_VI_SEARCH |
| 65 | //config: bool "Enable search and replace cmds" |
| 66 | //config: default y |
| 67 | //config: depends on VI |
| 68 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 69 | //config: Select this if you wish to be able to do search and replace. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 70 | //config: |
| 71 | //config:config FEATURE_VI_REGEX_SEARCH |
| 72 | //config: bool "Enable regex in search and replace" |
| 73 | //config: default n # Uses GNU regex, which may be unavailable. FIXME |
| 74 | //config: depends on FEATURE_VI_SEARCH |
| 75 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 76 | //config: Use extended regex search. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 77 | //config: |
| 78 | //config:config FEATURE_VI_USE_SIGNALS |
| 79 | //config: bool "Catch signals" |
| 80 | //config: default y |
| 81 | //config: depends on VI |
| 82 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 83 | //config: Selecting this option will make vi signal aware. This will support |
| 84 | //config: SIGWINCH to deal with Window Changes, catch ^Z and ^C and alarms. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 85 | //config: |
| 86 | //config:config FEATURE_VI_DOT_CMD |
| 87 | //config: bool "Remember previous cmd and \".\" cmd" |
| 88 | //config: default y |
| 89 | //config: depends on VI |
| 90 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 91 | //config: Make vi remember the last command and be able to repeat it. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 92 | //config: |
| 93 | //config:config FEATURE_VI_READONLY |
| 94 | //config: bool "Enable -R option and \"view\" mode" |
| 95 | //config: default y |
| 96 | //config: depends on VI |
| 97 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 98 | //config: Enable the read-only command line option, which allows the user to |
| 99 | //config: open a file in read-only mode. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 100 | //config: |
| 101 | //config:config FEATURE_VI_SETOPTS |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 102 | //config: bool "Enable settable options, ai ic showmatch" |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 103 | //config: default y |
| 104 | //config: depends on VI |
| 105 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 106 | //config: Enable the editor to set some (ai, ic, showmatch) options. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 107 | //config: |
| 108 | //config:config FEATURE_VI_SET |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 109 | //config: bool "Support :set" |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 110 | //config: default y |
| 111 | //config: depends on VI |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 112 | //config: |
| 113 | //config:config FEATURE_VI_WIN_RESIZE |
| 114 | //config: bool "Handle window resize" |
| 115 | //config: default y |
| 116 | //config: depends on VI |
| 117 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 118 | //config: Behave nicely with terminals that get resized. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 119 | //config: |
| 120 | //config:config FEATURE_VI_ASK_TERMINAL |
| 121 | //config: bool "Use 'tell me cursor position' ESC sequence to measure window" |
| 122 | //config: default y |
| 123 | //config: depends on VI |
| 124 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 125 | //config: If terminal size can't be retrieved and $LINES/$COLUMNS are not set, |
| 126 | //config: this option makes vi perform a last-ditch effort to find it: |
| 127 | //config: position cursor to 999,999 and ask terminal to report real |
| 128 | //config: cursor position using "ESC [ 6 n" escape sequence, then read stdin. |
| 129 | //config: This is not clean but helps a lot on serial lines and such. |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 130 | //config: |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 131 | //config:config FEATURE_VI_UNDO |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 132 | //config: bool "Support undo command \"u\"" |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 133 | //config: default y |
| 134 | //config: depends on VI |
| 135 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 136 | //config: Support the 'u' command to undo insertion, deletion, and replacement |
| 137 | //config: of text. |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 138 | //config: |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 139 | //config:config FEATURE_VI_UNDO_QUEUE |
| 140 | //config: bool "Enable undo operation queuing" |
| 141 | //config: default y |
| 142 | //config: depends on FEATURE_VI_UNDO |
| 143 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 144 | //config: The vi undo functions can use an intermediate queue to greatly lower |
| 145 | //config: malloc() calls and overhead. When the maximum size of this queue is |
| 146 | //config: reached, the contents of the queue are committed to the undo stack. |
| 147 | //config: This increases the size of the undo code and allows some undo |
| 148 | //config: operations (especially un-typing/backspacing) to be far more useful. |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 149 | //config: |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 150 | //config:config FEATURE_VI_UNDO_QUEUE_MAX |
| 151 | //config: int "Maximum undo character queue size" |
| 152 | //config: default 256 |
| 153 | //config: range 32 65536 |
| 154 | //config: depends on FEATURE_VI_UNDO_QUEUE |
| 155 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 156 | //config: This option sets the number of bytes used at runtime for the queue. |
| 157 | //config: Smaller values will create more undo objects and reduce the amount |
| 158 | //config: of typed or backspaced characters that are grouped into one undo |
| 159 | //config: operation; larger values increase the potential size of each undo |
| 160 | //config: and will generally malloc() larger objects and less frequently. |
| 161 | //config: Unless you want more (or less) frequent "undo points" while typing, |
| 162 | //config: you should probably leave this unchanged. |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 163 | |
| 164 | //applet:IF_VI(APPLET(vi, BB_DIR_BIN, BB_SUID_DROP)) |
| 165 | |
| 166 | //kbuild:lib-$(CONFIG_VI) += vi.o |
| 167 | |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 168 | //usage:#define vi_trivial_usage |
| 169 | //usage: "[OPTIONS] [FILE]..." |
| 170 | //usage:#define vi_full_usage "\n\n" |
| 171 | //usage: "Edit FILE\n" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 172 | //usage: IF_FEATURE_VI_COLON( |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 173 | //usage: "\n -c CMD Initial command to run ($EXINIT also available)" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 174 | //usage: ) |
| 175 | //usage: IF_FEATURE_VI_READONLY( |
| 176 | //usage: "\n -R Read-only" |
| 177 | //usage: ) |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 178 | //usage: "\n -H List available features" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 179 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 180 | #include "libbb.h" |
Denys Vlasenko | 066f399 | 2011-07-03 03:19:43 +0200 | [diff] [blame] | 181 | /* Should be after libbb.h: on some systems regex.h needs sys/types.h: */ |
| 182 | #if ENABLE_FEATURE_VI_REGEX_SEARCH |
| 183 | # include <regex.h> |
| 184 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 185 | |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 186 | /* the CRASHME code is unmaintained, and doesn't currently build */ |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 187 | #define ENABLE_FEATURE_VI_CRASHME 0 |
| 188 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 189 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 190 | #if ENABLE_LOCALE_SUPPORT |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 191 | |
| 192 | #if ENABLE_FEATURE_VI_8BIT |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 193 | //FIXME: this does not work properly for Unicode anyway |
| 194 | # define Isprint(c) (isprint)(c) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 195 | #else |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 196 | # define Isprint(c) isprint_asciionly(c) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 197 | #endif |
| 198 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 199 | #else |
| 200 | |
| 201 | /* 0x9b is Meta-ESC */ |
| 202 | #if ENABLE_FEATURE_VI_8BIT |
Denys Vlasenko | 066f399 | 2011-07-03 03:19:43 +0200 | [diff] [blame] | 203 | # define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b) |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 204 | #else |
Denys Vlasenko | 066f399 | 2011-07-03 03:19:43 +0200 | [diff] [blame] | 205 | # define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f) |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 206 | #endif |
| 207 | |
| 208 | #endif |
| 209 | |
| 210 | |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 211 | enum { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 212 | MAX_TABSTOP = 32, // sanity limit |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 213 | // User input len. Need not be extra big. |
| 214 | // Lines in file being edited *can* be bigger than this. |
| 215 | MAX_INPUT_LEN = 128, |
| 216 | // Sanity limits. We have only one buffer of this size. |
| 217 | MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN, |
| 218 | MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN, |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 219 | }; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 220 | |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 221 | /* VT102 ESC sequences. |
| 222 | * See "Xterm Control Sequences" |
| 223 | * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html |
| 224 | */ |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 225 | #define ESC "\033" |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 226 | /* Inverse/Normal text */ |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 227 | #define ESC_BOLD_TEXT ESC"[7m" |
| 228 | #define ESC_NORM_TEXT ESC"[m" |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 229 | /* Bell */ |
| 230 | #define ESC_BELL "\007" |
| 231 | /* Clear-to-end-of-line */ |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 232 | #define ESC_CLEAR2EOL ESC"[K" |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 233 | /* Clear-to-end-of-screen. |
| 234 | * (We use default param here. |
| 235 | * Full sequence is "ESC [ <num> J", |
| 236 | * <num> is 0/1/2 = "erase below/above/all".) |
| 237 | */ |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 238 | #define ESC_CLEAR2EOS ESC"[J" |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 239 | /* Cursor to given coordinate (1,1: top left) */ |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 240 | #define ESC_SET_CURSOR_POS ESC"[%u;%uH" |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 241 | //UNUSED |
| 242 | ///* Cursor up and down */ |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 243 | //#define ESC_CURSOR_UP ESC"[A" |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 244 | //#define ESC_CURSOR_DOWN "\n" |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 245 | |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 246 | #if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK |
| 247 | // cmds modifying text[] |
| 248 | // vda: removed "aAiIs" as they switch us into insert mode |
| 249 | // and remembering input for replay after them makes no sense |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 250 | static const char modifying_cmds[] ALIGN1 = "cCdDJoOpPrRxX<>~"; |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 251 | #endif |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 252 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 253 | enum { |
| 254 | YANKONLY = FALSE, |
| 255 | YANKDEL = TRUE, |
| 256 | FORWARD = 1, // code depends on "1" for array index |
| 257 | BACK = -1, // code depends on "-1" for array index |
| 258 | LIMITED = 0, // how much of text[] in char_search |
| 259 | FULL = 1, // how much of text[] in char_search |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 260 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 261 | S_BEFORE_WS = 1, // used in skip_thing() for moving "dot" |
| 262 | S_TO_WS = 2, // used in skip_thing() for moving "dot" |
| 263 | S_OVER_WS = 3, // used in skip_thing() for moving "dot" |
| 264 | S_END_PUNCT = 4, // used in skip_thing() for moving "dot" |
Denis Vlasenko | 8e858e2 | 2007-03-07 09:35:43 +0000 | [diff] [blame] | 265 | S_END_ALNUM = 5, // used in skip_thing() for moving "dot" |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 266 | }; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 267 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 268 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 269 | /* vi.c expects chars to be unsigned. */ |
| 270 | /* busybox build system provides that, but it's better */ |
| 271 | /* to audit and fix the source */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 272 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 273 | struct globals { |
| 274 | /* many references - keep near the top of globals */ |
| 275 | char *text, *end; // pointers to the user data in memory |
| 276 | char *dot; // where all the action takes place |
| 277 | int text_size; // size of the allocated buffer |
| 278 | |
| 279 | /* the rest */ |
| 280 | smallint vi_setops; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 281 | #define VI_AUTOINDENT 1 |
| 282 | #define VI_SHOWMATCH 2 |
| 283 | #define VI_IGNORECASE 4 |
| 284 | #define VI_ERR_METHOD 8 |
| 285 | #define autoindent (vi_setops & VI_AUTOINDENT) |
| 286 | #define showmatch (vi_setops & VI_SHOWMATCH ) |
| 287 | #define ignorecase (vi_setops & VI_IGNORECASE) |
| 288 | /* indicate error with beep or flash */ |
| 289 | #define err_method (vi_setops & VI_ERR_METHOD) |
| 290 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 291 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 292 | smallint readonly_mode; |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 293 | #define SET_READONLY_FILE(flags) ((flags) |= 0x01) |
| 294 | #define SET_READONLY_MODE(flags) ((flags) |= 0x02) |
| 295 | #define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe) |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 296 | #else |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 297 | #define SET_READONLY_FILE(flags) ((void)0) |
| 298 | #define SET_READONLY_MODE(flags) ((void)0) |
| 299 | #define UNSET_READONLY_FILE(flags) ((void)0) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 300 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 301 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 302 | smallint editing; // >0 while we are editing a file |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 303 | // [code audit says "can be 0, 1 or 2 only"] |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 304 | smallint cmd_mode; // 0=command 1=insert 2=replace |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 305 | int modified_count; // buffer contents changed if !0 |
| 306 | int last_modified_count; // = -1; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 307 | int save_argc; // how many file names on cmd line |
| 308 | int cmdcnt; // repetition count |
| 309 | unsigned rows, columns; // the terminal screen is this size |
Denys Vlasenko | c175c46 | 2010-04-18 22:09:30 -0700 | [diff] [blame] | 310 | #if ENABLE_FEATURE_VI_ASK_TERMINAL |
| 311 | int get_rowcol_error; |
| 312 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 313 | int crow, ccol; // cursor is on Crow x Ccol |
| 314 | int offset; // chars scrolled off the screen to the left |
| 315 | int have_status_msg; // is default edit status needed? |
| 316 | // [don't make smallint!] |
| 317 | int last_status_cksum; // hash of current status line |
| 318 | char *current_filename; |
| 319 | char *screenbegin; // index into text[], of top line on the screen |
| 320 | char *screen; // pointer to the virtual screen buffer |
| 321 | int screensize; // and its size |
| 322 | int tabstop; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 323 | int last_forward_char; // last char searched for with 'f' (int because of Unicode) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 324 | char erase_char; // the users erase character |
| 325 | char last_input_char; // last char read from user |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 326 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 327 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 328 | smallint adding2q; // are we currently adding user input to q |
| 329 | int lmc_len; // length of last_modifying_cmd |
| 330 | char *ioq, *ioq_start; // pointer to string for get_one_char to "read" |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 331 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 332 | #if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 333 | int my_pid; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 334 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 335 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 336 | char *last_search_pattern; // last pattern from a '/' or '?' search |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 337 | #endif |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 338 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 339 | /* former statics */ |
| 340 | #if ENABLE_FEATURE_VI_YANKMARK |
| 341 | char *edit_file__cur_line; |
| 342 | #endif |
| 343 | int refresh__old_offset; |
| 344 | int format_edit_status__tot; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 345 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 346 | /* a few references only */ |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 347 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 348 | int YDreg, Ureg; // default delete register and orig line for "U" |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 349 | 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] | 350 | char *mark[28]; // user marks points somewhere in text[]- a-z and previous context '' |
| 351 | char *context_start, *context_end; |
| 352 | #endif |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 353 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 354 | sigjmp_buf restart; // catch_sig() |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 355 | #endif |
Denys Vlasenko | 01ccdd1 | 2017-01-11 16:17:59 +0100 | [diff] [blame] | 356 | struct termios term_orig; // remember what the cooked mode was |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 357 | #if ENABLE_FEATURE_VI_COLON |
| 358 | char *initial_cmds[3]; // currently 2 entries, NULL terminated |
| 359 | #endif |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 360 | // Should be just enough to hold a key sequence, |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 361 | // but CRASHME mode uses it as generated command buffer too |
| 362 | #if ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 1dfeeeb | 2008-10-18 19:04:37 +0000 | [diff] [blame] | 363 | char readbuffer[128]; |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 364 | #else |
Denis Vlasenko | 5f6aaf3 | 2008-10-25 23:27:29 +0000 | [diff] [blame] | 365 | char readbuffer[KEYCODE_BUFFER_SIZE]; |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 366 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 367 | #define STATUS_BUFFER_LEN 200 |
| 368 | char status_buffer[STATUS_BUFFER_LEN]; // messages to the user |
| 369 | #if ENABLE_FEATURE_VI_DOT_CMD |
| 370 | char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "." |
| 371 | #endif |
| 372 | char get_input_line__buf[MAX_INPUT_LEN]; /* former static */ |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 373 | |
| 374 | char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2]; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 375 | #if ENABLE_FEATURE_VI_UNDO |
| 376 | // undo_push() operations |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 377 | #define UNDO_INS 0 |
| 378 | #define UNDO_DEL 1 |
| 379 | #define UNDO_INS_CHAIN 2 |
| 380 | #define UNDO_DEL_CHAIN 3 |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 381 | // UNDO_*_QUEUED must be equal to UNDO_xxx ORed with UNDO_QUEUED_FLAG |
| 382 | #define UNDO_QUEUED_FLAG 4 |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 383 | #define UNDO_INS_QUEUED 4 |
| 384 | #define UNDO_DEL_QUEUED 5 |
| 385 | #define UNDO_USE_SPOS 32 |
| 386 | #define UNDO_EMPTY 64 |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 387 | // Pass-through flags for functions that can be undone |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 388 | #define NO_UNDO 0 |
| 389 | #define ALLOW_UNDO 1 |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 390 | #define ALLOW_UNDO_CHAIN 2 |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 391 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 392 | #define ALLOW_UNDO_QUEUED 3 |
| 393 | char undo_queue_state; |
| 394 | int undo_q; |
| 395 | char *undo_queue_spos; // Start position of queued operation |
| 396 | char undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX]; |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 397 | # else |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 398 | // If undo queuing disabled, don't invoke the missing queue logic |
| 399 | #define ALLOW_UNDO_QUEUED 1 |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 400 | # endif |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 401 | |
| 402 | struct undo_object { |
| 403 | struct undo_object *prev; // Linking back avoids list traversal (LIFO) |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 404 | int start; // Offset where the data should be restored/deleted |
| 405 | int length; // total data size |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 406 | uint8_t u_type; // 0=deleted, 1=inserted, 2=swapped |
| 407 | char undo_text[1]; // text that was deleted (if deletion) |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 408 | } *undo_stack_tail; |
| 409 | #endif /* ENABLE_FEATURE_VI_UNDO */ |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 410 | }; |
| 411 | #define G (*ptr_to_globals) |
| 412 | #define text (G.text ) |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 413 | #define text_size (G.text_size ) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 414 | #define end (G.end ) |
| 415 | #define dot (G.dot ) |
| 416 | #define reg (G.reg ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 417 | |
| 418 | #define vi_setops (G.vi_setops ) |
| 419 | #define editing (G.editing ) |
| 420 | #define cmd_mode (G.cmd_mode ) |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 421 | #define modified_count (G.modified_count ) |
| 422 | #define last_modified_count (G.last_modified_count) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 423 | #define save_argc (G.save_argc ) |
| 424 | #define cmdcnt (G.cmdcnt ) |
| 425 | #define rows (G.rows ) |
| 426 | #define columns (G.columns ) |
| 427 | #define crow (G.crow ) |
| 428 | #define ccol (G.ccol ) |
| 429 | #define offset (G.offset ) |
| 430 | #define status_buffer (G.status_buffer ) |
| 431 | #define have_status_msg (G.have_status_msg ) |
| 432 | #define last_status_cksum (G.last_status_cksum ) |
| 433 | #define current_filename (G.current_filename ) |
| 434 | #define screen (G.screen ) |
| 435 | #define screensize (G.screensize ) |
| 436 | #define screenbegin (G.screenbegin ) |
| 437 | #define tabstop (G.tabstop ) |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 438 | #define last_forward_char (G.last_forward_char ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 439 | #define erase_char (G.erase_char ) |
| 440 | #define last_input_char (G.last_input_char ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 441 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 442 | #define readonly_mode (G.readonly_mode ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 443 | #else |
| 444 | #define readonly_mode 0 |
| 445 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 446 | #define adding2q (G.adding2q ) |
| 447 | #define lmc_len (G.lmc_len ) |
| 448 | #define ioq (G.ioq ) |
| 449 | #define ioq_start (G.ioq_start ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 450 | #define my_pid (G.my_pid ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 451 | #define last_search_pattern (G.last_search_pattern) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 452 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 453 | #define edit_file__cur_line (G.edit_file__cur_line) |
| 454 | #define refresh__old_offset (G.refresh__old_offset) |
| 455 | #define format_edit_status__tot (G.format_edit_status__tot) |
| 456 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 457 | #define YDreg (G.YDreg ) |
| 458 | #define Ureg (G.Ureg ) |
| 459 | #define mark (G.mark ) |
| 460 | #define context_start (G.context_start ) |
| 461 | #define context_end (G.context_end ) |
| 462 | #define restart (G.restart ) |
| 463 | #define term_orig (G.term_orig ) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 464 | #define initial_cmds (G.initial_cmds ) |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 465 | #define readbuffer (G.readbuffer ) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 466 | #define scr_out_buf (G.scr_out_buf ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 467 | #define last_modifying_cmd (G.last_modifying_cmd ) |
| 468 | #define get_input_line__buf (G.get_input_line__buf) |
| 469 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 470 | #if ENABLE_FEATURE_VI_UNDO |
| 471 | #define undo_stack_tail (G.undo_stack_tail ) |
| 472 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 473 | #define undo_queue_state (G.undo_queue_state) |
| 474 | #define undo_q (G.undo_q ) |
| 475 | #define undo_queue (G.undo_queue ) |
| 476 | #define undo_queue_spos (G.undo_queue_spos ) |
| 477 | # endif |
| 478 | #endif |
| 479 | |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 480 | #define INIT_G() do { \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 481 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 482 | last_modified_count = -1; \ |
Denis Vlasenko | 31d58e5 | 2008-10-29 13:16:28 +0000 | [diff] [blame] | 483 | /* "" but has space for 2 chars: */ \ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 484 | IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \ |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 485 | } while (0) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 486 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 487 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 488 | static void edit_file(char *); // edit one file |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 489 | static void do_cmd(int); // execute a command |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 490 | static int next_tabstop(int); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 491 | static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot |
| 492 | static char *begin_line(char *); // return pointer to cur line B-o-l |
| 493 | static char *end_line(char *); // return pointer to cur line E-o-l |
| 494 | static char *prev_line(char *); // return pointer to prev line B-o-l |
| 495 | static char *next_line(char *); // return pointer to next line B-o-l |
| 496 | static char *end_screen(void); // get pointer to last char on screen |
| 497 | static int count_lines(char *, char *); // count line from start to stop |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 498 | static char *find_line(int); // find beginning of line #li |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 499 | static char *move_to_col(char *, int); // move "p" to column l |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 500 | static void dot_left(void); // move dot left- dont leave line |
| 501 | static void dot_right(void); // move dot right- dont leave line |
| 502 | static void dot_begin(void); // move dot to B-o-l |
| 503 | static void dot_end(void); // move dot to E-o-l |
| 504 | static void dot_next(void); // move dot to next line B-o-l |
| 505 | static void dot_prev(void); // move dot to prev line B-o-l |
| 506 | static void dot_scroll(int, int); // move the screen up or down |
| 507 | static void dot_skip_over_ws(void); // move dot pat WS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 508 | static char *bound_dot(char *); // make sure text[0] <= P < "end" |
| 509 | static char *new_screen(int, int); // malloc virtual screen memory |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 510 | #if !ENABLE_FEATURE_VI_UNDO |
| 511 | #define char_insert(a,b,c) char_insert(a,b) |
| 512 | #endif |
| 513 | static char *char_insert(char *, char, int); // insert the char c at 'p' |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 514 | // might reallocate text[]! use p += stupid_insert(p, ...), |
| 515 | // and be careful to not use pointers into potentially freed text[]! |
| 516 | static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p' |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 517 | static int find_range(char **, char **, char); // return pointers for an object |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 518 | static int st_test(char *, int, int, char *); // helper for skip_thing() |
| 519 | static char *skip_thing(char *, int, int, int); // skip some object |
| 520 | static char *find_pair(char *, char); // find matching pair () [] {} |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 521 | #if !ENABLE_FEATURE_VI_UNDO |
| 522 | #define text_hole_delete(a,b,c) text_hole_delete(a,b) |
| 523 | #endif |
| 524 | static char *text_hole_delete(char *, char *, int); // at "p", delete a 'size' byte hole |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 525 | // might reallocate text[]! use p += text_hole_make(p, ...), |
| 526 | // and be careful to not use pointers into potentially freed text[]! |
| 527 | static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 528 | #if !ENABLE_FEATURE_VI_UNDO |
| 529 | #define yank_delete(a,b,c,d,e) yank_delete(a,b,c,d) |
| 530 | #endif |
| 531 | static char *yank_delete(char *, char *, int, int, int); // yank text[] into register then delete |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 532 | static void show_help(void); // display some help info |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 533 | static void rawmode(void); // set "raw" mode on tty |
| 534 | static void cookmode(void); // return to "cooked" mode on tty |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 535 | // sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready) |
| 536 | static int mysleep(int); |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 537 | static int readit(void); // read (maybe cursor) key from stdin |
| 538 | static int get_one_char(void); // read 1 char from stdin |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 539 | // file_insert might reallocate text[]! |
| 540 | static int file_insert(const char *, char *, int); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 541 | static int file_write(char *, char *, char *); |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 542 | static void place_cursor(int, int); |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 543 | static void screen_erase(void); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 544 | static void clear_to_eol(void); |
| 545 | static void clear_to_eos(void); |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 546 | static void go_bottom_and_clear_to_eol(void); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 547 | static void standout_start(void); // send "start reverse video" sequence |
| 548 | static void standout_end(void); // send "end reverse video" sequence |
| 549 | static void flash(int); // flash the terminal screen |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 550 | 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] | 551 | static void status_line(const char *, ...); // print to status buf |
| 552 | static void status_line_bold(const char *, ...); |
Denys Vlasenko | 9e7c002 | 2013-03-15 02:17:29 +0100 | [diff] [blame] | 553 | static void status_line_bold_errno(const char *fn); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 554 | static void not_implemented(const char *); // display "Not implemented" message |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 555 | static int format_edit_status(void); // format file status on status line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 556 | static void redraw(int); // force a full screen refresh |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 557 | static char* format_line(char* /*, int*/); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 558 | static void refresh(int); // update the terminal from screen[] |
| 559 | |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 560 | static void indicate_error(void); // use flash or beep to indicate error |
Paul Fox | 90372ed | 2005-10-09 14:26:26 +0000 | [diff] [blame] | 561 | static void Hit_Return(void); |
| 562 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 563 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 564 | static char *char_search(char *, const char *, int, int); // search for pattern starting at p |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 565 | #endif |
| 566 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 567 | static char *get_one_address(char *, int *); // get colon addr, if present |
| 568 | static char *get_address(char *, int *, int *); // get two colon addrs, if present |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 569 | #endif |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 570 | static void colon(char *); // execute the "colon" mode cmds |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 571 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 572 | static void winch_sig(int); // catch window size changes |
| 573 | static void suspend_sig(int); // catch ctrl-Z |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 574 | static void catch_sig(int); // catch ctrl-C and alarm time-outs |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 575 | #endif |
| 576 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 577 | static void start_new_cmd_q(char); // new queue for command |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 578 | static void end_cmd_q(void); // stop saving input chars |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 579 | #else |
| 580 | #define end_cmd_q() ((void)0) |
| 581 | #endif |
| 582 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 583 | static void showmatching(char *); // show the matching pair () [] {} |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 584 | #endif |
| 585 | #if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 586 | // might reallocate text[]! use p += string_insert(p, ...), |
| 587 | // and be careful to not use pointers into potentially freed text[]! |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 588 | # if !ENABLE_FEATURE_VI_UNDO |
| 589 | #define string_insert(a,b,c) string_insert(a,b) |
| 590 | # endif |
| 591 | static uintptr_t string_insert(char *, const char *, int); // insert the string at 'p' |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 592 | #endif |
| 593 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 594 | static char *text_yank(char *, char *, int); // save copy of "p" into a register |
| 595 | static char what_reg(void); // what is letter of current YDreg |
| 596 | static void check_context(char); // remember context for '' command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 597 | #endif |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 598 | #if ENABLE_FEATURE_VI_UNDO |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 599 | static void flush_undo_data(void); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 600 | static void undo_push(char *, unsigned int, unsigned char); // Push an operation on the undo stack |
| 601 | static void undo_pop(void); // Undo the last operation |
| 602 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 603 | static void undo_queue_commit(void); // Flush any queued objects to the undo stack |
| 604 | # else |
| 605 | # define undo_queue_commit() ((void)0) |
| 606 | # endif |
| 607 | #else |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 608 | #define flush_undo_data() ((void)0) |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 609 | #define undo_queue_commit() ((void)0) |
| 610 | #endif |
| 611 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 612 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 613 | static void crash_dummy(); |
| 614 | static void crash_test(); |
| 615 | static int crashme = 0; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 616 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 617 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 618 | static void write1(const char *out) |
| 619 | { |
| 620 | fputs(out, stdout); |
| 621 | } |
| 622 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 623 | int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 624 | int vi_main(int argc, char **argv) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 625 | { |
Eric Andersen | d402edf | 2001-04-04 19:29:48 +0000 | [diff] [blame] | 626 | int c; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 627 | |
| 628 | INIT_G(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 629 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 630 | #if ENABLE_FEATURE_VI_UNDO |
| 631 | /* undo_stack_tail = NULL; - already is */ |
| 632 | #if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 633 | undo_queue_state = UNDO_EMPTY; |
| 634 | /* undo_q = 0; - already is */ |
| 635 | #endif |
| 636 | #endif |
| 637 | |
Denis Vlasenko | cd5c786 | 2007-05-17 16:37:22 +0000 | [diff] [blame] | 638 | #if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 639 | my_pid = getpid(); |
| 640 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 641 | #if ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 642 | srand((long) my_pid); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 643 | #endif |
Denis Vlasenko | 2414a96 | 2007-07-18 22:03:40 +0000 | [diff] [blame] | 644 | #ifdef NO_SUCH_APPLET_YET |
| 645 | /* If we aren't "vi", we are "view" */ |
| 646 | if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 647 | SET_READONLY_MODE(readonly_mode); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 648 | } |
Denis Vlasenko | 2414a96 | 2007-07-18 22:03:40 +0000 | [diff] [blame] | 649 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 650 | |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 651 | // autoindent is not default in vim 7.3 |
| 652 | vi_setops = /*VI_AUTOINDENT |*/ VI_SHOWMATCH | VI_IGNORECASE; |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 653 | // 1- process $HOME/.exrc file (not inplemented yet) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 654 | // 2- process EXINIT variable from environment |
| 655 | // 3- process command line args |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 656 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 657 | { |
| 658 | char *p = getenv("EXINIT"); |
| 659 | if (p && *p) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 660 | initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 661 | } |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 662 | #endif |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 663 | while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 664 | switch (c) { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 665 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 666 | case 'C': |
| 667 | crashme = 1; |
| 668 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 669 | #endif |
| 670 | #if ENABLE_FEATURE_VI_READONLY |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 671 | case 'R': // Read-only flag |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 672 | SET_READONLY_MODE(readonly_mode); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 673 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 674 | #endif |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 675 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 676 | case 'c': // cmd line vi command |
| 677 | if (*optarg) |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 678 | initial_cmds[initial_cmds[0] != NULL] = xstrndup(optarg, MAX_INPUT_LEN); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 679 | break; |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 680 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 681 | case 'H': |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 682 | show_help(); |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 683 | /* fall through */ |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 684 | default: |
Denis Vlasenko | c693840 | 2008-03-24 02:18:03 +0000 | [diff] [blame] | 685 | bb_show_usage(); |
Eric Andersen | dd8500b | 2001-07-02 18:06:14 +0000 | [diff] [blame] | 686 | return 1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 687 | } |
| 688 | } |
| 689 | |
| 690 | // The argv array can be used by the ":next" and ":rewind" commands |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 691 | argv += optind; |
| 692 | argc -= optind; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 693 | |
| 694 | //----- This is the main file handling loop -------------- |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 695 | save_argc = argc; |
| 696 | optind = 0; |
Denys Vlasenko | d3dff87 | 2012-06-11 13:53:26 +0200 | [diff] [blame] | 697 | // "Save cursor, use alternate screen buffer, clear screen" |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 698 | write1(ESC"[?1049h"); |
Denys Vlasenko | 04cecd5 | 2010-04-16 22:13:55 -0700 | [diff] [blame] | 699 | while (1) { |
| 700 | edit_file(argv[optind]); /* param might be NULL */ |
| 701 | if (++optind >= argc) |
| 702 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 703 | } |
Denys Vlasenko | d3dff87 | 2012-06-11 13:53:26 +0200 | [diff] [blame] | 704 | // "Use normal screen buffer, restore cursor" |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 705 | write1(ESC"[?1049l"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 706 | //----------------------------------------------------------- |
| 707 | |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 708 | return 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 711 | /* read text from file or create an empty buf */ |
| 712 | /* will also update current_filename */ |
| 713 | static int init_text_buffer(char *fn) |
| 714 | { |
| 715 | int rc; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 716 | |
| 717 | /* allocate/reallocate text buffer */ |
| 718 | free(text); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 719 | text_size = 10240; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 720 | screenbegin = dot = end = text = xzalloc(text_size); |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 721 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 722 | if (fn != current_filename) { |
| 723 | free(current_filename); |
| 724 | current_filename = xstrdup(fn); |
| 725 | } |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 726 | rc = file_insert(fn, text, 1); |
| 727 | if (rc < 0) { |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 728 | // file doesnt exist. Start empty buf with dummy line |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 729 | char_insert(text, '\n', NO_UNDO); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 730 | } |
Yousong Zhou | 8f3bf4f | 2017-03-24 21:13:10 +0100 | [diff] [blame] | 731 | |
| 732 | flush_undo_data(); |
| 733 | modified_count = 0; |
| 734 | last_modified_count = -1; |
| 735 | #if ENABLE_FEATURE_VI_YANKMARK |
| 736 | /* init the marks */ |
| 737 | memset(mark, 0, sizeof(mark)); |
| 738 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 739 | return rc; |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 740 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 741 | |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 742 | #if ENABLE_FEATURE_VI_WIN_RESIZE |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 743 | static int query_screen_dimensions(void) |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 744 | { |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 745 | int err = get_terminal_width_height(STDIN_FILENO, &columns, &rows); |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 746 | if (rows > MAX_SCR_ROWS) |
| 747 | rows = MAX_SCR_ROWS; |
| 748 | if (columns > MAX_SCR_COLS) |
| 749 | columns = MAX_SCR_COLS; |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 750 | return err; |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 751 | } |
| 752 | #else |
Denys Vlasenko | 39043ad | 2018-06-27 14:46:08 +0200 | [diff] [blame] | 753 | static ALWAYS_INLINE int query_screen_dimensions(void) |
| 754 | { |
| 755 | return 0; |
| 756 | } |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 757 | #endif |
| 758 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 759 | static void edit_file(char *fn) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 760 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 761 | #if ENABLE_FEATURE_VI_YANKMARK |
| 762 | #define cur_line edit_file__cur_line |
| 763 | #endif |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 764 | int c; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 765 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 766 | int sig; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 767 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 768 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 769 | editing = 1; // 0 = exit, 1 = one file, 2 = multiple files |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 770 | rawmode(); |
| 771 | rows = 24; |
| 772 | columns = 80; |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 773 | IF_FEATURE_VI_ASK_TERMINAL(G.get_rowcol_error =) query_screen_dimensions(); |
Denys Vlasenko | c175c46 | 2010-04-18 22:09:30 -0700 | [diff] [blame] | 774 | #if ENABLE_FEATURE_VI_ASK_TERMINAL |
| 775 | if (G.get_rowcol_error /* TODO? && no input on stdin */) { |
| 776 | uint64_t k; |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 777 | write1(ESC"[999;999H" ESC"[6n"); |
Denys Vlasenko | c175c46 | 2010-04-18 22:09:30 -0700 | [diff] [blame] | 778 | fflush_all(); |
| 779 | k = read_key(STDIN_FILENO, readbuffer, /*timeout_ms:*/ 100); |
| 780 | if ((int32_t)k == KEYCODE_CURSOR_POS) { |
| 781 | uint32_t rc = (k >> 32); |
| 782 | columns = (rc & 0x7fff); |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 783 | if (columns > MAX_SCR_COLS) |
| 784 | columns = MAX_SCR_COLS; |
Denys Vlasenko | c175c46 | 2010-04-18 22:09:30 -0700 | [diff] [blame] | 785 | rows = ((rc >> 16) & 0x7fff); |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 786 | if (rows > MAX_SCR_ROWS) |
| 787 | rows = MAX_SCR_ROWS; |
Denys Vlasenko | c175c46 | 2010-04-18 22:09:30 -0700 | [diff] [blame] | 788 | } |
Denys Vlasenko | c175c46 | 2010-04-18 22:09:30 -0700 | [diff] [blame] | 789 | } |
| 790 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 791 | new_screen(rows, columns); // get memory for virtual screen |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 792 | init_text_buffer(fn); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 793 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 794 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 795 | YDreg = 26; // default Yank/Delete reg |
| 796 | Ureg = 27; // hold orig line for "U" cmd |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 797 | mark[26] = mark[27] = text; // init "previous context" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 798 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 799 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 800 | last_forward_char = last_input_char = '\0'; |
| 801 | crow = 0; |
| 802 | ccol = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 803 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 804 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 805 | signal(SIGINT, catch_sig); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 806 | signal(SIGWINCH, winch_sig); |
| 807 | signal(SIGTSTP, suspend_sig); |
Paul Fox | 2724fa9 | 2008-03-17 15:28:07 +0000 | [diff] [blame] | 808 | sig = sigsetjmp(restart, 1); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 809 | if (sig != 0) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 810 | screenbegin = dot = text; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 811 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 812 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 813 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 814 | cmd_mode = 0; // 0=command 1=insert 2='R'eplace |
| 815 | cmdcnt = 0; |
| 816 | tabstop = 8; |
| 817 | offset = 0; // no horizontal offset |
| 818 | c = '\0'; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 819 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 820 | free(ioq_start); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 821 | ioq = ioq_start = NULL; |
| 822 | lmc_len = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 823 | adding2q = 0; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 824 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 825 | |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 826 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 827 | { |
| 828 | char *p, *q; |
| 829 | int n = 0; |
| 830 | |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 831 | while ((p = initial_cmds[n]) != NULL) { |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 832 | do { |
| 833 | q = p; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 834 | p = strchr(q, '\n'); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 835 | if (p) |
Denis Vlasenko | 51742f4 | 2007-04-12 00:32:05 +0000 | [diff] [blame] | 836 | while (*p == '\n') |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 837 | *p++ = '\0'; |
| 838 | if (*q) |
| 839 | colon(q); |
| 840 | } while (p); |
| 841 | free(initial_cmds[n]); |
| 842 | initial_cmds[n] = NULL; |
| 843 | n++; |
| 844 | } |
| 845 | } |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 846 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 847 | redraw(FALSE); // dont force every col re-draw |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 848 | //------This is the main Vi cmd handling loop ----------------------- |
| 849 | while (editing > 0) { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 850 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 851 | if (crashme > 0) { |
| 852 | if ((end - text) > 1) { |
| 853 | crash_dummy(); // generate a random command |
| 854 | } else { |
| 855 | crashme = 0; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 856 | string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n", NO_UNDO); // insert the string |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 857 | dot = text; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 858 | refresh(FALSE); |
| 859 | } |
| 860 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 861 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 862 | last_input_char = c = get_one_char(); // get a cmd from user |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 863 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 864 | // save a copy of the current line- for the 'U" command |
| 865 | if (begin_line(dot) != cur_line) { |
| 866 | cur_line = begin_line(dot); |
| 867 | text_yank(begin_line(dot), end_line(dot), Ureg); |
| 868 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 869 | #endif |
| 870 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 871 | // These are commands that change text[]. |
| 872 | // Remember the input for the "." command |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 873 | if (!adding2q && ioq_start == NULL |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 874 | && cmd_mode == 0 // command mode |
| 875 | && c > '\0' // exclude NUL and non-ASCII chars |
| 876 | && c < 0x7f // (Unicode and such) |
| 877 | && strchr(modifying_cmds, c) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 878 | ) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 879 | start_new_cmd_q(c); |
| 880 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 881 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 882 | do_cmd(c); // execute the user command |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 883 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 884 | // poll to see if there is input already waiting. if we are |
| 885 | // not able to display output fast enough to keep up, skip |
| 886 | // the display update until we catch up with input. |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 887 | if (!readbuffer[0] && mysleep(0) == 0) { |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 888 | // no input pending - so update output |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 889 | refresh(FALSE); |
| 890 | show_status_line(); |
| 891 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 892 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 893 | if (crashme > 0) |
| 894 | crash_test(); // test editor variables |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 895 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 896 | } |
| 897 | //------------------------------------------------------------------- |
| 898 | |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 899 | go_bottom_and_clear_to_eol(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 900 | cookmode(); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 901 | #undef cur_line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 902 | } |
| 903 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 904 | //----- The Colon commands ------------------------------------- |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 905 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 906 | 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] | 907 | { |
| 908 | int st; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 909 | char *q; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 910 | IF_FEATURE_VI_YANKMARK(char c;) |
| 911 | IF_FEATURE_VI_SEARCH(char *pat;) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 912 | |
| 913 | *addr = -1; // assume no addr |
| 914 | if (*p == '.') { // the current line |
| 915 | p++; |
| 916 | q = begin_line(dot); |
| 917 | *addr = count_lines(text, q); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 918 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 919 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 920 | else if (*p == '\'') { // is this a mark addr |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 921 | p++; |
| 922 | c = tolower(*p); |
| 923 | p++; |
| 924 | if (c >= 'a' && c <= 'z') { |
| 925 | // we have a mark |
| 926 | c = c - 'a'; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 927 | q = mark[(unsigned char) c]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 928 | if (q != NULL) { // is mark valid |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 929 | *addr = count_lines(text, q); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 930 | } |
| 931 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 932 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 933 | #endif |
| 934 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 935 | else if (*p == '/') { // a search pattern |
| 936 | q = strchrnul(++p, '/'); |
| 937 | pat = xstrndup(p, q - p); // save copy of pattern |
| 938 | p = q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 939 | if (*p == '/') |
| 940 | p++; |
| 941 | q = char_search(dot, pat, FORWARD, FULL); |
| 942 | if (q != NULL) { |
| 943 | *addr = count_lines(text, q); |
| 944 | } |
| 945 | free(pat); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 946 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 947 | #endif |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 948 | else if (*p == '$') { // the last line in file |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 949 | p++; |
| 950 | q = begin_line(end - 1); |
| 951 | *addr = count_lines(text, q); |
| 952 | } else if (isdigit(*p)) { // specific line number |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 953 | sscanf(p, "%d%n", addr, &st); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 954 | p += st; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 955 | } else { |
Denys Vlasenko | b22bbff | 2009-07-04 16:50:43 +0200 | [diff] [blame] | 956 | // unrecognized address - assume -1 |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 957 | *addr = -1; |
| 958 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 959 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 960 | } |
| 961 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 962 | 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] | 963 | { |
| 964 | //----- get the address' i.e., 1,3 'a,'b ----- |
| 965 | // get FIRST addr, if present |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 966 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 967 | p++; // skip over leading spaces |
| 968 | if (*p == '%') { // alias for 1,$ |
| 969 | p++; |
| 970 | *b = 1; |
| 971 | *e = count_lines(text, end-1); |
| 972 | goto ga0; |
| 973 | } |
| 974 | p = get_one_address(p, b); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 975 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 976 | p++; |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 977 | if (*p == ',') { // is there a address separator |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 978 | p++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 979 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 980 | p++; |
| 981 | // get SECOND addr, if present |
| 982 | p = get_one_address(p, e); |
| 983 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 984 | ga0: |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 985 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 986 | p++; // skip over trailing spaces |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 987 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 988 | } |
| 989 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 990 | #if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 991 | 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] | 992 | const char *short_opname, int opt) |
| 993 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 994 | const char *a = args + flg_no; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 995 | int l = strlen(opname) - 1; /* opname have + ' ' */ |
| 996 | |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 997 | // maybe strncmp? we had tons of erroneous strncasecmp's... |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 998 | if (strncasecmp(a, opname, l) == 0 |
| 999 | || strncasecmp(a, short_opname, 2) == 0 |
| 1000 | ) { |
| 1001 | if (flg_no) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1002 | vi_setops &= ~opt; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1003 | else |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1004 | vi_setops |= opt; |
| 1005 | } |
| 1006 | } |
| 1007 | #endif |
| 1008 | |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1009 | #endif /* FEATURE_VI_COLON */ |
| 1010 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1011 | // buf must be no longer than MAX_INPUT_LEN! |
| 1012 | static void colon(char *buf) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1013 | { |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1014 | #if !ENABLE_FEATURE_VI_COLON |
| 1015 | /* Simple ":cmd" handler with minimal set of commands */ |
| 1016 | char *p = buf; |
| 1017 | int cnt; |
| 1018 | |
| 1019 | if (*p == ':') |
| 1020 | p++; |
| 1021 | cnt = strlen(p); |
| 1022 | if (cnt == 0) |
| 1023 | return; |
| 1024 | if (strncmp(p, "quit", cnt) == 0 |
| 1025 | || strncmp(p, "q!", cnt) == 0 |
| 1026 | ) { |
| 1027 | if (modified_count && p[1] != '!') { |
| 1028 | status_line_bold("No write since last change (:%s! overrides)", p); |
| 1029 | } else { |
| 1030 | editing = 0; |
| 1031 | } |
| 1032 | return; |
| 1033 | } |
| 1034 | if (strncmp(p, "write", cnt) == 0 |
| 1035 | || strncmp(p, "wq", cnt) == 0 |
| 1036 | || strncmp(p, "wn", cnt) == 0 |
| 1037 | || (p[0] == 'x' && !p[1]) |
| 1038 | ) { |
Denys Vlasenko | e88608e | 2017-03-13 20:50:42 +0100 | [diff] [blame] | 1039 | if (modified_count != 0 || p[0] != 'x') { |
| 1040 | cnt = file_write(current_filename, text, end - 1); |
| 1041 | } |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1042 | if (cnt < 0) { |
| 1043 | if (cnt == -1) |
Denys Vlasenko | 6f97b30 | 2017-09-29 18:17:25 +0200 | [diff] [blame] | 1044 | status_line_bold("Write error: "STRERROR_FMT STRERROR_ERRNO); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1045 | } else { |
| 1046 | modified_count = 0; |
| 1047 | last_modified_count = -1; |
| 1048 | status_line("'%s' %dL, %dC", |
| 1049 | current_filename, |
| 1050 | count_lines(text, end - 1), cnt |
| 1051 | ); |
Denys Vlasenko | e88608e | 2017-03-13 20:50:42 +0100 | [diff] [blame] | 1052 | if (p[0] == 'x' |
| 1053 | || p[1] == 'q' || p[1] == 'n' |
| 1054 | || p[1] == 'Q' || p[1] == 'N' |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1055 | ) { |
| 1056 | editing = 0; |
| 1057 | } |
| 1058 | } |
| 1059 | return; |
| 1060 | } |
| 1061 | if (strncmp(p, "file", cnt) == 0) { |
| 1062 | last_status_cksum = 0; // force status update |
| 1063 | return; |
| 1064 | } |
| 1065 | if (sscanf(p, "%d", &cnt) > 0) { |
| 1066 | dot = find_line(cnt); |
| 1067 | dot_skip_over_ws(); |
| 1068 | return; |
| 1069 | } |
| 1070 | not_implemented(p); |
| 1071 | #else |
| 1072 | |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1073 | char c, *buf1, *q, *r; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1074 | char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN]; |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1075 | int i, l, li, b, e; |
| 1076 | int useforce; |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1077 | # if ENABLE_FEATURE_VI_SEARCH || ENABLE_FEATURE_ALLOW_EXEC |
| 1078 | char *orig_buf; |
| 1079 | # endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1080 | |
| 1081 | // :3154 // if (-e line 3154) goto it else stay put |
| 1082 | // :4,33w! foo // write a portion of buffer to file "foo" |
| 1083 | // :w // write all of buffer to current file |
| 1084 | // :q // quit |
| 1085 | // :q! // quit- dont care about modified file |
| 1086 | // :'a,'z!sort -u // filter block through sort |
| 1087 | // :'f // goto mark "f" |
| 1088 | // :'fl // list literal the mark "f" line |
| 1089 | // :.r bar // read file "bar" into buffer before dot |
| 1090 | // :/123/,/abc/d // delete lines from "123" line to "abc" line |
| 1091 | // :/xyz/ // goto the "xyz" line |
| 1092 | // :s/find/replace/ // substitute pattern "find" with "replace" |
| 1093 | // :!<cmd> // run <cmd> then return |
| 1094 | // |
Eric Andersen | 165e8cb | 2004-07-20 06:44:46 +0000 | [diff] [blame] | 1095 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1096 | if (!buf[0]) |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1097 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1098 | if (*buf == ':') |
| 1099 | buf++; // move past the ':' |
| 1100 | |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1101 | li = i = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1102 | b = e = -1; |
| 1103 | q = text; // assume 1,$ for the range |
| 1104 | r = end - 1; |
| 1105 | li = count_lines(text, end - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1106 | fn = current_filename; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1107 | |
| 1108 | // look for optional address(es) :. :1 :1,9 :'q,'a :% |
| 1109 | buf = get_address(buf, &b, &e); |
| 1110 | |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1111 | # if ENABLE_FEATURE_VI_SEARCH || ENABLE_FEATURE_ALLOW_EXEC |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1112 | // remember orig command line |
| 1113 | orig_buf = buf; |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1114 | # endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1115 | |
| 1116 | // get the COMMAND into cmd[] |
| 1117 | buf1 = cmd; |
| 1118 | while (*buf != '\0') { |
| 1119 | if (isspace(*buf)) |
| 1120 | break; |
| 1121 | *buf1++ = *buf++; |
| 1122 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1123 | *buf1 = '\0'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1124 | // get any ARGuments |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1125 | while (isblank(*buf)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1126 | buf++; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1127 | strcpy(args, buf); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1128 | useforce = FALSE; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1129 | buf1 = last_char_is(cmd, '!'); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1130 | if (buf1) { |
| 1131 | useforce = TRUE; |
| 1132 | *buf1 = '\0'; // get rid of ! |
| 1133 | } |
| 1134 | if (b >= 0) { |
| 1135 | // if there is only one addr, then the addr |
| 1136 | // is the line number of the single line the |
| 1137 | // user wants. So, reset the end |
| 1138 | // pointer to point at end of the "b" line |
| 1139 | q = find_line(b); // what line is #b |
| 1140 | r = end_line(q); |
| 1141 | li = 1; |
| 1142 | } |
| 1143 | if (e >= 0) { |
| 1144 | // we were given two addrs. change the |
| 1145 | // end pointer to the addr given by user. |
| 1146 | r = find_line(e); // what line is #e |
| 1147 | r = end_line(r); |
| 1148 | li = e - b + 1; |
| 1149 | } |
| 1150 | // ------------ now look for the command ------------ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1151 | i = strlen(cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1152 | if (i == 0) { // :123CR goto line #123 |
| 1153 | if (b >= 0) { |
| 1154 | dot = find_line(b); // what line is #b |
| 1155 | dot_skip_over_ws(); |
| 1156 | } |
Denis Vlasenko | 249fabf | 2006-12-19 00:29:22 +0000 | [diff] [blame] | 1157 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1158 | # if ENABLE_FEATURE_ALLOW_EXEC |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1159 | else if (cmd[0] == '!') { // run a cmd |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1160 | int retcode; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1161 | // :!ls run the <cmd> |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 1162 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1163 | cookmode(); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1164 | retcode = system(orig_buf + 1); // run the cmd |
| 1165 | if (retcode) |
| 1166 | printf("\nshell returned %i\n\n", retcode); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1167 | rawmode(); |
| 1168 | Hit_Return(); // let user see results |
Denis Vlasenko | 249fabf | 2006-12-19 00:29:22 +0000 | [diff] [blame] | 1169 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1170 | # endif |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1171 | else if (cmd[0] == '=' && !cmd[1]) { // where is the address |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1172 | if (b < 0) { // no addr given- use defaults |
| 1173 | b = e = count_lines(text, dot); |
| 1174 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1175 | status_line("%d", b); |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1176 | } else if (strncmp(cmd, "delete", i) == 0) { // delete lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1177 | if (b < 0) { // no addr given- use defaults |
| 1178 | q = begin_line(dot); // assume .,. for the range |
| 1179 | r = end_line(dot); |
| 1180 | } |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1181 | dot = yank_delete(q, r, 1, YANKDEL, ALLOW_UNDO); // save, then delete lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1182 | dot_skip_over_ws(); |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1183 | } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1184 | int size; |
| 1185 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1186 | // don't edit, if the current file has been modified |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 1187 | if (modified_count && !useforce) { |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1188 | status_line_bold("No write since last change (:%s! overrides)", cmd); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1189 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1190 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1191 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1192 | // the user supplied a file name |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 1193 | fn = args; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1194 | } else if (current_filename && current_filename[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1195 | // no user supplied name- use the current filename |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1196 | // fn = current_filename; was set by default |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1197 | } else { |
| 1198 | // no user file name, no current name- punt |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1199 | status_line_bold("No current filename"); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1200 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1203 | size = init_text_buffer(fn); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1204 | |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1205 | # if ENABLE_FEATURE_VI_YANKMARK |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1206 | if (Ureg >= 0 && Ureg < 28) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1207 | free(reg[Ureg]); // free orig line reg- for 'U' |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1208 | reg[Ureg] = NULL; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1209 | } |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1210 | if (YDreg >= 0 && YDreg < 28) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1211 | free(reg[YDreg]); // free default yank/delete register |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1212 | reg[YDreg] = NULL; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1213 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1214 | # endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1215 | // how many lines in text[]? |
| 1216 | li = count_lines(text, end - 1); |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 1217 | status_line("'%s'%s" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1218 | IF_FEATURE_VI_READONLY("%s") |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1219 | " %dL, %dC", |
| 1220 | current_filename, |
| 1221 | (size < 0 ? " [New file]" : ""), |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1222 | IF_FEATURE_VI_READONLY( |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1223 | ((readonly_mode) ? " [Readonly]" : ""), |
| 1224 | ) |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1225 | li, (int)(end - text) |
| 1226 | ); |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1227 | } else if (strncmp(cmd, "file", i) == 0) { // what File is this |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1228 | if (b != -1 || e != -1) { |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 1229 | status_line_bold("No address allowed on this command"); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1230 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1231 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1232 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1233 | // user wants a new filename |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1234 | free(current_filename); |
| 1235 | current_filename = xstrdup(args); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1236 | } else { |
| 1237 | // user wants file status info |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 1238 | last_status_cksum = 0; // force status update |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1239 | } |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1240 | } else if (strncmp(cmd, "features", i) == 0) { // what features are available |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1241 | // print out values of all features |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 1242 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1243 | cookmode(); |
| 1244 | show_help(); |
| 1245 | rawmode(); |
| 1246 | Hit_Return(); |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1247 | } else if (strncmp(cmd, "list", i) == 0) { // literal print line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1248 | if (b < 0) { // no addr given- use defaults |
| 1249 | q = begin_line(dot); // assume .,. for the range |
| 1250 | r = end_line(dot); |
| 1251 | } |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 1252 | go_bottom_and_clear_to_eol(); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1253 | puts("\r"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1254 | for (; q <= r; q++) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1255 | int c_is_no_print; |
| 1256 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1257 | c = *q; |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 1258 | c_is_no_print = (c & 0x80) && !Isprint(c); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1259 | if (c_is_no_print) { |
| 1260 | c = '.'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1261 | standout_start(); |
Denis Vlasenko | d3c042f | 2007-12-30 01:59:53 +0000 | [diff] [blame] | 1262 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1263 | if (c == '\n') { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1264 | write1("$\r"); |
| 1265 | } else if (c < ' ' || c == 127) { |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 1266 | bb_putchar('^'); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1267 | if (c == 127) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1268 | c = '?'; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1269 | else |
| 1270 | c += '@'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1271 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 1272 | bb_putchar(c); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1273 | if (c_is_no_print) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1274 | standout_end(); |
| 1275 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1276 | Hit_Return(); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1277 | } else if (strncmp(cmd, "quit", i) == 0 // quit |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1278 | || strncmp(cmd, "next", i) == 0 // edit next file |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1279 | || strncmp(cmd, "prev", i) == 0 // edit previous file |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1280 | ) { |
Denys Vlasenko | 04cecd5 | 2010-04-16 22:13:55 -0700 | [diff] [blame] | 1281 | int n; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1282 | if (useforce) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1283 | if (*cmd == 'q') { |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1284 | // force end of argv list |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1285 | optind = save_argc; |
| 1286 | } |
| 1287 | editing = 0; |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1288 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1289 | } |
| 1290 | // don't exit if the file been modified |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 1291 | if (modified_count) { |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1292 | status_line_bold("No write since last change (:%s! overrides)", cmd); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1293 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1294 | } |
| 1295 | // are there other file to edit |
Denys Vlasenko | 04cecd5 | 2010-04-16 22:13:55 -0700 | [diff] [blame] | 1296 | n = save_argc - optind - 1; |
| 1297 | if (*cmd == 'q' && n > 0) { |
| 1298 | status_line_bold("%d more file(s) to edit", n); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1299 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1300 | } |
Denys Vlasenko | 04cecd5 | 2010-04-16 22:13:55 -0700 | [diff] [blame] | 1301 | if (*cmd == 'n' && n <= 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1302 | status_line_bold("No more files to edit"); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1303 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1304 | } |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1305 | if (*cmd == 'p') { |
| 1306 | // are there previous files to edit |
| 1307 | if (optind < 1) { |
| 1308 | status_line_bold("No previous files to edit"); |
| 1309 | goto ret; |
| 1310 | } |
| 1311 | optind -= 2; |
| 1312 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1313 | editing = 0; |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1314 | } else if (strncmp(cmd, "read", i) == 0) { // read file into text[] |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1315 | int size; |
| 1316 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1317 | fn = args; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1318 | if (!fn[0]) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1319 | status_line_bold("No filename given"); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1320 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1321 | } |
| 1322 | if (b < 0) { // no addr given- use defaults |
| 1323 | q = begin_line(dot); // assume "dot" |
| 1324 | } |
| 1325 | // read after current line- unless user said ":0r foo" |
Ron Yorston | 70f4320 | 2014-11-30 20:39:53 +0000 | [diff] [blame] | 1326 | if (b != 0) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1327 | q = next_line(q); |
Ron Yorston | 70f4320 | 2014-11-30 20:39:53 +0000 | [diff] [blame] | 1328 | // read after last line |
| 1329 | if (q == end-1) |
| 1330 | ++q; |
| 1331 | } |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1332 | { // dance around potentially-reallocated text[] |
| 1333 | uintptr_t ofs = q - text; |
Ron Yorston | e5213ce | 2014-11-30 20:39:25 +0000 | [diff] [blame] | 1334 | size = file_insert(fn, q, 0); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1335 | q = text + ofs; |
| 1336 | } |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1337 | if (size < 0) |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1338 | goto ret; // nothing was inserted |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1339 | // how many lines in text[]? |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1340 | li = count_lines(q, q + size - 1); |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 1341 | status_line("'%s'" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1342 | IF_FEATURE_VI_READONLY("%s") |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1343 | " %dL, %dC", |
| 1344 | fn, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1345 | IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),) |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1346 | li, size |
| 1347 | ); |
| 1348 | if (size > 0) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1349 | // if the insert is before "dot" then we need to update |
| 1350 | if (q <= dot) |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1351 | dot += size; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1352 | } |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1353 | } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 1354 | if (modified_count && !useforce) { |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1355 | status_line_bold("No write since last change (:%s! overrides)", cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1356 | } else { |
| 1357 | // reset the filenames to edit |
Dennis Groenen | c0657e0 | 2012-01-31 14:12:38 +0100 | [diff] [blame] | 1358 | optind = -1; /* start from 0th file */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1359 | editing = 0; |
| 1360 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1361 | # if ENABLE_FEATURE_VI_SET |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1362 | } else if (strncmp(cmd, "set", i) == 0) { // set or clear features |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1363 | # if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1364 | char *argp; |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1365 | # endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1366 | i = 0; // offset into args |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 1367 | // only blank is regarded as args delimiter. What about tab '\t'? |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1368 | if (!args[0] || strcasecmp(args, "all") == 0) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1369 | // print out values of all options |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1370 | # if ENABLE_FEATURE_VI_SETOPTS |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1371 | status_line_bold( |
| 1372 | "%sautoindent " |
| 1373 | "%sflash " |
| 1374 | "%signorecase " |
| 1375 | "%sshowmatch " |
| 1376 | "tabstop=%u", |
| 1377 | autoindent ? "" : "no", |
| 1378 | err_method ? "" : "no", |
| 1379 | ignorecase ? "" : "no", |
| 1380 | showmatch ? "" : "no", |
| 1381 | tabstop |
| 1382 | ); |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1383 | # endif |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1384 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1385 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1386 | # if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1387 | argp = args; |
Denis Vlasenko | ba2fb71 | 2007-04-01 09:39:03 +0000 | [diff] [blame] | 1388 | while (*argp) { |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1389 | if (strncmp(argp, "no", 2) == 0) |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1390 | i = 2; // ":set noautoindent" |
| 1391 | setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1392 | setops(argp, "flash " , i, "fl", VI_ERR_METHOD); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1393 | setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1394 | setops(argp, "showmatch " , i, "sm", VI_SHOWMATCH ); |
| 1395 | if (strncmp(argp + i, "tabstop=", 8) == 0) { |
| 1396 | int t = 0; |
| 1397 | sscanf(argp + i+8, "%u", &t); |
| 1398 | if (t > 0 && t <= MAX_TABSTOP) |
| 1399 | tabstop = t; |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1400 | } |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1401 | argp = skip_non_whitespace(argp); |
| 1402 | argp = skip_whitespace(argp); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1403 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1404 | # endif /* FEATURE_VI_SETOPTS */ |
| 1405 | # endif /* FEATURE_VI_SET */ |
| 1406 | |
| 1407 | # if ENABLE_FEATURE_VI_SEARCH |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1408 | } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1409 | char *F, *R, *flags; |
| 1410 | size_t len_F, len_R; |
| 1411 | int gflag; // global replace flag |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1412 | # if ENABLE_FEATURE_VI_UNDO |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1413 | int dont_chain_first_item = ALLOW_UNDO; |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1414 | # endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1415 | |
| 1416 | // F points to the "find" pattern |
| 1417 | // R points to the "replace" pattern |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1418 | // replace the cmd line delimiters "/" with NULs |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1419 | c = orig_buf[1]; // what is the delimiter |
| 1420 | F = orig_buf + 2; // start of "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1421 | R = strchr(F, c); // middle delimiter |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1422 | if (!R) |
| 1423 | goto colon_s_fail; |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1424 | len_F = R - F; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1425 | *R++ = '\0'; // terminate "find" |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1426 | flags = strchr(R, c); |
| 1427 | if (!flags) |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1428 | goto colon_s_fail; |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1429 | len_R = flags - R; |
| 1430 | *flags++ = '\0'; // terminate "replace" |
| 1431 | gflag = *flags; |
| 1432 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1433 | q = begin_line(q); |
| 1434 | if (b < 0) { // maybe :s/foo/bar/ |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1435 | q = begin_line(dot); // start with cur line |
| 1436 | b = count_lines(text, q); // cur line number |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1437 | } |
| 1438 | if (e < 0) |
| 1439 | e = b; // maybe :.s/foo/bar/ |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1440 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1441 | for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0 |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1442 | char *ls = q; // orig line start |
| 1443 | char *found; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1444 | vc4: |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1445 | found = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find" |
| 1446 | if (found) { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1447 | uintptr_t bias; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1448 | // we found the "find" pattern - delete it |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1449 | // For undo support, the first item should not be chained |
| 1450 | text_hole_delete(found, found + len_F - 1, dont_chain_first_item); |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1451 | # if ENABLE_FEATURE_VI_UNDO |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1452 | dont_chain_first_item = ALLOW_UNDO_CHAIN; |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1453 | # endif |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1454 | // insert the "replace" patern |
| 1455 | bias = string_insert(found, R, ALLOW_UNDO_CHAIN); |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1456 | found += bias; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 1457 | ls += bias; |
| 1458 | /*q += bias; - recalculated anyway */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1459 | // check for "global" :s/foo/bar/g |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 1460 | if (gflag == 'g') { |
| 1461 | if ((found + len_R) < end_line(ls)) { |
| 1462 | q = found + len_R; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1463 | goto vc4; // don't let q move past cur line |
| 1464 | } |
| 1465 | } |
| 1466 | } |
| 1467 | q = next_line(ls); |
| 1468 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1469 | # endif /* FEATURE_VI_SEARCH */ |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1470 | } else if (strncmp(cmd, "version", i) == 0) { // show software version |
Denys Vlasenko | eba7fe6 | 2017-01-29 19:14:26 +0100 | [diff] [blame] | 1471 | status_line(BB_VER); |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1472 | } else if (strncmp(cmd, "write", i) == 0 // write text to file |
| 1473 | || strncmp(cmd, "wq", i) == 0 |
| 1474 | || strncmp(cmd, "wn", i) == 0 |
| 1475 | || (cmd[0] == 'x' && !cmd[1]) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1476 | ) { |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1477 | int size; |
| 1478 | //int forced = FALSE; |
| 1479 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1480 | // is there a file name to write to? |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1481 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1482 | fn = args; |
| 1483 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1484 | # if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1485 | if (readonly_mode && !useforce) { |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 1486 | status_line_bold("'%s' is read only", fn); |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1487 | goto ret; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1488 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1489 | # endif |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1490 | //if (useforce) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1491 | // if "fn" is not write-able, chmod u+w |
| 1492 | // sprintf(syscmd, "chmod u+w %s", fn); |
| 1493 | // system(syscmd); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1494 | // forced = TRUE; |
| 1495 | //} |
Denys Vlasenko | e88608e | 2017-03-13 20:50:42 +0100 | [diff] [blame] | 1496 | if (modified_count != 0 || cmd[0] != 'x') { |
| 1497 | size = r - q + 1; |
| 1498 | l = file_write(fn, q, r); |
| 1499 | } else { |
| 1500 | size = 0; |
| 1501 | l = 0; |
| 1502 | } |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1503 | //if (useforce && forced) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1504 | // chmod u-w |
| 1505 | // sprintf(syscmd, "chmod u-w %s", fn); |
| 1506 | // system(syscmd); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1507 | // forced = FALSE; |
| 1508 | //} |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1509 | if (l < 0) { |
| 1510 | if (l == -1) |
Denys Vlasenko | 9e7c002 | 2013-03-15 02:17:29 +0100 | [diff] [blame] | 1511 | status_line_bold_errno(fn); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1512 | } else { |
Denys Vlasenko | e88608e | 2017-03-13 20:50:42 +0100 | [diff] [blame] | 1513 | // how many lines written |
| 1514 | li = count_lines(q, q + l - 1); |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 1515 | status_line("'%s' %dL, %dC", fn, li, l); |
Denys Vlasenko | e88608e | 2017-03-13 20:50:42 +0100 | [diff] [blame] | 1516 | if (l == size) { |
| 1517 | if (q == text && q + l == end) { |
| 1518 | modified_count = 0; |
| 1519 | last_modified_count = -1; |
| 1520 | } |
| 1521 | if (cmd[0] == 'x' |
| 1522 | || cmd[1] == 'q' || cmd[1] == 'n' |
| 1523 | || cmd[1] == 'Q' || cmd[1] == 'N' |
| 1524 | ) { |
| 1525 | editing = 0; |
| 1526 | } |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1527 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1528 | } |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1529 | # if ENABLE_FEATURE_VI_YANKMARK |
Denys Vlasenko | 6548edd | 2009-06-15 12:44:11 +0200 | [diff] [blame] | 1530 | } else if (strncmp(cmd, "yank", i) == 0) { // yank lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1531 | if (b < 0) { // no addr given- use defaults |
| 1532 | q = begin_line(dot); // assume .,. for the range |
| 1533 | r = end_line(dot); |
| 1534 | } |
| 1535 | text_yank(q, r, YDreg); |
| 1536 | li = count_lines(q, r); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1537 | status_line("Yank %d lines (%d chars) into [%c]", |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1538 | li, strlen(reg[YDreg]), what_reg()); |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1539 | # endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1540 | } else { |
| 1541 | // cmd unknown |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1542 | not_implemented(cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1543 | } |
Denys Vlasenko | 9f82d0b | 2010-05-19 01:54:37 +0200 | [diff] [blame] | 1544 | ret: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1545 | dot = bound_dot(dot); // make sure "dot" is valid |
| 1546 | return; |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1547 | # if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1548 | colon_s_fail: |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1549 | status_line(":s expression missing delimiters"); |
Denys Vlasenko | 8825cb6 | 2018-06-27 15:11:36 +0200 | [diff] [blame] | 1550 | # endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1551 | #endif /* FEATURE_VI_COLON */ |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 1552 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1553 | |
| 1554 | static void Hit_Return(void) |
| 1555 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 1556 | int c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1557 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1558 | standout_start(); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1559 | write1("[Hit return to continue]"); |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1560 | standout_end(); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1561 | while ((c = get_one_char()) != '\n' && c != '\r') |
| 1562 | continue; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1563 | redraw(TRUE); // force redraw all |
| 1564 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1565 | |
Denis Vlasenko | 91afdf8 | 2007-07-17 23:22:49 +0000 | [diff] [blame] | 1566 | static int next_tabstop(int col) |
| 1567 | { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1568 | return col + ((tabstop - 1) - (col % tabstop)); |
| 1569 | } |
| 1570 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1571 | //----- Synchronize the cursor to Dot -------------------------- |
Denys Vlasenko | adf922e | 2009-10-08 14:35:37 +0200 | [diff] [blame] | 1572 | static NOINLINE void sync_cursor(char *d, int *row, int *col) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1573 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1574 | char *beg_cur; // begin and end of "d" line |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1575 | char *tp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1576 | int cnt, ro, co; |
| 1577 | |
| 1578 | beg_cur = begin_line(d); // first char of cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1579 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1580 | if (beg_cur < screenbegin) { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1581 | // "d" is before top line on screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1582 | // how many lines do we have to move |
| 1583 | cnt = count_lines(beg_cur, screenbegin); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1584 | sc1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1585 | screenbegin = beg_cur; |
| 1586 | if (cnt > (rows - 1) / 2) { |
| 1587 | // we moved too many lines. put "dot" in middle of screen |
| 1588 | for (cnt = 0; cnt < (rows - 1) / 2; cnt++) { |
| 1589 | screenbegin = prev_line(screenbegin); |
| 1590 | } |
| 1591 | } |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1592 | } else { |
| 1593 | char *end_scr; // begin and end of screen |
| 1594 | end_scr = end_screen(); // last char of screen |
| 1595 | if (beg_cur > end_scr) { |
| 1596 | // "d" is after bottom line on screen |
| 1597 | // how many lines do we have to move |
| 1598 | cnt = count_lines(end_scr, beg_cur); |
| 1599 | if (cnt > (rows - 1) / 2) |
| 1600 | goto sc1; // too many lines |
| 1601 | for (ro = 0; ro < cnt - 1; ro++) { |
| 1602 | // move screen begin the same amount |
| 1603 | screenbegin = next_line(screenbegin); |
| 1604 | // now, move the end of screen |
| 1605 | end_scr = next_line(end_scr); |
| 1606 | end_scr = end_line(end_scr); |
| 1607 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1608 | } |
| 1609 | } |
| 1610 | // "d" is on screen- find out which row |
| 1611 | tp = screenbegin; |
| 1612 | for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row |
| 1613 | if (tp == beg_cur) |
| 1614 | break; |
| 1615 | tp = next_line(tp); |
| 1616 | } |
| 1617 | |
| 1618 | // find out what col "d" is on |
| 1619 | co = 0; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1620 | while (tp < d) { // drive "co" to correct column |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1621 | if (*tp == '\n') //vda || *tp == '\0') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1622 | break; |
| 1623 | if (*tp == '\t') { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1624 | // handle tabs like real vi |
| 1625 | if (d == tp && cmd_mode) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1626 | break; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1627 | } |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1628 | co = next_tabstop(co); |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1629 | } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) { |
| 1630 | co++; // display as ^X, use 2 columns |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1631 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1632 | co++; |
| 1633 | tp++; |
| 1634 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1635 | |
| 1636 | // "co" is the column where "dot" is. |
| 1637 | // The screen has "columns" columns. |
| 1638 | // The currently displayed columns are 0+offset -- columns+ofset |
| 1639 | // |-------------------------------------------------------------| |
| 1640 | // ^ ^ ^ |
| 1641 | // offset | |------- columns ----------------| |
| 1642 | // |
| 1643 | // If "co" is already in this range then we do not have to adjust offset |
| 1644 | // but, we do have to subtract the "offset" bias from "co". |
| 1645 | // If "co" is outside this range then we have to change "offset". |
| 1646 | // If the first char of a line is a tab the cursor will try to stay |
| 1647 | // in column 7, but we have to set offset to 0. |
| 1648 | |
| 1649 | if (co < 0 + offset) { |
| 1650 | offset = co; |
| 1651 | } |
| 1652 | if (co >= columns + offset) { |
| 1653 | offset = co - columns + 1; |
| 1654 | } |
| 1655 | // if the first char of the line is a tab, and "dot" is sitting on it |
| 1656 | // force offset to 0. |
| 1657 | if (d == beg_cur && *d == '\t') { |
| 1658 | offset = 0; |
| 1659 | } |
| 1660 | co -= offset; |
| 1661 | |
| 1662 | *row = ro; |
| 1663 | *col = co; |
| 1664 | } |
| 1665 | |
| 1666 | //----- Text Movement Routines --------------------------------- |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1667 | 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] | 1668 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1669 | if (p > text) { |
| 1670 | p = memrchr(text, '\n', p - text); |
| 1671 | if (!p) |
| 1672 | return text; |
| 1673 | return p + 1; |
| 1674 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1675 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1676 | } |
| 1677 | |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1678 | static char *end_line(char *p) // return pointer to NL of cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1679 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1680 | if (p < end - 1) { |
| 1681 | p = memchr(p, '\n', end - p - 1); |
| 1682 | if (!p) |
| 1683 | return end - 1; |
| 1684 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1685 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1686 | } |
| 1687 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1688 | 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] | 1689 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1690 | p = end_line(p); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1691 | // Try to stay off of the Newline |
| 1692 | if (*p == '\n' && (p - begin_line(p)) > 0) |
| 1693 | p--; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1694 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1695 | } |
| 1696 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1697 | static char *prev_line(char *p) // return pointer first char prev line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1698 | { |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 1699 | p = begin_line(p); // goto beginning of cur line |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1700 | if (p > text && p[-1] == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1701 | p--; // step to prev line |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 1702 | p = begin_line(p); // goto beginning of prev line |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1703 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1704 | } |
| 1705 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1706 | static char *next_line(char *p) // return pointer first char next line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1707 | { |
| 1708 | p = end_line(p); |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1709 | if (p < end - 1 && *p == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1710 | p++; // step to next line |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1711 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1712 | } |
| 1713 | |
| 1714 | //----- Text Information Routines ------------------------------ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1715 | static char *end_screen(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1716 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1717 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1718 | int cnt; |
| 1719 | |
| 1720 | // find new bottom line |
| 1721 | q = screenbegin; |
| 1722 | for (cnt = 0; cnt < rows - 2; cnt++) |
| 1723 | q = next_line(q); |
| 1724 | q = end_line(q); |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1725 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1726 | } |
| 1727 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1728 | // count line from start to stop |
| 1729 | static int count_lines(char *start, char *stop) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1730 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1731 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1732 | int cnt; |
| 1733 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1734 | if (stop < start) { // start and stop are backwards- reverse them |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1735 | q = start; |
| 1736 | start = stop; |
| 1737 | stop = q; |
| 1738 | } |
| 1739 | cnt = 0; |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1740 | stop = end_line(stop); |
| 1741 | while (start <= stop && start <= end - 1) { |
| 1742 | start = end_line(start); |
| 1743 | if (*start == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1744 | cnt++; |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1745 | start++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1746 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1747 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1748 | } |
| 1749 | |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 1750 | static char *find_line(int li) // find beginning of line #li |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1751 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1752 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1753 | |
| 1754 | for (q = text; li > 1; li--) { |
| 1755 | q = next_line(q); |
| 1756 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1757 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1758 | } |
| 1759 | |
| 1760 | //----- Dot Movement Routines ---------------------------------- |
| 1761 | static void dot_left(void) |
| 1762 | { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1763 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1764 | if (dot > text && dot[-1] != '\n') |
| 1765 | dot--; |
| 1766 | } |
| 1767 | |
| 1768 | static void dot_right(void) |
| 1769 | { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1770 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1771 | if (dot < end - 1 && *dot != '\n') |
| 1772 | dot++; |
| 1773 | } |
| 1774 | |
| 1775 | static void dot_begin(void) |
| 1776 | { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1777 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1778 | dot = begin_line(dot); // return pointer to first char cur line |
| 1779 | } |
| 1780 | |
| 1781 | static void dot_end(void) |
| 1782 | { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1783 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1784 | dot = end_line(dot); // return pointer to last char cur line |
| 1785 | } |
| 1786 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1787 | static char *move_to_col(char *p, int l) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1788 | { |
| 1789 | int co; |
| 1790 | |
| 1791 | p = begin_line(p); |
| 1792 | co = 0; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1793 | while (co < l && p < end) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1794 | if (*p == '\n') //vda || *p == '\0') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1795 | break; |
| 1796 | if (*p == '\t') { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1797 | co = next_tabstop(co); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1798 | } else if (*p < ' ' || *p == 127) { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1799 | co++; // display as ^X, use 2 columns |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1800 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1801 | co++; |
| 1802 | p++; |
| 1803 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1804 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
| 1807 | static void dot_next(void) |
| 1808 | { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1809 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1810 | dot = next_line(dot); |
| 1811 | } |
| 1812 | |
| 1813 | static void dot_prev(void) |
| 1814 | { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1815 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1816 | dot = prev_line(dot); |
| 1817 | } |
| 1818 | |
| 1819 | static void dot_scroll(int cnt, int dir) |
| 1820 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1821 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1822 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1823 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1824 | for (; cnt > 0; cnt--) { |
| 1825 | if (dir < 0) { |
| 1826 | // scroll Backwards |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1827 | // ctrl-Y scroll up one line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1828 | screenbegin = prev_line(screenbegin); |
| 1829 | } else { |
| 1830 | // scroll Forwards |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1831 | // ctrl-E scroll down one line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1832 | screenbegin = next_line(screenbegin); |
| 1833 | } |
| 1834 | } |
| 1835 | // make sure "dot" stays on the screen so we dont scroll off |
| 1836 | if (dot < screenbegin) |
| 1837 | dot = screenbegin; |
| 1838 | q = end_screen(); // find new bottom line |
| 1839 | if (dot > q) |
| 1840 | dot = begin_line(q); // is dot is below bottom line? |
| 1841 | dot_skip_over_ws(); |
| 1842 | } |
| 1843 | |
| 1844 | static void dot_skip_over_ws(void) |
| 1845 | { |
| 1846 | // skip WS |
| 1847 | while (isspace(*dot) && *dot != '\n' && dot < end - 1) |
| 1848 | dot++; |
| 1849 | } |
| 1850 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1851 | static char *bound_dot(char *p) // make sure text[0] <= P < "end" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1852 | { |
| 1853 | if (p >= end && end > text) { |
| 1854 | p = end - 1; |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 1855 | indicate_error(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1856 | } |
| 1857 | if (p < text) { |
| 1858 | p = text; |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 1859 | indicate_error(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1860 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1861 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1862 | } |
| 1863 | |
| 1864 | //----- Helper Utility Routines -------------------------------- |
| 1865 | |
| 1866 | //---------------------------------------------------------------- |
| 1867 | //----- Char Routines -------------------------------------------- |
| 1868 | /* Chars that are part of a word- |
| 1869 | * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz |
| 1870 | * Chars that are Not part of a word (stoppers) |
| 1871 | * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~ |
| 1872 | * Chars that are WhiteSpace |
| 1873 | * TAB NEWLINE VT FF RETURN SPACE |
| 1874 | * DO NOT COUNT NEWLINE AS WHITESPACE |
| 1875 | */ |
| 1876 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1877 | static char *new_screen(int ro, int co) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1878 | { |
| 1879 | int li; |
| 1880 | |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1881 | free(screen); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1882 | screensize = ro * co + 8; |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 1883 | screen = xmalloc(screensize); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1884 | // initialize the new screen. assume this will be a empty file. |
| 1885 | screen_erase(); |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1886 | // non-existent text[] lines start with a tilde (~). |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1887 | for (li = 1; li < ro - 1; li++) { |
| 1888 | screen[(li * co) + 0] = '~'; |
| 1889 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1890 | return screen; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1891 | } |
| 1892 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1893 | #if ENABLE_FEATURE_VI_SEARCH |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 1894 | |
| 1895 | # if ENABLE_FEATURE_VI_REGEX_SEARCH |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1896 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1897 | // search for pattern starting at p |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1898 | 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] | 1899 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1900 | struct re_pattern_buffer preg; |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1901 | const char *err; |
| 1902 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1903 | int i; |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 1904 | int size; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1905 | |
| 1906 | re_syntax_options = RE_SYNTAX_POSIX_EXTENDED; |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1907 | if (ignorecase) |
| 1908 | re_syntax_options = RE_SYNTAX_POSIX_EXTENDED | RE_ICASE; |
| 1909 | |
| 1910 | memset(&preg, 0, sizeof(preg)); |
| 1911 | err = re_compile_pattern(pat, strlen(pat), &preg); |
| 1912 | if (err != NULL) { |
| 1913 | status_line_bold("bad search pattern '%s': %s", pat, err); |
| 1914 | return p; |
| 1915 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1916 | |
| 1917 | // assume a LIMITED forward search |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1918 | q = end - 1; |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1919 | if (dir == BACK) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1920 | q = text; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1921 | // RANGE could be negative if we are searching backwards |
| 1922 | range = q - p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1923 | q = p; |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1924 | size = range; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1925 | if (range < 0) { |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1926 | size = -size; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1927 | q = p - size; |
| 1928 | if (q < text) |
| 1929 | q = text; |
| 1930 | } |
| 1931 | // search for the compiled pattern, preg, in p[] |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1932 | // range < 0: search backward |
| 1933 | // range > 0: search forward |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1934 | // 0 < start < size |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1935 | // re_search() < 0: not found or error |
| 1936 | // re_search() >= 0: index of found pattern |
| 1937 | // struct pattern char int int int struct reg |
| 1938 | // re_search(*pattern_buffer, *string, size, start, range, *regs) |
| 1939 | i = re_search(&preg, q, size, /*start:*/ 0, range, /*struct re_registers*:*/ NULL); |
| 1940 | regfree(&preg); |
| 1941 | if (i < 0) |
| 1942 | return NULL; |
| 1943 | if (dir == FORWARD) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1944 | p = p + i; |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1945 | else |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1946 | p = p - i; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1947 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1948 | } |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 1949 | |
| 1950 | # else |
| 1951 | |
| 1952 | # if ENABLE_FEATURE_VI_SETOPTS |
| 1953 | static int mycmp(const char *s1, const char *s2, int len) |
| 1954 | { |
| 1955 | if (ignorecase) { |
| 1956 | return strncasecmp(s1, s2, len); |
| 1957 | } |
| 1958 | return strncmp(s1, s2, len); |
| 1959 | } |
| 1960 | # else |
| 1961 | # define mycmp strncmp |
| 1962 | # endif |
| 1963 | |
| 1964 | static char *char_search(char *p, const char *pat, int dir, int range) |
| 1965 | { |
| 1966 | char *start, *stop; |
| 1967 | int len; |
| 1968 | |
| 1969 | len = strlen(pat); |
| 1970 | if (dir == FORWARD) { |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1971 | stop = end - 1; // assume range is p..end-1 |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 1972 | if (range == LIMITED) |
| 1973 | stop = next_line(p); // range is to next line |
| 1974 | for (start = p; start < stop; start++) { |
| 1975 | if (mycmp(start, pat, len) == 0) { |
| 1976 | return start; |
| 1977 | } |
| 1978 | } |
| 1979 | } else if (dir == BACK) { |
Denys Vlasenko | 264f373 | 2013-04-21 15:51:41 +0200 | [diff] [blame] | 1980 | stop = text; // assume range is text..p |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 1981 | if (range == LIMITED) |
| 1982 | stop = prev_line(p); // range is to prev line |
| 1983 | for (start = p - len; start >= stop; start--) { |
| 1984 | if (mycmp(start, pat, len) == 0) { |
| 1985 | return start; |
| 1986 | } |
| 1987 | } |
| 1988 | } |
| 1989 | // pattern not found |
| 1990 | return NULL; |
| 1991 | } |
| 1992 | |
| 1993 | # endif |
| 1994 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1995 | #endif /* FEATURE_VI_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1996 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 1997 | static char *char_insert(char *p, char c, int undo) // insert the char c at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1998 | { |
| 1999 | if (c == 22) { // Is this an ctrl-V? |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2000 | p += stupid_insert(p, '^'); // use ^ to indicate literal next |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2001 | refresh(FALSE); // show the ^ |
| 2002 | c = get_one_char(); |
| 2003 | *p = c; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2004 | #if ENABLE_FEATURE_VI_UNDO |
| 2005 | switch (undo) { |
| 2006 | case ALLOW_UNDO: |
| 2007 | undo_push(p, 1, UNDO_INS); |
| 2008 | break; |
| 2009 | case ALLOW_UNDO_CHAIN: |
| 2010 | undo_push(p, 1, UNDO_INS_CHAIN); |
| 2011 | break; |
| 2012 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2013 | case ALLOW_UNDO_QUEUED: |
| 2014 | undo_push(p, 1, UNDO_INS_QUEUED); |
| 2015 | break; |
| 2016 | # endif |
| 2017 | } |
| 2018 | #else |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2019 | modified_count++; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2020 | #endif /* ENABLE_FEATURE_VI_UNDO */ |
| 2021 | p++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2022 | } else if (c == 27) { // Is this an ESC? |
| 2023 | cmd_mode = 0; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2024 | undo_queue_commit(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2025 | cmdcnt = 0; |
| 2026 | end_cmd_q(); // stop adding to q |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2027 | last_status_cksum = 0; // force status update |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 2028 | if ((p[-1] != '\n') && (dot > text)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2029 | p--; |
| 2030 | } |
Paul Fox | d13b90b | 2005-07-18 22:17:25 +0000 | [diff] [blame] | 2031 | } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS |
Denys Vlasenko | 49acc1a | 2015-03-12 21:15:34 +0100 | [diff] [blame] | 2032 | if (p > text) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2033 | p--; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2034 | p = text_hole_delete(p, p, ALLOW_UNDO_QUEUED); // shrink buffer 1 char |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2035 | } |
| 2036 | } else { |
| 2037 | // insert a char into text[] |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2038 | if (c == 13) |
| 2039 | c = '\n'; // translate \r to \n |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2040 | #if ENABLE_FEATURE_VI_UNDO |
| 2041 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2042 | if (c == '\n') |
| 2043 | undo_queue_commit(); |
| 2044 | # endif |
| 2045 | switch (undo) { |
| 2046 | case ALLOW_UNDO: |
| 2047 | undo_push(p, 1, UNDO_INS); |
| 2048 | break; |
| 2049 | case ALLOW_UNDO_CHAIN: |
| 2050 | undo_push(p, 1, UNDO_INS_CHAIN); |
| 2051 | break; |
| 2052 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2053 | case ALLOW_UNDO_QUEUED: |
| 2054 | undo_push(p, 1, UNDO_INS_QUEUED); |
| 2055 | break; |
| 2056 | # endif |
| 2057 | } |
| 2058 | #else |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2059 | modified_count++; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2060 | #endif /* ENABLE_FEATURE_VI_UNDO */ |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2061 | p += 1 + stupid_insert(p, c); // insert the char |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2062 | #if ENABLE_FEATURE_VI_SETOPTS |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2063 | if (showmatch && strchr(")]}", c) != NULL) { |
| 2064 | showmatching(p - 1); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2065 | } |
| 2066 | if (autoindent && c == '\n') { // auto indent the new line |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2067 | char *q; |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2068 | size_t len; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2069 | q = prev_line(p); // use prev line as template |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2070 | len = strspn(q, " \t"); // space or tab |
| 2071 | if (len) { |
Denis Vlasenko | 3266aa9 | 2009-04-01 11:24:04 +0000 | [diff] [blame] | 2072 | uintptr_t bias; |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2073 | bias = text_hole_make(p, len); |
| 2074 | p += bias; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2075 | q += bias; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2076 | #if ENABLE_FEATURE_VI_UNDO |
| 2077 | undo_push(p, len, UNDO_INS); |
| 2078 | #endif |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2079 | memcpy(p, q, len); |
Denis Vlasenko | 3266aa9 | 2009-04-01 11:24:04 +0000 | [diff] [blame] | 2080 | p += len; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2081 | } |
| 2082 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2083 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2084 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2085 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2086 | } |
| 2087 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2088 | // might reallocate text[]! use p += stupid_insert(p, ...), |
| 2089 | // and be careful to not use pointers into potentially freed text[]! |
| 2090 | static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2091 | { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2092 | uintptr_t bias; |
| 2093 | bias = text_hole_make(p, 1); |
| 2094 | p += bias; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2095 | *p = c; |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2096 | return bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2097 | } |
| 2098 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2099 | static int find_range(char **start, char **stop, char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2100 | { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2101 | char *save_dot, *p, *q, *t; |
| 2102 | int cnt, multiline = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2103 | |
| 2104 | save_dot = dot; |
| 2105 | p = q = dot; |
| 2106 | |
| 2107 | if (strchr("cdy><", c)) { |
| 2108 | // these cmds operate on whole lines |
| 2109 | p = q = begin_line(p); |
| 2110 | for (cnt = 1; cnt < cmdcnt; cnt++) { |
| 2111 | q = next_line(q); |
| 2112 | } |
| 2113 | q = end_line(q); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2114 | } else if (strchr("^%$0bBeEfth\b\177", c)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2115 | // These cmds operate on char positions |
| 2116 | do_cmd(c); // execute movement cmd |
| 2117 | q = dot; |
| 2118 | } else if (strchr("wW", c)) { |
| 2119 | do_cmd(c); // execute movement cmd |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 2120 | // if we are at the next word's first char |
| 2121 | // step back one char |
| 2122 | // but check the possibilities when it is true |
Eric Andersen | 5cc90ea | 2004-02-06 10:36:08 +0000 | [diff] [blame] | 2123 | if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0])) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 2124 | || (ispunct(dot[-1]) && !ispunct(dot[0])) |
| 2125 | || (isalnum(dot[-1]) && !isalnum(dot[0])))) |
| 2126 | dot--; // move back off of next word |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2127 | if (dot > text && *dot == '\n') |
| 2128 | dot--; // stay off NL |
| 2129 | q = dot; |
| 2130 | } else if (strchr("H-k{", c)) { |
| 2131 | // these operate on multi-lines backwards |
| 2132 | q = end_line(dot); // find NL |
| 2133 | do_cmd(c); // execute movement cmd |
| 2134 | dot_begin(); |
| 2135 | p = dot; |
| 2136 | } else if (strchr("L+j}\r\n", c)) { |
| 2137 | // these operate on multi-lines forwards |
| 2138 | p = begin_line(dot); |
| 2139 | do_cmd(c); // execute movement cmd |
| 2140 | dot_end(); // find NL |
| 2141 | q = dot; |
| 2142 | } else { |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 2143 | // nothing -- this causes any other values of c to |
| 2144 | // represent the one-character range under the |
| 2145 | // cursor. this is correct for ' ' and 'l', but |
| 2146 | // perhaps no others. |
| 2147 | // |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2148 | } |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2149 | if (q < p) { |
| 2150 | t = q; |
| 2151 | q = p; |
| 2152 | p = t; |
| 2153 | } |
| 2154 | |
Denis Vlasenko | 42cc304 | 2008-03-24 02:05:58 +0000 | [diff] [blame] | 2155 | // backward char movements don't include start position |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2156 | if (q > p && strchr("^0bBh\b\177", c)) q--; |
| 2157 | |
| 2158 | multiline = 0; |
| 2159 | for (t = p; t <= q; t++) { |
| 2160 | if (*t == '\n') { |
| 2161 | multiline = 1; |
| 2162 | break; |
| 2163 | } |
| 2164 | } |
| 2165 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2166 | *start = p; |
| 2167 | *stop = q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2168 | dot = save_dot; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2169 | return multiline; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2170 | } |
| 2171 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2172 | static int st_test(char *p, int type, int dir, char *tested) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2173 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2174 | char c, c0, ci; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2175 | int test, inc; |
| 2176 | |
| 2177 | inc = dir; |
| 2178 | c = c0 = p[0]; |
| 2179 | ci = p[inc]; |
| 2180 | test = 0; |
| 2181 | |
| 2182 | if (type == S_BEFORE_WS) { |
| 2183 | c = ci; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 2184 | test = (!isspace(c) || c == '\n'); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2185 | } |
| 2186 | if (type == S_TO_WS) { |
| 2187 | c = c0; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 2188 | test = (!isspace(c) || c == '\n'); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2189 | } |
| 2190 | if (type == S_OVER_WS) { |
| 2191 | c = c0; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 2192 | test = isspace(c); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2193 | } |
| 2194 | if (type == S_END_PUNCT) { |
| 2195 | c = ci; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 2196 | test = ispunct(c); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2197 | } |
| 2198 | if (type == S_END_ALNUM) { |
| 2199 | c = ci; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 2200 | test = (isalnum(c) || c == '_'); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2201 | } |
| 2202 | *tested = c; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2203 | return test; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2204 | } |
| 2205 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2206 | static char *skip_thing(char *p, int linecnt, int dir, int type) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2207 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2208 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2209 | |
| 2210 | while (st_test(p, type, dir, &c)) { |
| 2211 | // make sure we limit search to correct number of lines |
| 2212 | if (c == '\n' && --linecnt < 1) |
| 2213 | break; |
| 2214 | if (dir >= 0 && p >= end - 1) |
| 2215 | break; |
| 2216 | if (dir < 0 && p <= text) |
| 2217 | break; |
| 2218 | p += dir; // move to next char |
| 2219 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2220 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2221 | } |
| 2222 | |
| 2223 | // find matching char of pair () [] {} |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2224 | // will crash if c is not one of these |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2225 | static char *find_pair(char *p, const char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2226 | { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2227 | const char *braces = "()[]{}"; |
| 2228 | char match; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2229 | int dir, level; |
| 2230 | |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2231 | dir = strchr(braces, c) - braces; |
| 2232 | dir ^= 1; |
| 2233 | match = braces[dir]; |
| 2234 | dir = ((dir & 1) << 1) - 1; /* 1 for ([{, -1 for )\} */ |
| 2235 | |
| 2236 | // look for match, count levels of pairs (( )) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2237 | level = 1; |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2238 | for (;;) { |
| 2239 | p += dir; |
| 2240 | if (p < text || p >= end) |
| 2241 | return NULL; |
| 2242 | if (*p == c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2243 | level++; // increase pair levels |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2244 | if (*p == match) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2245 | level--; // reduce pair level |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2246 | if (level == 0) |
| 2247 | return p; // found matching pair |
| 2248 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2249 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2250 | } |
| 2251 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2252 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2253 | // show the matching char of a pair, () [] {} |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2254 | static void showmatching(char *p) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2255 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2256 | char *q, *save_dot; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2257 | |
| 2258 | // we found half of a pair |
| 2259 | q = find_pair(p, *p); // get loc of matching char |
| 2260 | if (q == NULL) { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2261 | indicate_error(); // no matching char |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2262 | } else { |
| 2263 | // "q" now points to matching pair |
| 2264 | save_dot = dot; // remember where we are |
| 2265 | dot = q; // go to new loc |
| 2266 | refresh(FALSE); // let the user see it |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2267 | mysleep(40); // give user some time |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2268 | dot = save_dot; // go back to old loc |
| 2269 | refresh(FALSE); |
| 2270 | } |
| 2271 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2272 | #endif /* FEATURE_VI_SETOPTS */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2273 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2274 | #if ENABLE_FEATURE_VI_UNDO |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2275 | static void flush_undo_data(void) |
| 2276 | { |
| 2277 | struct undo_object *undo_entry; |
| 2278 | |
| 2279 | while (undo_stack_tail) { |
| 2280 | undo_entry = undo_stack_tail; |
| 2281 | undo_stack_tail = undo_entry->prev; |
| 2282 | free(undo_entry); |
| 2283 | } |
| 2284 | } |
| 2285 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2286 | // Undo functions and hooks added by Jody Bruchon (jody@jodybruchon.com) |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2287 | static void undo_push(char *src, unsigned int length, uint8_t u_type) // Add to the undo stack |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2288 | { |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2289 | struct undo_object *undo_entry; |
| 2290 | |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2291 | // "u_type" values |
| 2292 | // UNDO_INS: insertion, undo will remove from buffer |
| 2293 | // UNDO_DEL: deleted text, undo will restore to buffer |
| 2294 | // UNDO_{INS,DEL}_CHAIN: Same as above but also calls undo_pop() when complete |
| 2295 | // The CHAIN operations are for handling multiple operations that the user |
| 2296 | // performs with a single action, i.e. REPLACE mode or find-and-replace commands |
| 2297 | // UNDO_{INS,DEL}_QUEUED: If queuing feature is enabled, allow use of the queue |
| 2298 | // for the INS/DEL operation. The raw values should be equal to the values of |
| 2299 | // UNDO_{INS,DEL} ORed with UNDO_QUEUED_FLAG |
| 2300 | |
| 2301 | #if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2302 | // This undo queuing functionality groups multiple character typing or backspaces |
| 2303 | // into a single large undo object. This greatly reduces calls to malloc() for |
| 2304 | // single-character operations while typing and has the side benefit of letting |
| 2305 | // an undo operation remove chunks of text rather than a single character. |
| 2306 | switch (u_type) { |
| 2307 | case UNDO_EMPTY: // Just in case this ever happens... |
| 2308 | return; |
| 2309 | case UNDO_DEL_QUEUED: |
| 2310 | if (length != 1) |
| 2311 | return; // Only queue single characters |
| 2312 | switch (undo_queue_state) { |
| 2313 | case UNDO_EMPTY: |
| 2314 | undo_queue_state = UNDO_DEL; |
| 2315 | case UNDO_DEL: |
| 2316 | undo_queue_spos = src; |
| 2317 | undo_q++; |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2318 | undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q] = *src; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2319 | // If queue is full, dump it into an object |
| 2320 | if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX) |
| 2321 | undo_queue_commit(); |
| 2322 | return; |
| 2323 | case UNDO_INS: |
| 2324 | // Switch from storing inserted text to deleted text |
| 2325 | undo_queue_commit(); |
| 2326 | undo_push(src, length, UNDO_DEL_QUEUED); |
| 2327 | return; |
| 2328 | } |
| 2329 | break; |
| 2330 | case UNDO_INS_QUEUED: |
| 2331 | if (length != 1) |
| 2332 | return; |
| 2333 | switch (undo_queue_state) { |
| 2334 | case UNDO_EMPTY: |
| 2335 | undo_queue_state = UNDO_INS; |
| 2336 | undo_queue_spos = src; |
| 2337 | case UNDO_INS: |
| 2338 | undo_q++; // Don't need to save any data for insertions |
| 2339 | if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX) |
| 2340 | undo_queue_commit(); |
| 2341 | return; |
| 2342 | case UNDO_DEL: |
| 2343 | // Switch from storing deleted text to inserted text |
| 2344 | undo_queue_commit(); |
| 2345 | undo_push(src, length, UNDO_INS_QUEUED); |
| 2346 | return; |
| 2347 | } |
| 2348 | break; |
| 2349 | } |
| 2350 | #else |
| 2351 | // If undo queuing is disabled, ignore the queuing flag entirely |
| 2352 | u_type = u_type & ~UNDO_QUEUED_FLAG; |
| 2353 | #endif |
| 2354 | |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2355 | // Allocate a new undo object |
| 2356 | if (u_type == UNDO_DEL || u_type == UNDO_DEL_CHAIN) { |
| 2357 | // For UNDO_DEL objects, save deleted text |
| 2358 | if ((src + length) == end) |
| 2359 | length--; |
| 2360 | // If this deletion empties text[], strip the newline. When the buffer becomes |
| 2361 | // zero-length, a newline is added back, which requires this to compensate. |
| 2362 | undo_entry = xzalloc(offsetof(struct undo_object, undo_text) + length); |
| 2363 | memcpy(undo_entry->undo_text, src, length); |
| 2364 | } else { |
| 2365 | undo_entry = xzalloc(sizeof(*undo_entry)); |
| 2366 | } |
| 2367 | undo_entry->length = length; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2368 | #if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2369 | if ((u_type & UNDO_USE_SPOS) != 0) { |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2370 | undo_entry->start = undo_queue_spos - text; // use start position from queue |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2371 | } else { |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2372 | undo_entry->start = src - text; // use offset from start of text buffer |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2373 | } |
| 2374 | u_type = (u_type & ~UNDO_USE_SPOS); |
| 2375 | #else |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2376 | undo_entry->start = src - text; |
| 2377 | #endif |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2378 | undo_entry->u_type = u_type; |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2379 | |
| 2380 | // Push it on undo stack |
| 2381 | undo_entry->prev = undo_stack_tail; |
| 2382 | undo_stack_tail = undo_entry; |
| 2383 | modified_count++; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2384 | } |
| 2385 | |
| 2386 | static void undo_pop(void) // Undo the last operation |
| 2387 | { |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2388 | int repeat; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2389 | char *u_start, *u_end; |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2390 | struct undo_object *undo_entry; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2391 | |
| 2392 | // Commit pending undo queue before popping (should be unnecessary) |
| 2393 | undo_queue_commit(); |
| 2394 | |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2395 | undo_entry = undo_stack_tail; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2396 | // Check for an empty undo stack |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2397 | if (!undo_entry) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2398 | status_line("Already at oldest change"); |
| 2399 | return; |
| 2400 | } |
| 2401 | |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2402 | switch (undo_entry->u_type) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2403 | case UNDO_DEL: |
| 2404 | case UNDO_DEL_CHAIN: |
| 2405 | // make hole and put in text that was deleted; deallocate text |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2406 | u_start = text + undo_entry->start; |
| 2407 | text_hole_make(u_start, undo_entry->length); |
| 2408 | memcpy(u_start, undo_entry->undo_text, undo_entry->length); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2409 | status_line("Undo [%d] %s %d chars at position %d", |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2410 | modified_count, "restored", |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2411 | undo_entry->length, undo_entry->start |
| 2412 | ); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2413 | break; |
| 2414 | case UNDO_INS: |
| 2415 | case UNDO_INS_CHAIN: |
| 2416 | // delete what was inserted |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2417 | u_start = undo_entry->start + text; |
| 2418 | u_end = u_start - 1 + undo_entry->length; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2419 | text_hole_delete(u_start, u_end, NO_UNDO); |
| 2420 | status_line("Undo [%d] %s %d chars at position %d", |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2421 | modified_count, "deleted", |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2422 | undo_entry->length, undo_entry->start |
| 2423 | ); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2424 | break; |
| 2425 | } |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2426 | repeat = 0; |
| 2427 | switch (undo_entry->u_type) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2428 | // If this is the end of a chain, lower modification count and refresh display |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2429 | case UNDO_DEL: |
| 2430 | case UNDO_INS: |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2431 | dot = (text + undo_entry->start); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2432 | refresh(FALSE); |
| 2433 | break; |
| 2434 | case UNDO_DEL_CHAIN: |
| 2435 | case UNDO_INS_CHAIN: |
| 2436 | repeat = 1; |
| 2437 | break; |
| 2438 | } |
| 2439 | // Deallocate the undo object we just processed |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2440 | undo_stack_tail = undo_entry->prev; |
| 2441 | free(undo_entry); |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2442 | modified_count--; |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2443 | // For chained operations, continue popping all the way down the chain. |
| 2444 | if (repeat) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2445 | undo_pop(); // Follow the undo chain if one exists |
| 2446 | } |
| 2447 | } |
| 2448 | |
| 2449 | #if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2450 | static void undo_queue_commit(void) // Flush any queued objects to the undo stack |
| 2451 | { |
| 2452 | // Pushes the queue object onto the undo stack |
| 2453 | if (undo_q > 0) { |
| 2454 | // Deleted character undo events grow from the end |
Denys Vlasenko | 2c51202 | 2014-04-03 01:45:05 +0200 | [diff] [blame] | 2455 | undo_push(undo_queue + CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q, |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2456 | undo_q, |
| 2457 | (undo_queue_state | UNDO_USE_SPOS) |
| 2458 | ); |
| 2459 | undo_queue_state = UNDO_EMPTY; |
| 2460 | undo_q = 0; |
| 2461 | } |
| 2462 | } |
| 2463 | #endif |
| 2464 | |
| 2465 | #endif /* ENABLE_FEATURE_VI_UNDO */ |
| 2466 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2467 | // open a hole in text[] |
| 2468 | // might reallocate text[]! use p += text_hole_make(p, ...), |
| 2469 | // and be careful to not use pointers into potentially freed text[]! |
| 2470 | static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2471 | { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2472 | uintptr_t bias = 0; |
| 2473 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2474 | if (size <= 0) |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2475 | return bias; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2476 | end += size; // adjust the new END |
| 2477 | if (end >= (text + text_size)) { |
| 2478 | char *new_text; |
| 2479 | text_size += end - (text + text_size) + 10240; |
| 2480 | new_text = xrealloc(text, text_size); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2481 | bias = (new_text - text); |
| 2482 | screenbegin += bias; |
| 2483 | dot += bias; |
| 2484 | end += bias; |
| 2485 | p += bias; |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 2486 | #if ENABLE_FEATURE_VI_YANKMARK |
| 2487 | { |
| 2488 | int i; |
| 2489 | for (i = 0; i < ARRAY_SIZE(mark); i++) |
| 2490 | if (mark[i]) |
| 2491 | mark[i] += bias; |
| 2492 | } |
| 2493 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2494 | text = new_text; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2495 | } |
Denis Vlasenko | d699544 | 2008-06-27 04:06:13 +0000 | [diff] [blame] | 2496 | memmove(p + size, p, end - size - p); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2497 | memset(p, ' ', size); // clear new hole |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2498 | return bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2499 | } |
| 2500 | |
| 2501 | // close a hole in text[] |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2502 | // "undo" value indicates if this operation should be undo-able |
| 2503 | static char *text_hole_delete(char *p, char *q, int undo) // delete "p" through "q", inclusive |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2504 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2505 | char *src, *dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2506 | int cnt, hole_size; |
| 2507 | |
| 2508 | // move forwards, from beginning |
| 2509 | // assume p <= q |
| 2510 | src = q + 1; |
| 2511 | dest = p; |
| 2512 | if (q < p) { // they are backward- swap them |
| 2513 | src = p + 1; |
| 2514 | dest = q; |
| 2515 | } |
| 2516 | hole_size = q - p + 1; |
| 2517 | cnt = end - src; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2518 | #if ENABLE_FEATURE_VI_UNDO |
| 2519 | switch (undo) { |
| 2520 | case NO_UNDO: |
| 2521 | break; |
| 2522 | case ALLOW_UNDO: |
| 2523 | undo_push(p, hole_size, UNDO_DEL); |
| 2524 | break; |
| 2525 | case ALLOW_UNDO_CHAIN: |
| 2526 | undo_push(p, hole_size, UNDO_DEL_CHAIN); |
| 2527 | break; |
| 2528 | # if ENABLE_FEATURE_VI_UNDO_QUEUE |
| 2529 | case ALLOW_UNDO_QUEUED: |
| 2530 | undo_push(p, hole_size, UNDO_DEL_QUEUED); |
| 2531 | break; |
| 2532 | # endif |
| 2533 | } |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2534 | modified_count--; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2535 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2536 | if (src < text || src > end) |
| 2537 | goto thd0; |
| 2538 | if (dest < text || dest >= end) |
| 2539 | goto thd0; |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2540 | modified_count++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2541 | if (src >= end) |
| 2542 | goto thd_atend; // just delete the end of the buffer |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2543 | memmove(dest, src, cnt); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2544 | thd_atend: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2545 | end = end - hole_size; // adjust the new END |
| 2546 | if (dest >= end) |
| 2547 | dest = end - 1; // make sure dest in below end-1 |
| 2548 | if (end <= text) |
| 2549 | dest = end = text; // keep pointers valid |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2550 | thd0: |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2551 | return dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2552 | } |
| 2553 | |
| 2554 | // copy text into register, then delete text. |
| 2555 | // if dist <= 0, do not include, or go past, a NewLine |
| 2556 | // |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2557 | static char *yank_delete(char *start, char *stop, int dist, int yf, int undo) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2558 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2559 | char *p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2560 | |
| 2561 | // make sure start <= stop |
| 2562 | if (start > stop) { |
| 2563 | // they are backwards, reverse them |
| 2564 | p = start; |
| 2565 | start = stop; |
| 2566 | stop = p; |
| 2567 | } |
| 2568 | if (dist <= 0) { |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 2569 | // we cannot cross NL boundaries |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2570 | p = start; |
| 2571 | if (*p == '\n') |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2572 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2573 | // dont go past a NewLine |
| 2574 | for (; p + 1 <= stop; p++) { |
| 2575 | if (p[1] == '\n') { |
| 2576 | stop = p; // "stop" just before NewLine |
| 2577 | break; |
| 2578 | } |
| 2579 | } |
| 2580 | } |
| 2581 | p = start; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2582 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2583 | text_yank(start, stop, YDreg); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2584 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2585 | if (yf == YANKDEL) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2586 | p = text_hole_delete(start, stop, undo); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2587 | } // delete lines |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2588 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2589 | } |
| 2590 | |
| 2591 | static void show_help(void) |
| 2592 | { |
| 2593 | puts("These features are available:" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2594 | #if ENABLE_FEATURE_VI_SEARCH |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2595 | "\n\tPattern searches with / and ?" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2596 | #endif |
| 2597 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 2598 | "\n\tLast command repeat with ." |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2599 | #endif |
| 2600 | #if ENABLE_FEATURE_VI_YANKMARK |
Bernhard Reutner-Fischer | d24d5c8 | 2007-10-01 18:04:42 +0000 | [diff] [blame] | 2601 | "\n\tLine marking with 'x" |
| 2602 | "\n\tNamed buffers with \"x" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2603 | #endif |
| 2604 | #if ENABLE_FEATURE_VI_READONLY |
Walter Harms | b9ba580 | 2011-06-27 02:59:37 +0200 | [diff] [blame] | 2605 | //not implemented: "\n\tReadonly if vi is called as \"view\"" |
| 2606 | //redundant: usage text says this too: "\n\tReadonly with -R command line arg" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2607 | #endif |
| 2608 | #if ENABLE_FEATURE_VI_SET |
Denys Vlasenko | 605f264 | 2012-06-11 01:53:33 +0200 | [diff] [blame] | 2609 | "\n\tSome colon mode commands with :" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2610 | #endif |
| 2611 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2612 | "\n\tSettable options with \":set\"" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2613 | #endif |
| 2614 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2615 | "\n\tSignal catching- ^C" |
| 2616 | "\n\tJob suspend and resume with ^Z" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2617 | #endif |
| 2618 | #if ENABLE_FEATURE_VI_WIN_RESIZE |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2619 | "\n\tAdapt to window re-sizes" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2620 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2621 | ); |
| 2622 | } |
| 2623 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2624 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2625 | static void start_new_cmd_q(char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2626 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2627 | // get buffer for new cmd |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2628 | // if there is a current cmd count put it in the buffer first |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2629 | if (cmdcnt > 0) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2630 | lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2631 | } else { // just save char c onto queue |
Paul Fox | d957b95 | 2005-11-28 18:07:53 +0000 | [diff] [blame] | 2632 | last_modifying_cmd[0] = c; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2633 | lmc_len = 1; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2634 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2635 | adding2q = 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2636 | } |
| 2637 | |
| 2638 | static void end_cmd_q(void) |
| 2639 | { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2640 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2641 | YDreg = 26; // go back to default Yank/Delete reg |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2642 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2643 | adding2q = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2644 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2645 | #endif /* FEATURE_VI_DOT_CMD */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2646 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2647 | #if ENABLE_FEATURE_VI_YANKMARK \ |
| 2648 | || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \ |
| 2649 | || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2650 | // might reallocate text[]! use p += string_insert(p, ...), |
| 2651 | // and be careful to not use pointers into potentially freed text[]! |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2652 | static uintptr_t string_insert(char *p, const char *s, int undo) // insert the string at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2653 | { |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2654 | uintptr_t bias; |
| 2655 | int i; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2656 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2657 | i = strlen(s); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2658 | #if ENABLE_FEATURE_VI_UNDO |
| 2659 | switch (undo) { |
| 2660 | case ALLOW_UNDO: |
| 2661 | undo_push(p, i, UNDO_INS); |
| 2662 | break; |
| 2663 | case ALLOW_UNDO_CHAIN: |
| 2664 | undo_push(p, i, UNDO_INS_CHAIN); |
| 2665 | break; |
| 2666 | } |
| 2667 | #endif |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2668 | bias = text_hole_make(p, i); |
| 2669 | p += bias; |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2670 | memcpy(p, s, i); |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2671 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2672 | { |
| 2673 | int cnt; |
| 2674 | for (cnt = 0; *s != '\0'; s++) { |
| 2675 | if (*s == '\n') |
| 2676 | cnt++; |
| 2677 | } |
| 2678 | status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg()); |
| 2679 | } |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2680 | #endif |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2681 | return bias; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2682 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2683 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2684 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2685 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2686 | 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] | 2687 | { |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2688 | int cnt = q - p; |
| 2689 | if (cnt < 0) { // they are backwards- reverse them |
| 2690 | p = q; |
| 2691 | cnt = -cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2692 | } |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 2693 | free(reg[dest]); // if already a yank register, free it |
| 2694 | reg[dest] = xstrndup(p, cnt + 1); |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2695 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2696 | } |
| 2697 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2698 | static char what_reg(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2699 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2700 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2701 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2702 | c = 'D'; // default to D-reg |
| 2703 | if (0 <= YDreg && YDreg <= 25) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2704 | c = 'a' + (char) YDreg; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2705 | if (YDreg == 26) |
| 2706 | c = 'D'; |
| 2707 | if (YDreg == 27) |
| 2708 | c = 'U'; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2709 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2710 | } |
| 2711 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2712 | static void check_context(char cmd) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2713 | { |
| 2714 | // A context is defined to be "modifying text" |
| 2715 | // Any modifying command establishes a new context. |
| 2716 | |
| 2717 | if (dot < context_start || dot > context_end) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2718 | if (strchr(modifying_cmds, cmd) != NULL) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2719 | // we are trying to modify text[]- make this the current context |
| 2720 | mark[27] = mark[26]; // move cur to prev |
| 2721 | mark[26] = dot; // move local to cur |
| 2722 | context_start = prev_line(prev_line(dot)); |
| 2723 | context_end = next_line(next_line(dot)); |
| 2724 | //loiter= start_loiter= now; |
| 2725 | } |
| 2726 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2727 | } |
| 2728 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2729 | 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] | 2730 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2731 | char *tmp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2732 | |
| 2733 | // the current context is in mark[26] |
| 2734 | // the previous context is in mark[27] |
| 2735 | // only swap context if other context is valid |
| 2736 | if (text <= mark[27] && mark[27] <= end - 1) { |
| 2737 | tmp = mark[27]; |
Denys Vlasenko | 61fcc8c | 2016-09-28 16:23:05 +0200 | [diff] [blame] | 2738 | mark[27] = p; |
| 2739 | mark[26] = p = tmp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2740 | context_start = prev_line(prev_line(prev_line(p))); |
| 2741 | context_end = next_line(next_line(next_line(p))); |
| 2742 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2743 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2744 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2745 | #endif /* FEATURE_VI_YANKMARK */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2746 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2747 | //----- Set terminal attributes -------------------------------- |
| 2748 | static void rawmode(void) |
| 2749 | { |
Denys Vlasenko | 01ccdd1 | 2017-01-11 16:17:59 +0100 | [diff] [blame] | 2750 | // no TERMIOS_CLEAR_ISIG: leave ISIG on - allow signals |
| 2751 | set_termios_to_raw(STDIN_FILENO, &term_orig, TERMIOS_RAW_CRNL); |
| 2752 | erase_char = term_orig.c_cc[VERASE]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2753 | } |
| 2754 | |
| 2755 | static void cookmode(void) |
| 2756 | { |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 2757 | fflush_all(); |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 2758 | tcsetattr_stdin_TCSANOW(&term_orig); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2759 | } |
| 2760 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2761 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2762 | //----- Come here when we get a window resize signal --------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2763 | static void winch_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2764 | { |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2765 | int save_errno = errno; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2766 | // FIXME: do it in main loop!!! |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2767 | signal(SIGWINCH, winch_sig); |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2768 | query_screen_dimensions(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2769 | new_screen(rows, columns); // get memory for virtual screen |
| 2770 | redraw(TRUE); // re-draw the screen |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2771 | errno = save_errno; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2772 | } |
| 2773 | |
| 2774 | //----- Come here when we get a continue signal ------------------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2775 | static void cont_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2776 | { |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2777 | int save_errno = errno; |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2778 | rawmode(); // terminal to "raw" |
| 2779 | last_status_cksum = 0; // force status update |
| 2780 | redraw(TRUE); // re-draw the screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2781 | |
| 2782 | signal(SIGTSTP, suspend_sig); |
| 2783 | signal(SIGCONT, SIG_DFL); |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2784 | //kill(my_pid, SIGCONT); // huh? why? we are already "continued"... |
| 2785 | errno = save_errno; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2786 | } |
| 2787 | |
| 2788 | //----- Come here when we get a Suspend signal ------------------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2789 | static void suspend_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2790 | { |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2791 | int save_errno = errno; |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2792 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2793 | cookmode(); // terminal to "cooked" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2794 | |
| 2795 | signal(SIGCONT, cont_sig); |
| 2796 | signal(SIGTSTP, SIG_DFL); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2797 | kill(my_pid, SIGTSTP); |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2798 | errno = save_errno; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2799 | } |
| 2800 | |
| 2801 | //----- Come here when we get a signal --------------------------- |
| 2802 | static void catch_sig(int sig) |
| 2803 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2804 | signal(SIGINT, catch_sig); |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 2805 | siglongjmp(restart, sig); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2806 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2807 | #endif /* FEATURE_VI_USE_SIGNALS */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2808 | |
Denys Vlasenko | 606291b | 2009-09-23 23:15:43 +0200 | [diff] [blame] | 2809 | static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2810 | { |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 2811 | struct pollfd pfd[1]; |
Denis Vlasenko | cd5c786 | 2007-05-17 16:37:22 +0000 | [diff] [blame] | 2812 | |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 2813 | if (hund != 0) |
| 2814 | fflush_all(); |
| 2815 | |
Denys Vlasenko | 606291b | 2009-09-23 23:15:43 +0200 | [diff] [blame] | 2816 | pfd[0].fd = STDIN_FILENO; |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 2817 | pfd[0].events = POLLIN; |
Denis Vlasenko | 5d61e71 | 2007-09-27 10:09:59 +0000 | [diff] [blame] | 2818 | return safe_poll(pfd, 1, hund*10) > 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2819 | } |
| 2820 | |
| 2821 | //----- IO Routines -------------------------------------------- |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2822 | static int readit(void) // read (maybe cursor) key from stdin |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2823 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2824 | int c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2825 | |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 2826 | fflush_all(); |
Denys Vlasenko | 0cc9b18 | 2017-05-02 20:39:02 +0200 | [diff] [blame] | 2827 | |
| 2828 | // Wait for input. TIMEOUT = -1 makes read_key wait even |
| 2829 | // on nonblocking stdin. |
| 2830 | // Note: read_key sets errno to 0 on success. |
| 2831 | again: |
| 2832 | c = read_key(STDIN_FILENO, readbuffer, /*timeout:*/ -1); |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 2833 | if (c == -1) { // EOF/error |
Denys Vlasenko | 0cc9b18 | 2017-05-02 20:39:02 +0200 | [diff] [blame] | 2834 | if (errno == EAGAIN) // paranoia |
| 2835 | goto again; |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 2836 | go_bottom_and_clear_to_eol(); |
| 2837 | cookmode(); // terminal to "cooked" |
| 2838 | bb_error_msg_and_die("can't read user input"); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2839 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2840 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2841 | } |
| 2842 | |
| 2843 | //----- IO Routines -------------------------------------------- |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2844 | static int get_one_char(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2845 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2846 | int c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2847 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2848 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2849 | if (!adding2q) { |
| 2850 | // we are not adding to the q. |
| 2851 | // but, we may be reading from a q |
| 2852 | if (ioq == 0) { |
| 2853 | // there is no current q, read from STDIN |
| 2854 | c = readit(); // get the users input |
| 2855 | } else { |
| 2856 | // there is a queue to get chars from first |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2857 | // careful with correct sign expansion! |
| 2858 | c = (unsigned char)*ioq++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2859 | if (c == '\0') { |
| 2860 | // the end of the q, read from STDIN |
| 2861 | free(ioq_start); |
| 2862 | ioq_start = ioq = 0; |
| 2863 | c = readit(); // get the users input |
| 2864 | } |
| 2865 | } |
| 2866 | } else { |
| 2867 | // adding STDIN chars to q |
| 2868 | c = readit(); // get the users input |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2869 | if (lmc_len >= MAX_INPUT_LEN - 1) { |
| 2870 | status_line_bold("last_modifying_cmd overrun"); |
| 2871 | } else { |
| 2872 | // add new char to q |
| 2873 | last_modifying_cmd[lmc_len++] = c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2874 | } |
| 2875 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2876 | #else |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2877 | c = readit(); // get the users input |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2878 | #endif /* FEATURE_VI_DOT_CMD */ |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2879 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2880 | } |
| 2881 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2882 | // Get input line (uses "status line" area) |
| 2883 | static char *get_input_line(const char *prompt) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2884 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2885 | // char [MAX_INPUT_LEN] |
| 2886 | #define buf get_input_line__buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2887 | |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2888 | int c; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2889 | int i; |
| 2890 | |
| 2891 | strcpy(buf, prompt); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2892 | last_status_cksum = 0; // force status update |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2893 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2894 | write1(prompt); // write out the :, /, or ? prompt |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2895 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2896 | i = strlen(buf); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2897 | while (i < MAX_INPUT_LEN) { |
| 2898 | c = get_one_char(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2899 | if (c == '\n' || c == '\r' || c == 27) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2900 | break; // this is end of input |
Paul Fox | f2de0b7 | 2005-09-13 22:20:37 +0000 | [diff] [blame] | 2901 | if (c == erase_char || c == 8 || c == 127) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 2902 | // user wants to erase prev char |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2903 | buf[--i] = '\0'; |
| 2904 | write1("\b \b"); // erase char on screen |
| 2905 | if (i <= 0) // user backs up before b-o-l, exit |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2906 | break; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 2907 | } else if (c > 0 && c < 256) { // exclude Unicode |
| 2908 | // (TODO: need to handle Unicode) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2909 | buf[i] = c; |
| 2910 | buf[++i] = '\0'; |
| 2911 | bb_putchar(c); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2912 | } |
| 2913 | } |
| 2914 | refresh(FALSE); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2915 | return buf; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2916 | #undef buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2917 | } |
| 2918 | |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2919 | // might reallocate text[]! |
Ron Yorston | e5213ce | 2014-11-30 20:39:25 +0000 | [diff] [blame] | 2920 | static int file_insert(const char *fn, char *p, int initial) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2921 | { |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2922 | int cnt = -1; |
| 2923 | int fd, size; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2924 | struct stat statbuf; |
| 2925 | |
Denys Vlasenko | 7f3a2a2 | 2015-10-08 11:24:44 +0200 | [diff] [blame] | 2926 | if (p < text) |
| 2927 | p = text; |
| 2928 | if (p > end) |
| 2929 | p = end; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2930 | |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2931 | fd = open(fn, O_RDONLY); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2932 | if (fd < 0) { |
Ron Yorston | e5213ce | 2014-11-30 20:39:25 +0000 | [diff] [blame] | 2933 | if (!initial) |
| 2934 | status_line_bold_errno(fn); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 2935 | return cnt; |
| 2936 | } |
| 2937 | |
| 2938 | /* Validate file */ |
| 2939 | if (fstat(fd, &statbuf) < 0) { |
| 2940 | status_line_bold_errno(fn); |
| 2941 | goto fi; |
| 2942 | } |
| 2943 | if (!S_ISREG(statbuf.st_mode)) { |
| 2944 | status_line_bold("'%s' is not a regular file", fn); |
| 2945 | goto fi; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2946 | } |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 2947 | size = (statbuf.st_size < INT_MAX ? (int)statbuf.st_size : INT_MAX); |
Denis Vlasenko | 4ae1e13 | 2008-11-19 13:25:14 +0000 | [diff] [blame] | 2948 | p += text_hole_make(p, size); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 2949 | cnt = full_read(fd, p, size); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2950 | if (cnt < 0) { |
Denys Vlasenko | 9e7c002 | 2013-03-15 02:17:29 +0100 | [diff] [blame] | 2951 | status_line_bold_errno(fn); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 2952 | p = text_hole_delete(p, p + size - 1, NO_UNDO); // un-do buffer insert |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2953 | } else if (cnt < size) { |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 2954 | // There was a partial read, shrink unused space |
| 2955 | p = text_hole_delete(p + cnt, p + size - 1, NO_UNDO); |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 2956 | status_line_bold("can't read '%s'", fn); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2957 | } |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 2958 | fi: |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2959 | close(fd); |
Denys Vlasenko | 32afd3a | 2014-04-05 22:57:46 +0200 | [diff] [blame] | 2960 | |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2961 | #if ENABLE_FEATURE_VI_READONLY |
Ron Yorston | e5213ce | 2014-11-30 20:39:25 +0000 | [diff] [blame] | 2962 | if (initial |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2963 | && ((access(fn, W_OK) < 0) || |
| 2964 | /* root will always have access() |
| 2965 | * so we check fileperms too */ |
| 2966 | !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) |
| 2967 | ) |
| 2968 | ) { |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 2969 | SET_READONLY_FILE(readonly_mode); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2970 | } |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2971 | #endif |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2972 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2973 | } |
| 2974 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2975 | static int file_write(char *fn, char *first, char *last) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2976 | { |
| 2977 | int fd, cnt, charcnt; |
| 2978 | |
| 2979 | if (fn == 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2980 | status_line_bold("No current filename"); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2981 | return -2; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2982 | } |
Denis Vlasenko | 8abae88 | 2008-05-03 11:35:59 +0000 | [diff] [blame] | 2983 | /* By popular request we do not open file with O_TRUNC, |
| 2984 | * but instead ftruncate() it _after_ successful write. |
| 2985 | * Might reduce amount of data lost on power fail etc. |
| 2986 | */ |
| 2987 | fd = open(fn, (O_WRONLY | O_CREAT), 0666); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2988 | if (fd < 0) |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2989 | return -1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2990 | cnt = last - first + 1; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2991 | charcnt = full_write(fd, first, cnt); |
Denis Vlasenko | 8abae88 | 2008-05-03 11:35:59 +0000 | [diff] [blame] | 2992 | ftruncate(fd, charcnt); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2993 | if (charcnt == cnt) { |
| 2994 | // good write |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 2995 | //modified_count = FALSE; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2996 | } else { |
| 2997 | charcnt = 0; |
| 2998 | } |
| 2999 | close(fd); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 3000 | return charcnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3001 | } |
| 3002 | |
| 3003 | //----- Terminal Drawing --------------------------------------- |
| 3004 | // The terminal is made up of 'rows' line of 'columns' columns. |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 3005 | // classically this would be 24 x 80. |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3006 | // screen coordinates |
| 3007 | // 0,0 ... 0,79 |
| 3008 | // 1,0 ... 1,79 |
| 3009 | // . ... . |
| 3010 | // . ... . |
| 3011 | // 22,0 ... 22,79 |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3012 | // 23,0 ... 23,79 <- status line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3013 | |
| 3014 | //----- Move the cursor to row x col (count from 0, not 1) ------- |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3015 | static void place_cursor(int row, int col) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3016 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3017 | char cm1[sizeof(ESC_SET_CURSOR_POS) + sizeof(int)*3 * 2]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3018 | |
| 3019 | if (row < 0) row = 0; |
| 3020 | if (row >= rows) row = rows - 1; |
| 3021 | if (col < 0) col = 0; |
| 3022 | if (col >= columns) col = columns - 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3023 | |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3024 | sprintf(cm1, ESC_SET_CURSOR_POS, row + 1, col + 1); |
| 3025 | write1(cm1); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3026 | } |
| 3027 | |
| 3028 | //----- Erase from cursor to end of line ----------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 3029 | static void clear_to_eol(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3030 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3031 | write1(ESC_CLEAR2EOL); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3032 | } |
| 3033 | |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 3034 | static void go_bottom_and_clear_to_eol(void) |
| 3035 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3036 | place_cursor(rows - 1, 0); |
| 3037 | clear_to_eol(); |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 3038 | } |
| 3039 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3040 | //----- Erase from cursor to end of screen ----------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 3041 | static void clear_to_eos(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3042 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3043 | write1(ESC_CLEAR2EOS); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3044 | } |
| 3045 | |
| 3046 | //----- Start standout mode ------------------------------------ |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3047 | static void standout_start(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3048 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3049 | write1(ESC_BOLD_TEXT); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3050 | } |
| 3051 | |
| 3052 | //----- End standout mode -------------------------------------- |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3053 | static void standout_end(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3054 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3055 | write1(ESC_NORM_TEXT); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3056 | } |
| 3057 | |
| 3058 | //----- Flash the screen -------------------------------------- |
| 3059 | static void flash(int h) |
| 3060 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3061 | standout_start(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3062 | redraw(TRUE); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3063 | mysleep(h); |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3064 | standout_end(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3065 | redraw(TRUE); |
| 3066 | } |
| 3067 | |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3068 | static void indicate_error(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3069 | { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3070 | #if ENABLE_FEATURE_VI_CRASHME |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3071 | if (crashme > 0) |
| 3072 | return; // generate a random command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3073 | #endif |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3074 | if (!err_method) { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3075 | write1(ESC_BELL); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3076 | } else { |
| 3077 | flash(10); |
| 3078 | } |
| 3079 | } |
| 3080 | |
| 3081 | //----- Screen[] Routines -------------------------------------- |
| 3082 | //----- Erase the Screen[] memory ------------------------------ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 3083 | static void screen_erase(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3084 | { |
| 3085 | memset(screen, ' ', screensize); // clear new screen |
| 3086 | } |
| 3087 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3088 | static int bufsum(char *buf, int count) |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3089 | { |
| 3090 | int sum = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3091 | char *e = buf + count; |
| 3092 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3093 | while (buf < e) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3094 | sum += (unsigned char) *buf++; |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3095 | return sum; |
| 3096 | } |
| 3097 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3098 | //----- Draw the status line at bottom of the screen ------------- |
| 3099 | static void show_status_line(void) |
| 3100 | { |
Paul Fox | c350485 | 2005-09-16 12:48:18 +0000 | [diff] [blame] | 3101 | int cnt = 0, cksum = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3102 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3103 | // either we already have an error or status message, or we |
| 3104 | // create one. |
| 3105 | if (!have_status_msg) { |
| 3106 | cnt = format_edit_status(); |
| 3107 | cksum = bufsum(status_buffer, cnt); |
| 3108 | } |
| 3109 | if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3110 | last_status_cksum = cksum; // remember if we have seen this line |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 3111 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3112 | write1(status_buffer); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3113 | if (have_status_msg) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3114 | if (((int)strlen(status_buffer) - (have_status_msg - 1)) > |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3115 | (columns - 1) ) { |
| 3116 | have_status_msg = 0; |
| 3117 | Hit_Return(); |
| 3118 | } |
| 3119 | have_status_msg = 0; |
| 3120 | } |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3121 | place_cursor(crow, ccol); // put cursor back in correct place |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3122 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 3123 | fflush_all(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3124 | } |
| 3125 | |
| 3126 | //----- format the status buffer, the bottom line of screen ------ |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3127 | // format status buffer, with STANDOUT mode |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3128 | static void status_line_bold(const char *format, ...) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3129 | { |
| 3130 | va_list args; |
| 3131 | |
| 3132 | va_start(args, format); |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3133 | strcpy(status_buffer, ESC_BOLD_TEXT); |
| 3134 | vsprintf(status_buffer + sizeof(ESC_BOLD_TEXT)-1, format, args); |
| 3135 | strcat(status_buffer, ESC_NORM_TEXT); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3136 | va_end(args); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3137 | |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3138 | have_status_msg = 1 + sizeof(ESC_BOLD_TEXT) + sizeof(ESC_NORM_TEXT) - 2; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3139 | } |
| 3140 | |
Denys Vlasenko | 9e7c002 | 2013-03-15 02:17:29 +0100 | [diff] [blame] | 3141 | static void status_line_bold_errno(const char *fn) |
| 3142 | { |
Denys Vlasenko | 6f97b30 | 2017-09-29 18:17:25 +0200 | [diff] [blame] | 3143 | status_line_bold("'%s' "STRERROR_FMT, fn STRERROR_ERRNO); |
Denys Vlasenko | 9e7c002 | 2013-03-15 02:17:29 +0100 | [diff] [blame] | 3144 | } |
| 3145 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3146 | // format status buffer |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3147 | static void status_line(const char *format, ...) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3148 | { |
| 3149 | va_list args; |
| 3150 | |
| 3151 | va_start(args, format); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3152 | vsprintf(status_buffer, format, args); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3153 | va_end(args); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3154 | |
| 3155 | have_status_msg = 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3156 | } |
| 3157 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3158 | // copy s to buf, convert unprintable |
| 3159 | static void print_literal(char *buf, const char *s) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3160 | { |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 3161 | char *d; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3162 | unsigned char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3163 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3164 | buf[0] = '\0'; |
| 3165 | if (!s[0]) |
| 3166 | s = "(NULL)"; |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 3167 | |
| 3168 | d = buf; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3169 | for (; *s; s++) { |
| 3170 | int c_is_no_print; |
| 3171 | |
| 3172 | c = *s; |
| 3173 | c_is_no_print = (c & 0x80) && !Isprint(c); |
| 3174 | if (c_is_no_print) { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3175 | strcpy(d, ESC_NORM_TEXT); |
| 3176 | d += sizeof(ESC_NORM_TEXT)-1; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3177 | c = '.'; |
| 3178 | } |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 3179 | if (c < ' ' || c == 0x7f) { |
| 3180 | *d++ = '^'; |
| 3181 | c |= '@'; /* 0x40 */ |
| 3182 | if (c == 0x7f) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3183 | c = '?'; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3184 | } |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 3185 | *d++ = c; |
| 3186 | *d = '\0'; |
| 3187 | if (c_is_no_print) { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3188 | strcpy(d, ESC_BOLD_TEXT); |
| 3189 | d += sizeof(ESC_BOLD_TEXT)-1; |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 3190 | } |
| 3191 | if (*s == '\n') { |
| 3192 | *d++ = '$'; |
| 3193 | *d = '\0'; |
| 3194 | } |
| 3195 | if (d - buf > MAX_INPUT_LEN - 10) // paranoia |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3196 | break; |
| 3197 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3198 | } |
| 3199 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3200 | static void not_implemented(const char *s) |
| 3201 | { |
| 3202 | char buf[MAX_INPUT_LEN]; |
| 3203 | |
| 3204 | print_literal(buf, s); |
| 3205 | status_line_bold("\'%s\' is not implemented", buf); |
| 3206 | } |
| 3207 | |
| 3208 | // show file status on status line |
| 3209 | static int format_edit_status(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3210 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 3211 | static const char cmd_mode_indicator[] ALIGN1 = "-IR-"; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3212 | |
| 3213 | #define tot format_edit_status__tot |
| 3214 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3215 | int cur, percent, ret, trunc_at; |
| 3216 | |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 3217 | // modified_count is now a counter rather than a flag. this |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3218 | // helps reduce the amount of line counting we need to do. |
| 3219 | // (this will cause a mis-reporting of modified status |
| 3220 | // once every MAXINT editing operations.) |
| 3221 | |
| 3222 | // it would be nice to do a similar optimization here -- if |
| 3223 | // we haven't done a motion that could have changed which line |
| 3224 | // 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] | 3225 | cur = count_lines(text, dot); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3226 | |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 3227 | // count_lines() is expensive. |
| 3228 | // Call it only if something was changed since last time |
| 3229 | // we were here: |
| 3230 | if (modified_count != last_modified_count) { |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3231 | tot = cur + count_lines(dot, end - 1) - 1; |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 3232 | last_modified_count = modified_count; |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3233 | } |
| 3234 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3235 | // current line percent |
| 3236 | // ------------- ~~ ---------- |
| 3237 | // total lines 100 |
| 3238 | if (tot > 0) { |
| 3239 | percent = (100 * cur) / tot; |
| 3240 | } else { |
| 3241 | cur = tot = 0; |
| 3242 | percent = 100; |
| 3243 | } |
Eric Andersen | 0ef24c6 | 2005-07-18 10:32:59 +0000 | [diff] [blame] | 3244 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3245 | trunc_at = columns < STATUS_BUFFER_LEN-1 ? |
| 3246 | columns : STATUS_BUFFER_LEN-1; |
| 3247 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3248 | ret = snprintf(status_buffer, trunc_at+1, |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3249 | #if ENABLE_FEATURE_VI_READONLY |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3250 | "%c %s%s%s %d/%d %d%%", |
| 3251 | #else |
| 3252 | "%c %s%s %d/%d %d%%", |
| 3253 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3254 | cmd_mode_indicator[cmd_mode & 3], |
| 3255 | (current_filename != NULL ? current_filename : "No file"), |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3256 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3257 | (readonly_mode ? " [Readonly]" : ""), |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3258 | #endif |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 3259 | (modified_count ? " [Modified]" : ""), |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3260 | cur, tot, percent); |
| 3261 | |
| 3262 | if (ret >= 0 && ret < trunc_at) |
| 3263 | return ret; /* it all fit */ |
| 3264 | |
| 3265 | return trunc_at; /* had to truncate */ |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3266 | #undef tot |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3267 | } |
| 3268 | |
| 3269 | //----- Force refresh of all Lines ----------------------------- |
| 3270 | static void redraw(int full_screen) |
| 3271 | { |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3272 | place_cursor(0, 0); |
| 3273 | clear_to_eos(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3274 | screen_erase(); // erase the internal screen buffer |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3275 | last_status_cksum = 0; // force status update |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3276 | refresh(full_screen); // this will redraw the entire display |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3277 | show_status_line(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3278 | } |
| 3279 | |
| 3280 | //----- Format a text[] line into a buffer --------------------- |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 3281 | static char* format_line(char *src /*, int li*/) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3282 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 3283 | unsigned char c; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3284 | int co; |
| 3285 | int ofs = offset; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3286 | char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2] |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3287 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3288 | c = '~'; // char in col 0 in non-existent lines is '~' |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 3289 | co = 0; |
| 3290 | while (co < columns + tabstop) { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 3291 | // have we gone past the end? |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3292 | if (src < end) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3293 | c = *src++; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3294 | if (c == '\n') |
| 3295 | break; |
| 3296 | if ((c & 0x80) && !Isprint(c)) { |
| 3297 | c = '.'; |
| 3298 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 3299 | if (c < ' ' || c == 0x7f) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3300 | if (c == '\t') { |
| 3301 | c = ' '; |
| 3302 | // co % 8 != 7 |
| 3303 | while ((co % tabstop) != (tabstop - 1)) { |
| 3304 | dest[co++] = c; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3305 | } |
| 3306 | } else { |
| 3307 | dest[co++] = '^'; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3308 | if (c == 0x7f) |
| 3309 | c = '?'; |
| 3310 | else |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3311 | c += '@'; // Ctrl-X -> 'X' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3312 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3313 | } |
| 3314 | } |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 3315 | dest[co++] = c; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3316 | // discard scrolled-off-to-the-left portion, |
| 3317 | // in tabstop-sized pieces |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3318 | if (ofs >= tabstop && co >= tabstop) { |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 3319 | memmove(dest, dest + tabstop, co); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3320 | co -= tabstop; |
| 3321 | ofs -= tabstop; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3322 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3323 | if (src >= end) |
| 3324 | break; |
| 3325 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3326 | // check "short line, gigantic offset" case |
| 3327 | if (co < ofs) |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 3328 | ofs = co; |
| 3329 | // discard last scrolled off part |
| 3330 | co -= ofs; |
| 3331 | dest += ofs; |
| 3332 | // fill the rest with spaces |
| 3333 | if (co < columns) |
| 3334 | memset(&dest[co], ' ', columns - co); |
| 3335 | return dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3336 | } |
| 3337 | |
| 3338 | //----- Refresh the changed screen lines ----------------------- |
| 3339 | // Copy the source line from text[] into the buffer and note |
| 3340 | // if the current screenline is different from the new buffer. |
| 3341 | // If they differ then that line needs redrawing on the terminal. |
| 3342 | // |
| 3343 | static void refresh(int full_screen) |
| 3344 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3345 | #define old_offset refresh__old_offset |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3346 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3347 | int li, changed; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3348 | char *tp, *sp; // pointer into text[] and screen[] |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3349 | |
Denys Vlasenko | c5fb0ad | 2010-07-21 12:39:42 +0200 | [diff] [blame] | 3350 | if (ENABLE_FEATURE_VI_WIN_RESIZE IF_FEATURE_VI_ASK_TERMINAL(&& !G.get_rowcol_error) ) { |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 3351 | unsigned c = columns, r = rows; |
Denys Vlasenko | 2bb651a | 2010-04-16 20:55:52 -0700 | [diff] [blame] | 3352 | query_screen_dimensions(); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3353 | full_screen |= (c - columns) | (r - rows); |
| 3354 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3355 | sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot") |
| 3356 | tp = screenbegin; // index into text[] of top line |
| 3357 | |
| 3358 | // compare text[] to screen[] and mark screen[] lines that need updating |
| 3359 | for (li = 0; li < rows - 1; li++) { |
| 3360 | int cs, ce; // column start & end |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 3361 | char *out_buf; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3362 | // format current text line |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 3363 | out_buf = format_line(tp /*, li*/); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3364 | |
| 3365 | // skip to the end of the current text[] line |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 3366 | if (tp < end) { |
| 3367 | char *t = memchr(tp, '\n', end - tp); |
| 3368 | if (!t) t = end - 1; |
| 3369 | tp = t + 1; |
| 3370 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3371 | |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 3372 | // see if there are any changes between virtual screen and out_buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3373 | changed = FALSE; // assume no change |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3374 | cs = 0; |
| 3375 | ce = columns - 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3376 | sp = &screen[li * columns]; // start of screen line |
| 3377 | if (full_screen) { |
| 3378 | // force re-draw of every single column from 0 - columns-1 |
| 3379 | goto re0; |
| 3380 | } |
| 3381 | // compare newly formatted buffer with virtual screen |
| 3382 | // look forward for first difference between buf and screen |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3383 | for (; cs <= ce; cs++) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3384 | if (out_buf[cs] != sp[cs]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3385 | changed = TRUE; // mark for redraw |
| 3386 | break; |
| 3387 | } |
| 3388 | } |
| 3389 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3390 | // look backward for last difference between out_buf and screen |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3391 | for (; ce >= cs; ce--) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3392 | if (out_buf[ce] != sp[ce]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3393 | changed = TRUE; // mark for redraw |
| 3394 | break; |
| 3395 | } |
| 3396 | } |
| 3397 | // now, cs is index of first diff, and ce is index of last diff |
| 3398 | |
| 3399 | // if horz offset has changed, force a redraw |
| 3400 | if (offset != old_offset) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3401 | re0: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3402 | changed = TRUE; |
| 3403 | } |
| 3404 | |
| 3405 | // make a sanity check of columns indexes |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3406 | if (cs < 0) cs = 0; |
| 3407 | if (ce > columns - 1) ce = columns - 1; |
| 3408 | if (cs > ce) { cs = 0; ce = columns - 1; } |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 3409 | // is there a change between virtual screen and out_buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3410 | if (changed) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3411 | // copy changed part of buffer to virtual screen |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3412 | memcpy(sp+cs, out_buf+cs, ce-cs+1); |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3413 | place_cursor(li, cs); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3414 | // write line out to terminal |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3415 | fwrite(&sp[cs], ce - cs + 1, 1, stdout); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3416 | } |
| 3417 | } |
| 3418 | |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 3419 | place_cursor(crow, ccol); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3420 | |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3421 | old_offset = offset; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3422 | #undef old_offset |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 3423 | } |
| 3424 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3425 | //--------------------------------------------------------------------- |
| 3426 | //----- the Ascii Chart ----------------------------------------------- |
| 3427 | // |
| 3428 | // 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel |
| 3429 | // 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si |
| 3430 | // 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb |
| 3431 | // 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us |
| 3432 | // 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 ' |
| 3433 | // 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f / |
| 3434 | // 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7 |
| 3435 | // 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ? |
| 3436 | // 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G |
| 3437 | // 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O |
| 3438 | // 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W |
| 3439 | // 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _ |
| 3440 | // 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g |
| 3441 | // 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o |
| 3442 | // 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w |
| 3443 | // 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del |
| 3444 | //--------------------------------------------------------------------- |
| 3445 | |
| 3446 | //----- Execute a Vi Command ----------------------------------- |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3447 | static void do_cmd(int c) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3448 | { |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3449 | char *p, *q, *save_dot; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3450 | char buf[12]; |
Denis Vlasenko | c3a9dc8 | 2008-10-29 00:58:04 +0000 | [diff] [blame] | 3451 | int dir; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3452 | int cnt, i, j; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3453 | int c1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3454 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 3455 | // c1 = c; // quiet the compiler |
| 3456 | // cnt = yf = 0; // quiet the compiler |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3457 | // p = q = save_dot = buf; // quiet the compiler |
| 3458 | memset(buf, '\0', sizeof(buf)); |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 3459 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3460 | show_status_line(); |
| 3461 | |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 3462 | /* if this is a cursor key, skip these checks */ |
| 3463 | switch (c) { |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3464 | case KEYCODE_UP: |
| 3465 | case KEYCODE_DOWN: |
| 3466 | case KEYCODE_LEFT: |
| 3467 | case KEYCODE_RIGHT: |
| 3468 | case KEYCODE_HOME: |
| 3469 | case KEYCODE_END: |
| 3470 | case KEYCODE_PAGEUP: |
| 3471 | case KEYCODE_PAGEDOWN: |
| 3472 | case KEYCODE_DELETE: |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 3473 | goto key_cmd_mode; |
| 3474 | } |
| 3475 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3476 | if (cmd_mode == 2) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3477 | // flip-flop Insert/Replace mode |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3478 | if (c == KEYCODE_INSERT) |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 3479 | goto dc_i; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3480 | // we are 'R'eplacing the current *dot with new char |
| 3481 | if (*dot == '\n') { |
| 3482 | // don't Replace past E-o-l |
| 3483 | cmd_mode = 1; // convert to insert |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3484 | undo_queue_commit(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3485 | } else { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3486 | if (1 <= c || Isprint(c)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3487 | if (c != 27) |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3488 | dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char |
| 3489 | dot = char_insert(dot, c, ALLOW_UNDO_CHAIN); // insert new char |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3490 | } |
| 3491 | goto dc1; |
| 3492 | } |
| 3493 | } |
| 3494 | if (cmd_mode == 1) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3495 | // hitting "Insert" twice means "R" replace mode |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3496 | if (c == KEYCODE_INSERT) goto dc5; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3497 | // insert the char c at "dot" |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3498 | if (1 <= c || Isprint(c)) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3499 | dot = char_insert(dot, c, ALLOW_UNDO_QUEUED); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3500 | } |
| 3501 | goto dc1; |
| 3502 | } |
| 3503 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3504 | key_cmd_mode: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3505 | switch (c) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3506 | //case 0x01: // soh |
| 3507 | //case 0x09: // ht |
| 3508 | //case 0x0b: // vt |
| 3509 | //case 0x0e: // so |
| 3510 | //case 0x0f: // si |
| 3511 | //case 0x10: // dle |
| 3512 | //case 0x11: // dc1 |
| 3513 | //case 0x13: // dc3 |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3514 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3515 | case 0x14: // dc4 ctrl-T |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3516 | crashme = (crashme == 0) ? 1 : 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3517 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3518 | #endif |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3519 | //case 0x16: // syn |
| 3520 | //case 0x17: // etb |
| 3521 | //case 0x18: // can |
| 3522 | //case 0x1c: // fs |
| 3523 | //case 0x1d: // gs |
| 3524 | //case 0x1e: // rs |
| 3525 | //case 0x1f: // us |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3526 | //case '!': // !- |
| 3527 | //case '#': // #- |
| 3528 | //case '&': // &- |
| 3529 | //case '(': // (- |
| 3530 | //case ')': // )- |
| 3531 | //case '*': // *- |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3532 | //case '=': // =- |
| 3533 | //case '@': // @- |
| 3534 | //case 'F': // F- |
| 3535 | //case 'K': // K- |
| 3536 | //case 'Q': // Q- |
| 3537 | //case 'S': // S- |
| 3538 | //case 'T': // T- |
| 3539 | //case 'V': // V- |
| 3540 | //case '[': // [- |
| 3541 | //case '\\': // \- |
| 3542 | //case ']': // ]- |
| 3543 | //case '_': // _- |
| 3544 | //case '`': // `- |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3545 | //case 'v': // v- |
Denys Vlasenko | b22bbff | 2009-07-04 16:50:43 +0200 | [diff] [blame] | 3546 | default: // unrecognized command |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3547 | buf[0] = c; |
| 3548 | buf[1] = '\0'; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3549 | not_implemented(buf); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3550 | end_cmd_q(); // stop adding to q |
| 3551 | case 0x00: // nul- ignore |
| 3552 | break; |
| 3553 | case 2: // ctrl-B scroll up full screen |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3554 | case KEYCODE_PAGEUP: // Cursor Key Page Up |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3555 | dot_scroll(rows - 2, -1); |
| 3556 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3557 | case 4: // ctrl-D scroll down half screen |
| 3558 | dot_scroll((rows - 2) / 2, 1); |
| 3559 | break; |
| 3560 | case 5: // ctrl-E scroll down one line |
| 3561 | dot_scroll(1, 1); |
| 3562 | break; |
| 3563 | case 6: // ctrl-F scroll down full screen |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3564 | case KEYCODE_PAGEDOWN: // Cursor Key Page Down |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3565 | dot_scroll(rows - 2, 1); |
| 3566 | break; |
| 3567 | case 7: // ctrl-G show current status |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3568 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3569 | break; |
| 3570 | case 'h': // h- move left |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3571 | case KEYCODE_LEFT: // cursor key Left |
Paul Fox | d13b90b | 2005-07-18 22:17:25 +0000 | [diff] [blame] | 3572 | case 8: // ctrl-H- move left (This may be ERASE char) |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 3573 | case 0x7f: // DEL- move left (This may be ERASE char) |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3574 | do { |
| 3575 | dot_left(); |
| 3576 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3577 | break; |
| 3578 | case 10: // Newline ^J |
| 3579 | case 'j': // j- goto next line, same col |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3580 | case KEYCODE_DOWN: // cursor key Down |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3581 | do { |
| 3582 | dot_next(); // go to next B-o-l |
| 3583 | // try stay in same col |
| 3584 | dot = move_to_col(dot, ccol + offset); |
| 3585 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3586 | break; |
| 3587 | case 12: // ctrl-L force redraw whole screen |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3588 | case 18: // ctrl-R force redraw |
Ron Yorston | 5527967 | 2016-04-26 15:23:38 +0100 | [diff] [blame] | 3589 | redraw(TRUE); // this will redraw the entire display |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3590 | break; |
| 3591 | case 13: // Carriage Return ^M |
| 3592 | case '+': // +- goto next line |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3593 | do { |
| 3594 | dot_next(); |
| 3595 | dot_skip_over_ws(); |
| 3596 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3597 | break; |
| 3598 | case 21: // ctrl-U scroll up half screen |
| 3599 | dot_scroll((rows - 2) / 2, -1); |
| 3600 | break; |
| 3601 | case 25: // ctrl-Y scroll up one line |
| 3602 | dot_scroll(1, -1); |
| 3603 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3604 | case 27: // esc |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3605 | if (cmd_mode == 0) |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3606 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3607 | cmd_mode = 0; // stop insrting |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3608 | undo_queue_commit(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3609 | end_cmd_q(); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3610 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3611 | break; |
| 3612 | case ' ': // move right |
| 3613 | case 'l': // move right |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3614 | case KEYCODE_RIGHT: // Cursor Key Right |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3615 | do { |
| 3616 | dot_right(); |
| 3617 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3618 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3619 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3620 | case '"': // "- name a register to use for Delete/Yank |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3621 | c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower() |
| 3622 | if ((unsigned)c1 <= 25) { // a-z? |
| 3623 | YDreg = c1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3624 | } else { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3625 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3626 | } |
| 3627 | break; |
| 3628 | case '\'': // '- goto a specific mark |
Denys Vlasenko | 61fcc8c | 2016-09-28 16:23:05 +0200 | [diff] [blame] | 3629 | c1 = (get_one_char() | 0x20); |
| 3630 | if ((unsigned)(c1 - 'a') <= 25) { // a-z? |
| 3631 | c1 = (c1 - 'a'); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3632 | // get the b-o-l |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3633 | q = mark[c1]; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3634 | if (text <= q && q < end) { |
| 3635 | dot = q; |
| 3636 | dot_begin(); // go to B-o-l |
| 3637 | dot_skip_over_ws(); |
| 3638 | } |
| 3639 | } else if (c1 == '\'') { // goto previous context |
| 3640 | dot = swap_context(dot); // swap current and previous context |
| 3641 | dot_begin(); // go to B-o-l |
| 3642 | dot_skip_over_ws(); |
| 3643 | } else { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3644 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3645 | } |
| 3646 | break; |
| 3647 | case 'm': // m- Mark a line |
| 3648 | // this is really stupid. If there are any inserts or deletes |
| 3649 | // between text[0] and dot then this mark will not point to the |
| 3650 | // correct location! It could be off by many lines! |
| 3651 | // Well..., at least its quick and dirty. |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3652 | c1 = (get_one_char() | 0x20) - 'a'; |
| 3653 | if ((unsigned)c1 <= 25) { // a-z? |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3654 | // remember the line |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3655 | mark[c1] = dot; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3656 | } else { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3657 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3658 | } |
| 3659 | break; |
| 3660 | case 'P': // P- Put register before |
| 3661 | case 'p': // p- put register after |
| 3662 | p = reg[YDreg]; |
Denis Vlasenko | 00d8417 | 2008-11-24 07:34:42 +0000 | [diff] [blame] | 3663 | if (p == NULL) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3664 | status_line_bold("Nothing in register %c", what_reg()); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3665 | break; |
| 3666 | } |
| 3667 | // are we putting whole lines or strings |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3668 | if (strchr(p, '\n') != NULL) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3669 | if (c == 'P') { |
| 3670 | dot_begin(); // putting lines- Put above |
| 3671 | } |
| 3672 | if (c == 'p') { |
| 3673 | // are we putting after very last line? |
| 3674 | if (end_line(dot) == (end - 1)) { |
| 3675 | dot = end; // force dot to end of text[] |
| 3676 | } else { |
| 3677 | dot_next(); // next line, then put before |
| 3678 | } |
| 3679 | } |
| 3680 | } else { |
| 3681 | if (c == 'p') |
| 3682 | dot_right(); // move to right, can move to NL |
| 3683 | } |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3684 | string_insert(dot, p, ALLOW_UNDO); // insert the string |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3685 | end_cmd_q(); // stop adding to q |
| 3686 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3687 | case 'U': // U- Undo; replace current line with original version |
Denys Vlasenko | 800a9a0 | 2012-01-31 14:10:26 +0100 | [diff] [blame] | 3688 | if (reg[Ureg] != NULL) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3689 | p = begin_line(dot); |
| 3690 | q = end_line(dot); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3691 | p = text_hole_delete(p, q, ALLOW_UNDO); // delete cur line |
| 3692 | p += string_insert(p, reg[Ureg], ALLOW_UNDO_CHAIN); // insert orig line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3693 | dot = p; |
| 3694 | dot_skip_over_ws(); |
| 3695 | } |
| 3696 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3697 | #endif /* FEATURE_VI_YANKMARK */ |
Andrew Fuller | 4d8ddb8 | 2015-05-03 18:18:25 +0200 | [diff] [blame] | 3698 | #if ENABLE_FEATURE_VI_UNDO |
| 3699 | case 'u': // u- undo last operation |
| 3700 | undo_pop(); |
| 3701 | break; |
| 3702 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3703 | case '$': // $- goto end of line |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3704 | case KEYCODE_END: // Cursor Key End |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3705 | for (;;) { |
| 3706 | dot = end_line(dot); |
Denys Vlasenko | 1fd7129 | 2011-11-28 04:55:48 +0100 | [diff] [blame] | 3707 | if (--cmdcnt <= 0) |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3708 | break; |
Denys Vlasenko | 35fdb1b | 2010-03-26 16:10:14 +0100 | [diff] [blame] | 3709 | dot_next(); |
Denys Vlasenko | 35fdb1b | 2010-03-26 16:10:14 +0100 | [diff] [blame] | 3710 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3711 | break; |
| 3712 | case '%': // %- find matching char of pair () [] {} |
| 3713 | for (q = dot; q < end && *q != '\n'; q++) { |
| 3714 | if (strchr("()[]{}", *q) != NULL) { |
| 3715 | // we found half of a pair |
| 3716 | p = find_pair(q, *q); |
| 3717 | if (p == NULL) { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3718 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3719 | } else { |
| 3720 | dot = p; |
| 3721 | } |
| 3722 | break; |
| 3723 | } |
| 3724 | } |
| 3725 | if (*q == '\n') |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 3726 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3727 | break; |
| 3728 | case 'f': // f- forward to a user specified char |
| 3729 | last_forward_char = get_one_char(); // get the search char |
| 3730 | // |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 3731 | // dont separate these two commands. 'f' depends on ';' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3732 | // |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3733 | //**** fall through to ... ';' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3734 | case ';': // ;- look at rest of line for last forward char |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3735 | do { |
| 3736 | if (last_forward_char == 0) |
| 3737 | break; |
| 3738 | q = dot + 1; |
| 3739 | while (q < end - 1 && *q != '\n' && *q != last_forward_char) { |
| 3740 | q++; |
| 3741 | } |
| 3742 | if (*q == last_forward_char) |
| 3743 | dot = q; |
| 3744 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3745 | break; |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3746 | case ',': // repeat latest 'f' in opposite direction |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3747 | if (last_forward_char == 0) |
| 3748 | break; |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3749 | do { |
| 3750 | q = dot - 1; |
| 3751 | while (q >= text && *q != '\n' && *q != last_forward_char) { |
| 3752 | q--; |
| 3753 | } |
| 3754 | if (q >= text && *q == last_forward_char) |
| 3755 | dot = q; |
| 3756 | } while (--cmdcnt > 0); |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3757 | break; |
| 3758 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3759 | case '-': // -- goto prev line |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3760 | do { |
| 3761 | dot_prev(); |
| 3762 | dot_skip_over_ws(); |
| 3763 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3764 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3765 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3766 | case '.': // .- repeat the last modifying command |
| 3767 | // Stuff the last_modifying_cmd back into stdin |
| 3768 | // and let it be re-executed. |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3769 | if (lmc_len > 0) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3770 | last_modifying_cmd[lmc_len] = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3771 | ioq = ioq_start = xstrdup(last_modifying_cmd); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3772 | } |
| 3773 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3774 | #endif |
| 3775 | #if ENABLE_FEATURE_VI_SEARCH |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3776 | case '?': // /- search for a pattern |
| 3777 | case '/': // /- search for a pattern |
| 3778 | buf[0] = c; |
| 3779 | buf[1] = '\0'; |
| 3780 | q = get_input_line(buf); // get input line- use "status line" |
Paul Fox | 4917c11 | 2008-03-05 16:44:02 +0000 | [diff] [blame] | 3781 | if (q[0] && !q[1]) { |
| 3782 | if (last_search_pattern[0]) |
Denis Vlasenko | c3a9dc8 | 2008-10-29 00:58:04 +0000 | [diff] [blame] | 3783 | last_search_pattern[0] = c; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3784 | goto dc3; // if no pat re-use old pat |
Paul Fox | 4917c11 | 2008-03-05 16:44:02 +0000 | [diff] [blame] | 3785 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3786 | if (q[0]) { // strlen(q) > 1: new pat- save it and find |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3787 | // there is a new pat |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 3788 | free(last_search_pattern); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3789 | last_search_pattern = xstrdup(q); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3790 | goto dc3; // now find the pattern |
| 3791 | } |
| 3792 | // user changed mind and erased the "/"- do nothing |
| 3793 | break; |
| 3794 | case 'N': // N- backward search for last pattern |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3795 | dir = BACK; // assume BACKWARD search |
| 3796 | p = dot - 1; |
| 3797 | if (last_search_pattern[0] == '?') { |
| 3798 | dir = FORWARD; |
| 3799 | p = dot + 1; |
| 3800 | } |
| 3801 | goto dc4; // now search for pattern |
| 3802 | break; |
| 3803 | case 'n': // n- repeat search for last pattern |
| 3804 | // search rest of text[] starting at next char |
| 3805 | // if search fails return orignal "p" not the "p+1" address |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3806 | do { |
| 3807 | const char *msg; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3808 | dc3: |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3809 | dir = FORWARD; // assume FORWARD search |
| 3810 | p = dot + 1; |
| 3811 | if (last_search_pattern[0] == '?') { |
| 3812 | dir = BACK; |
| 3813 | p = dot - 1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3814 | } |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3815 | dc4: |
| 3816 | q = char_search(p, last_search_pattern + 1, dir, FULL); |
| 3817 | if (q != NULL) { |
| 3818 | dot = q; // good search, update "dot" |
| 3819 | msg = NULL; |
| 3820 | goto dc2; |
| 3821 | } |
| 3822 | // no pattern found between "dot" and "end"- continue at top |
| 3823 | p = text; |
| 3824 | if (dir == BACK) { |
| 3825 | p = end - 1; |
| 3826 | } |
| 3827 | q = char_search(p, last_search_pattern + 1, dir, FULL); |
| 3828 | if (q != NULL) { // found something |
| 3829 | dot = q; // found new pattern- goto it |
| 3830 | msg = "search hit BOTTOM, continuing at TOP"; |
| 3831 | if (dir == BACK) { |
| 3832 | msg = "search hit TOP, continuing at BOTTOM"; |
| 3833 | } |
| 3834 | } else { |
| 3835 | msg = "Pattern not found"; |
| 3836 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3837 | dc2: |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3838 | if (msg) |
| 3839 | status_line_bold("%s", msg); |
| 3840 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3841 | break; |
| 3842 | case '{': // {- move backward paragraph |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3843 | q = char_search(dot, "\n\n", BACK, FULL); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3844 | if (q != NULL) { // found blank line |
| 3845 | dot = next_line(q); // move to next blank line |
| 3846 | } |
| 3847 | break; |
| 3848 | case '}': // }- move forward paragraph |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3849 | q = char_search(dot, "\n\n", FORWARD, FULL); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3850 | if (q != NULL) { // found blank line |
| 3851 | dot = next_line(q); // move to next blank line |
| 3852 | } |
| 3853 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3854 | #endif /* FEATURE_VI_SEARCH */ |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 3855 | case '0': // 0- goto beginning of line |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3856 | case '1': // 1- |
| 3857 | case '2': // 2- |
| 3858 | case '3': // 3- |
| 3859 | case '4': // 4- |
| 3860 | case '5': // 5- |
| 3861 | case '6': // 6- |
| 3862 | case '7': // 7- |
| 3863 | case '8': // 8- |
| 3864 | case '9': // 9- |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3865 | if (c == '0' && cmdcnt < 1) { |
| 3866 | dot_begin(); // this was a standalone zero |
| 3867 | } else { |
| 3868 | cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number |
| 3869 | } |
| 3870 | break; |
| 3871 | case ':': // :- the colon mode commands |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3872 | p = get_input_line(":"); // get input line- use "status line" |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3873 | colon(p); // execute the command |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3874 | break; |
| 3875 | case '<': // <- Left shift something |
| 3876 | case '>': // >- Right shift something |
| 3877 | cnt = count_lines(text, dot); // remember what line we are on |
| 3878 | c1 = get_one_char(); // get the type of thing to delete |
| 3879 | find_range(&p, &q, c1); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3880 | yank_delete(p, q, 1, YANKONLY, NO_UNDO); // save copy before change |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3881 | p = begin_line(p); |
| 3882 | q = end_line(q); |
| 3883 | i = count_lines(p, q); // # of lines we are shifting |
| 3884 | for ( ; i > 0; i--, p = next_line(p)) { |
| 3885 | if (c == '<') { |
| 3886 | // shift left- remove tab or 8 spaces |
| 3887 | if (*p == '\t') { |
| 3888 | // shrink buffer 1 char |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3889 | text_hole_delete(p, p, NO_UNDO); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3890 | } else if (*p == ' ') { |
| 3891 | // we should be calculating columns, not just SPACE |
| 3892 | for (j = 0; *p == ' ' && j < tabstop; j++) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3893 | text_hole_delete(p, p, NO_UNDO); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3894 | } |
| 3895 | } |
| 3896 | } else if (c == '>') { |
| 3897 | // shift right -- add tab or 8 spaces |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3898 | char_insert(p, '\t', ALLOW_UNDO); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3899 | } |
| 3900 | } |
| 3901 | dot = find_line(cnt); // what line were we on |
| 3902 | dot_skip_over_ws(); |
| 3903 | end_cmd_q(); // stop adding to q |
| 3904 | break; |
| 3905 | case 'A': // A- append at e-o-l |
| 3906 | dot_end(); // go to e-o-l |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3907 | //**** fall through to ... 'a' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3908 | case 'a': // a- append after current char |
| 3909 | if (*dot != '\n') |
| 3910 | dot++; |
| 3911 | goto dc_i; |
| 3912 | break; |
| 3913 | case 'B': // B- back a blank-delimited Word |
| 3914 | case 'E': // E- end of a blank-delimited word |
| 3915 | case 'W': // W- forward a blank-delimited word |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3916 | dir = FORWARD; |
| 3917 | if (c == 'B') |
| 3918 | dir = BACK; |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3919 | do { |
| 3920 | if (c == 'W' || isspace(dot[dir])) { |
| 3921 | dot = skip_thing(dot, 1, dir, S_TO_WS); |
| 3922 | dot = skip_thing(dot, 2, dir, S_OVER_WS); |
| 3923 | } |
| 3924 | if (c != 'W') |
| 3925 | dot = skip_thing(dot, 1, dir, S_BEFORE_WS); |
| 3926 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3927 | break; |
| 3928 | case 'C': // C- Change to e-o-l |
| 3929 | case 'D': // D- delete to e-o-l |
| 3930 | save_dot = dot; |
| 3931 | dot = dollar_line(dot); // move to before NL |
| 3932 | // copy text into a register and delete |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3933 | dot = yank_delete(save_dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete to e-o-l |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3934 | if (c == 'C') |
| 3935 | goto dc_i; // start inserting |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3936 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3937 | if (c == 'D') |
| 3938 | end_cmd_q(); // stop adding to q |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3939 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3940 | break; |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 3941 | case 'g': // 'gg' goto a line number (vim) (default: very first line) |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3942 | c1 = get_one_char(); |
| 3943 | if (c1 != 'g') { |
| 3944 | buf[0] = 'g'; |
Denys Vlasenko | de1996d | 2016-09-15 13:53:42 +0200 | [diff] [blame] | 3945 | // c1 < 0 if the key was special. Try "g<up-arrow>" |
| 3946 | // TODO: if Unicode? |
| 3947 | buf[1] = (c1 >= 0 ? c1 : '*'); |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3948 | buf[2] = '\0'; |
| 3949 | not_implemented(buf); |
| 3950 | break; |
| 3951 | } |
| 3952 | if (cmdcnt == 0) |
| 3953 | cmdcnt = 1; |
| 3954 | /* fall through */ |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3955 | case 'G': // G- goto to a line number (default= E-O-F) |
| 3956 | dot = end - 1; // assume E-O-F |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3957 | if (cmdcnt > 0) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3958 | dot = find_line(cmdcnt); // what line is #cmdcnt |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3959 | } |
| 3960 | dot_skip_over_ws(); |
| 3961 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3962 | case 'H': // H- goto top line on screen |
| 3963 | dot = screenbegin; |
| 3964 | if (cmdcnt > (rows - 1)) { |
| 3965 | cmdcnt = (rows - 1); |
| 3966 | } |
Denys Vlasenko | 35fdb1b | 2010-03-26 16:10:14 +0100 | [diff] [blame] | 3967 | if (--cmdcnt > 0) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3968 | do_cmd('+'); |
Denys Vlasenko | 35fdb1b | 2010-03-26 16:10:14 +0100 | [diff] [blame] | 3969 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3970 | dot_skip_over_ws(); |
| 3971 | break; |
| 3972 | case 'I': // I- insert before first non-blank |
| 3973 | dot_begin(); // 0 |
| 3974 | dot_skip_over_ws(); |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3975 | //**** fall through to ... 'i' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3976 | case 'i': // i- insert before current char |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 3977 | case KEYCODE_INSERT: // Cursor Key Insert |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3978 | dc_i: |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3979 | cmd_mode = 1; // start inserting |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3980 | undo_queue_commit(); // commit queue when cmd_mode changes |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3981 | break; |
| 3982 | case 'J': // J- join current and next lines together |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3983 | do { |
| 3984 | dot_end(); // move to NL |
| 3985 | if (dot < end - 1) { // make sure not last char in text[] |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3986 | #if ENABLE_FEATURE_VI_UNDO |
| 3987 | undo_push(dot, 1, UNDO_DEL); |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3988 | *dot++ = ' '; // replace NL with space |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3989 | undo_push((dot - 1), 1, UNDO_INS_CHAIN); |
| 3990 | #else |
| 3991 | *dot++ = ' '; |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 3992 | modified_count++; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3993 | #endif |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3994 | while (isblank(*dot)) { // delete leading WS |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 3995 | text_hole_delete(dot, dot, ALLOW_UNDO_CHAIN); |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3996 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3997 | } |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 3998 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3999 | end_cmd_q(); // stop adding to q |
| 4000 | break; |
| 4001 | case 'L': // L- goto bottom line on screen |
| 4002 | dot = end_screen(); |
| 4003 | if (cmdcnt > (rows - 1)) { |
| 4004 | cmdcnt = (rows - 1); |
| 4005 | } |
Denys Vlasenko | 35fdb1b | 2010-03-26 16:10:14 +0100 | [diff] [blame] | 4006 | if (--cmdcnt > 0) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4007 | do_cmd('-'); |
Denys Vlasenko | 35fdb1b | 2010-03-26 16:10:14 +0100 | [diff] [blame] | 4008 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4009 | dot_begin(); |
| 4010 | dot_skip_over_ws(); |
| 4011 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 4012 | case 'M': // M- goto middle line on screen |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 4013 | dot = screenbegin; |
| 4014 | for (cnt = 0; cnt < (rows-1) / 2; cnt++) |
| 4015 | dot = next_line(dot); |
| 4016 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4017 | case 'O': // O- open a empty line above |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 4018 | // 0i\n ESC -i |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4019 | p = begin_line(dot); |
| 4020 | if (p[-1] == '\n') { |
| 4021 | dot_prev(); |
| 4022 | case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..." |
| 4023 | dot_end(); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4024 | dot = char_insert(dot, '\n', ALLOW_UNDO); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4025 | } else { |
| 4026 | dot_begin(); // 0 |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4027 | dot = char_insert(dot, '\n', ALLOW_UNDO); // i\n ESC |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4028 | dot_prev(); // - |
| 4029 | } |
| 4030 | goto dc_i; |
| 4031 | break; |
| 4032 | case 'R': // R- continuous Replace char |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4033 | dc5: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4034 | cmd_mode = 2; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4035 | undo_queue_commit(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4036 | break; |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 4037 | case KEYCODE_DELETE: |
Denys Vlasenko | 49acc1a | 2015-03-12 21:15:34 +0100 | [diff] [blame] | 4038 | if (dot < end - 1) |
| 4039 | dot = yank_delete(dot, dot, 1, YANKDEL, ALLOW_UNDO); |
| 4040 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4041 | case 'X': // X- delete char before dot |
| 4042 | case 'x': // x- delete the current char |
| 4043 | case 's': // s- substitute the current char |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4044 | dir = 0; |
| 4045 | if (c == 'X') |
| 4046 | dir = -1; |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4047 | do { |
| 4048 | if (dot[dir] != '\n') { |
| 4049 | if (c == 'X') |
| 4050 | dot--; // delete prev char |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4051 | dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4052 | } |
| 4053 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4054 | end_cmd_q(); // stop adding to q |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4055 | if (c == 's') |
| 4056 | goto dc_i; // start inserting |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4057 | break; |
| 4058 | case 'Z': // Z- if modified, {write}; exit |
| 4059 | // ZZ means to save file (if necessary), then exit |
| 4060 | c1 = get_one_char(); |
| 4061 | if (c1 != 'Z') { |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 4062 | indicate_error(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4063 | break; |
| 4064 | } |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 4065 | if (modified_count) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 4066 | if (ENABLE_FEATURE_VI_READONLY && readonly_mode) { |
Denys Vlasenko | 778794d | 2013-01-22 10:13:52 +0100 | [diff] [blame] | 4067 | status_line_bold("'%s' is read only", current_filename); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 4068 | break; |
Paul Fox | f0305b7 | 2006-03-28 14:18:21 +0000 | [diff] [blame] | 4069 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 4070 | cnt = file_write(current_filename, text, end - 1); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 4071 | if (cnt < 0) { |
| 4072 | if (cnt == -1) |
Denys Vlasenko | 6f97b30 | 2017-09-29 18:17:25 +0200 | [diff] [blame] | 4073 | status_line_bold("Write error: "STRERROR_FMT STRERROR_ERRNO); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 4074 | } else if (cnt == (end - 1 - text + 1)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4075 | editing = 0; |
| 4076 | } |
| 4077 | } else { |
| 4078 | editing = 0; |
| 4079 | } |
| 4080 | break; |
| 4081 | case '^': // ^- move to first non-blank on line |
| 4082 | dot_begin(); |
| 4083 | dot_skip_over_ws(); |
| 4084 | break; |
| 4085 | case 'b': // b- back a word |
| 4086 | case 'e': // e- end of word |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4087 | dir = FORWARD; |
| 4088 | if (c == 'b') |
| 4089 | dir = BACK; |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4090 | do { |
| 4091 | if ((dot + dir) < text || (dot + dir) > end - 1) |
| 4092 | break; |
| 4093 | dot += dir; |
| 4094 | if (isspace(*dot)) { |
| 4095 | dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS); |
| 4096 | } |
| 4097 | if (isalnum(*dot) || *dot == '_') { |
| 4098 | dot = skip_thing(dot, 1, dir, S_END_ALNUM); |
| 4099 | } else if (ispunct(*dot)) { |
| 4100 | dot = skip_thing(dot, 1, dir, S_END_PUNCT); |
| 4101 | } |
| 4102 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4103 | break; |
| 4104 | case 'c': // c- change something |
| 4105 | case 'd': // d- delete something |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4106 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4107 | case 'y': // y- yank something |
| 4108 | case 'Y': // Y- Yank a line |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4109 | #endif |
Denis Vlasenko | d44c153 | 2008-10-14 12:59:42 +0000 | [diff] [blame] | 4110 | { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4111 | int yf, ml, whole = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4112 | yf = YANKDEL; // assume either "c" or "d" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4113 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4114 | if (c == 'y' || c == 'Y') |
| 4115 | yf = YANKONLY; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4116 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4117 | c1 = 'y'; |
| 4118 | if (c != 'Y') |
| 4119 | c1 = get_one_char(); // get the type of thing to delete |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4120 | // determine range, and whether it spans lines |
| 4121 | ml = find_range(&p, &q, c1); |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4122 | place_cursor(0, 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4123 | if (c1 == 27) { // ESC- user changed mind and wants out |
| 4124 | c = c1 = 27; // Escape- do nothing |
| 4125 | } else if (strchr("wW", c1)) { |
| 4126 | if (c == 'c') { |
| 4127 | // don't include trailing WS as part of word |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 4128 | while (isblank(*q)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4129 | if (q <= text || q[-1] == '\n') |
| 4130 | break; |
| 4131 | q--; |
| 4132 | } |
| 4133 | } |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4134 | dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4135 | } else if (strchr("^0bBeEft%$ lh\b\177", c1)) { |
| 4136 | // partial line copy text into a register and delete |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4137 | dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4138 | } else if (strchr("cdykjHL+-{}\r\n", c1)) { |
| 4139 | // whole line copy text into a register and delete |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4140 | dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete lines |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4141 | whole = 1; |
| 4142 | } else { |
| 4143 | // could not recognize object |
| 4144 | c = c1 = 27; // error- |
| 4145 | ml = 0; |
Denys Vlasenko | 05399fc | 2014-09-15 17:06:10 +0200 | [diff] [blame] | 4146 | indicate_error(); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4147 | } |
| 4148 | if (ml && whole) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 4149 | if (c == 'c') { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4150 | dot = char_insert(dot, '\n', ALLOW_UNDO_CHAIN); |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 4151 | // on the last line of file don't move to prev line |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 4152 | if (whole && dot != (end-1)) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 4153 | dot_prev(); |
| 4154 | } |
| 4155 | } else if (c == 'd') { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4156 | dot_begin(); |
| 4157 | dot_skip_over_ws(); |
| 4158 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4159 | } |
| 4160 | if (c1 != 27) { |
| 4161 | // if CHANGING, not deleting, start inserting after the delete |
| 4162 | if (c == 'c') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4163 | strcpy(buf, "Change"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4164 | goto dc_i; // start inserting |
| 4165 | } |
| 4166 | if (c == 'd') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4167 | strcpy(buf, "Delete"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4168 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4169 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4170 | if (c == 'y' || c == 'Y') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4171 | strcpy(buf, "Yank"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4172 | } |
| 4173 | p = reg[YDreg]; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4174 | q = p + strlen(p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4175 | for (cnt = 0; p <= q; p++) { |
| 4176 | if (*p == '\n') |
| 4177 | cnt++; |
| 4178 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4179 | status_line("%s %d lines (%d chars) using [%c]", |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4180 | buf, cnt, strlen(reg[YDreg]), what_reg()); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4181 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4182 | end_cmd_q(); // stop adding to q |
| 4183 | } |
| 4184 | break; |
Denis Vlasenko | d44c153 | 2008-10-14 12:59:42 +0000 | [diff] [blame] | 4185 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4186 | case 'k': // k- goto prev line, same col |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 4187 | case KEYCODE_UP: // cursor key Up |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4188 | do { |
| 4189 | dot_prev(); |
| 4190 | dot = move_to_col(dot, ccol + offset); // try stay in same col |
| 4191 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4192 | break; |
| 4193 | case 'r': // r- replace the current char with user input |
| 4194 | c1 = get_one_char(); // get the replacement char |
| 4195 | if (*dot != '\n') { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4196 | #if ENABLE_FEATURE_VI_UNDO |
| 4197 | undo_push(dot, 1, UNDO_DEL); |
| 4198 | *dot = c1; |
| 4199 | undo_push(dot, 1, UNDO_INS_CHAIN); |
| 4200 | #else |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4201 | *dot = c1; |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 4202 | modified_count++; |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4203 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4204 | } |
| 4205 | end_cmd_q(); // stop adding to q |
| 4206 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 4207 | case 't': // t- move to char prior to next x |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 4208 | last_forward_char = get_one_char(); |
| 4209 | do_cmd(';'); |
| 4210 | if (*dot == last_forward_char) |
| 4211 | dot_left(); |
Denis Vlasenko | 4c9e9c4 | 2008-10-20 08:59:03 +0000 | [diff] [blame] | 4212 | last_forward_char = 0; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 4213 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4214 | case 'w': // w- forward a word |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4215 | do { |
| 4216 | if (isalnum(*dot) || *dot == '_') { // we are on ALNUM |
| 4217 | dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM); |
| 4218 | } else if (ispunct(*dot)) { // we are on PUNCT |
| 4219 | dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT); |
| 4220 | } |
| 4221 | if (dot < end - 1) |
| 4222 | dot++; // move over word |
| 4223 | if (isspace(*dot)) { |
| 4224 | dot = skip_thing(dot, 2, FORWARD, S_OVER_WS); |
| 4225 | } |
| 4226 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4227 | break; |
| 4228 | case 'z': // z- |
| 4229 | c1 = get_one_char(); // get the replacement char |
| 4230 | cnt = 0; |
| 4231 | if (c1 == '.') |
| 4232 | cnt = (rows - 2) / 2; // put dot at center |
| 4233 | if (c1 == '-') |
| 4234 | cnt = rows - 2; // put dot at bottom |
| 4235 | screenbegin = begin_line(dot); // start dot at top |
| 4236 | dot_scroll(cnt, -1); |
| 4237 | break; |
| 4238 | case '|': // |- move to column "cmdcnt" |
| 4239 | dot = move_to_col(dot, cmdcnt - 1); // try to move to column |
| 4240 | break; |
| 4241 | case '~': // ~- flip the case of letters a-z -> A-Z |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4242 | do { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4243 | #if ENABLE_FEATURE_VI_UNDO |
| 4244 | if (islower(*dot)) { |
| 4245 | undo_push(dot, 1, UNDO_DEL); |
| 4246 | *dot = toupper(*dot); |
| 4247 | undo_push(dot, 1, UNDO_INS_CHAIN); |
| 4248 | } else if (isupper(*dot)) { |
| 4249 | undo_push(dot, 1, UNDO_DEL); |
| 4250 | *dot = tolower(*dot); |
| 4251 | undo_push(dot, 1, UNDO_INS_CHAIN); |
| 4252 | } |
| 4253 | #else |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4254 | if (islower(*dot)) { |
| 4255 | *dot = toupper(*dot); |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 4256 | modified_count++; |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4257 | } else if (isupper(*dot)) { |
| 4258 | *dot = tolower(*dot); |
Denys Vlasenko | e743086 | 2014-04-03 12:47:48 +0200 | [diff] [blame] | 4259 | modified_count++; |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4260 | } |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4261 | #endif |
Denys Vlasenko | 12e154f | 2011-09-09 12:35:49 +0200 | [diff] [blame] | 4262 | dot_right(); |
| 4263 | } while (--cmdcnt > 0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4264 | end_cmd_q(); // stop adding to q |
| 4265 | break; |
| 4266 | //----- The Cursor and Function Keys ----------------------------- |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 4267 | case KEYCODE_HOME: // Cursor Key Home |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4268 | dot_begin(); |
| 4269 | break; |
| 4270 | // The Fn keys could point to do_macro which could translate them |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 4271 | #if 0 |
| 4272 | case KEYCODE_FUN1: // Function Key F1 |
| 4273 | case KEYCODE_FUN2: // Function Key F2 |
| 4274 | case KEYCODE_FUN3: // Function Key F3 |
| 4275 | case KEYCODE_FUN4: // Function Key F4 |
| 4276 | case KEYCODE_FUN5: // Function Key F5 |
| 4277 | case KEYCODE_FUN6: // Function Key F6 |
| 4278 | case KEYCODE_FUN7: // Function Key F7 |
| 4279 | case KEYCODE_FUN8: // Function Key F8 |
| 4280 | case KEYCODE_FUN9: // Function Key F9 |
| 4281 | case KEYCODE_FUN10: // Function Key F10 |
| 4282 | case KEYCODE_FUN11: // Function Key F11 |
| 4283 | case KEYCODE_FUN12: // Function Key F12 |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4284 | break; |
Denis Vlasenko | 0112ff5 | 2008-10-25 23:23:00 +0000 | [diff] [blame] | 4285 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4286 | } |
| 4287 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4288 | dc1: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4289 | // if text[] just became empty, add back an empty line |
| 4290 | if (end == text) { |
Jody Bruchon | a8d6f9b | 2014-04-02 13:49:26 +0200 | [diff] [blame] | 4291 | char_insert(text, '\n', NO_UNDO); // start empty buf with dummy line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4292 | dot = text; |
| 4293 | } |
| 4294 | // it is OK for dot to exactly equal to end, otherwise check dot validity |
| 4295 | if (dot != end) { |
| 4296 | dot = bound_dot(dot); // make sure "dot" is valid |
| 4297 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4298 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4299 | check_context(c); // update the current context |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4300 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 4301 | |
| 4302 | if (!isdigit(c)) |
| 4303 | cmdcnt = 0; // cmd was not a number, reset cmdcnt |
| 4304 | cnt = dot - begin_line(dot); |
| 4305 | // Try to stay off of the Newline |
| 4306 | if (*dot == '\n' && cnt > 0 && cmd_mode == 0) |
| 4307 | dot--; |
| 4308 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4309 | |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 4310 | /* NB! the CRASHME code is unmaintained, and doesn't currently build */ |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4311 | #if ENABLE_FEATURE_VI_CRASHME |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4312 | static int totalcmds = 0; |
| 4313 | static int Mp = 85; // Movement command Probability |
| 4314 | static int Np = 90; // Non-movement command Probability |
| 4315 | static int Dp = 96; // Delete command Probability |
| 4316 | static int Ip = 97; // Insert command Probability |
| 4317 | static int Yp = 98; // Yank command Probability |
| 4318 | static int Pp = 99; // Put command Probability |
| 4319 | 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] | 4320 | static const char chars[20] = "\t012345 abcdABCD-=.$"; |
| 4321 | static const char *const words[20] = { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4322 | "this", "is", "a", "test", |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4323 | "broadcast", "the", "emergency", "of", |
| 4324 | "system", "quick", "brown", "fox", |
| 4325 | "jumped", "over", "lazy", "dogs", |
| 4326 | "back", "January", "Febuary", "March" |
| 4327 | }; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4328 | static const char *const lines[20] = { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4329 | "You should have received a copy of the GNU General Public License\n", |
| 4330 | "char c, cm, *cmd, *cmd1;\n", |
| 4331 | "generate a command by percentages\n", |
| 4332 | "Numbers may be typed as a prefix to some commands.\n", |
| 4333 | "Quit, discarding changes!\n", |
| 4334 | "Forced write, if permission originally not valid.\n", |
| 4335 | "In general, any ex or ed command (such as substitute or delete).\n", |
| 4336 | "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n", |
| 4337 | "Please get w/ me and I will go over it with you.\n", |
| 4338 | "The following is a list of scheduled, committed changes.\n", |
| 4339 | "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n", |
| 4340 | "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n", |
| 4341 | "Any question about transactions please contact Sterling Huxley.\n", |
| 4342 | "I will try to get back to you by Friday, December 31.\n", |
| 4343 | "This Change will be implemented on Friday.\n", |
| 4344 | "Let me know if you have problems accessing this;\n", |
| 4345 | "Sterling Huxley recently added you to the access list.\n", |
| 4346 | "Would you like to go to lunch?\n", |
| 4347 | "The last command will be automatically run.\n", |
| 4348 | "This is too much english for a computer geek.\n", |
| 4349 | }; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4350 | static char *multilines[20] = { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4351 | "You should have received a copy of the GNU General Public License\n", |
| 4352 | "char c, cm, *cmd, *cmd1;\n", |
| 4353 | "generate a command by percentages\n", |
| 4354 | "Numbers may be typed as a prefix to some commands.\n", |
| 4355 | "Quit, discarding changes!\n", |
| 4356 | "Forced write, if permission originally not valid.\n", |
| 4357 | "In general, any ex or ed command (such as substitute or delete).\n", |
| 4358 | "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n", |
| 4359 | "Please get w/ me and I will go over it with you.\n", |
| 4360 | "The following is a list of scheduled, committed changes.\n", |
| 4361 | "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n", |
| 4362 | "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n", |
| 4363 | "Any question about transactions please contact Sterling Huxley.\n", |
| 4364 | "I will try to get back to you by Friday, December 31.\n", |
| 4365 | "This Change will be implemented on Friday.\n", |
| 4366 | "Let me know if you have problems accessing this;\n", |
| 4367 | "Sterling Huxley recently added you to the access list.\n", |
| 4368 | "Would you like to go to lunch?\n", |
| 4369 | "The last command will be automatically run.\n", |
| 4370 | "This is too much english for a computer geek.\n", |
| 4371 | }; |
| 4372 | |
| 4373 | // create a random command to execute |
| 4374 | static void crash_dummy() |
| 4375 | { |
| 4376 | static int sleeptime; // how long to pause between commands |
| 4377 | char c, cm, *cmd, *cmd1; |
| 4378 | int i, cnt, thing, rbi, startrbi, percent; |
| 4379 | |
| 4380 | // "dot" movement commands |
| 4381 | cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL"; |
| 4382 | |
| 4383 | // is there already a command running? |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 4384 | if (readbuffer[0] > 0) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4385 | goto cd1; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4386 | cd0: |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 4387 | readbuffer[0] = 'X'; |
| 4388 | startrbi = rbi = 1; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4389 | sleeptime = 0; // how long to pause between commands |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4390 | memset(readbuffer, '\0', sizeof(readbuffer)); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4391 | // generate a command by percentages |
| 4392 | percent = (int) lrand48() % 100; // get a number from 0-99 |
| 4393 | if (percent < Mp) { // Movement commands |
| 4394 | // available commands |
| 4395 | cmd = cmd1; |
| 4396 | M++; |
| 4397 | } else if (percent < Np) { // non-movement commands |
| 4398 | cmd = "mz<>\'\""; // available commands |
| 4399 | N++; |
| 4400 | } else if (percent < Dp) { // Delete commands |
| 4401 | cmd = "dx"; // available commands |
| 4402 | D++; |
| 4403 | } else if (percent < Ip) { // Inset commands |
| 4404 | cmd = "iIaAsrJ"; // available commands |
| 4405 | I++; |
| 4406 | } else if (percent < Yp) { // Yank commands |
| 4407 | cmd = "yY"; // available commands |
| 4408 | Y++; |
| 4409 | } else if (percent < Pp) { // Put commands |
| 4410 | cmd = "pP"; // available commands |
| 4411 | P++; |
| 4412 | } else { |
| 4413 | // We do not know how to handle this command, try again |
| 4414 | U++; |
| 4415 | goto cd0; |
| 4416 | } |
| 4417 | // randomly pick one of the available cmds from "cmd[]" |
| 4418 | i = (int) lrand48() % strlen(cmd); |
| 4419 | cm = cmd[i]; |
| 4420 | if (strchr(":\024", cm)) |
| 4421 | goto cd0; // dont allow colon or ctrl-T commands |
| 4422 | readbuffer[rbi++] = cm; // put cmd into input buffer |
| 4423 | |
| 4424 | // now we have the command- |
| 4425 | // there are 1, 2, and multi char commands |
| 4426 | // find out which and generate the rest of command as necessary |
| 4427 | if (strchr("dmryz<>\'\"", cm)) { // 2-char commands |
| 4428 | cmd1 = " \n\r0$^-+wWeEbBhjklHL"; |
| 4429 | if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[] |
| 4430 | cmd1 = "abcdefghijklmnopqrstuvwxyz"; |
| 4431 | } |
| 4432 | thing = (int) lrand48() % strlen(cmd1); // pick a movement command |
| 4433 | c = cmd1[thing]; |
| 4434 | readbuffer[rbi++] = c; // add movement to input buffer |
| 4435 | } |
| 4436 | if (strchr("iIaAsc", cm)) { // multi-char commands |
| 4437 | if (cm == 'c') { |
| 4438 | // change some thing |
| 4439 | thing = (int) lrand48() % strlen(cmd1); // pick a movement command |
| 4440 | c = cmd1[thing]; |
| 4441 | readbuffer[rbi++] = c; // add movement to input buffer |
| 4442 | } |
| 4443 | thing = (int) lrand48() % 4; // what thing to insert |
| 4444 | cnt = (int) lrand48() % 10; // how many to insert |
| 4445 | for (i = 0; i < cnt; i++) { |
| 4446 | if (thing == 0) { // insert chars |
| 4447 | readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))]; |
| 4448 | } else if (thing == 1) { // insert words |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4449 | strcat(readbuffer, words[(int) lrand48() % 20]); |
| 4450 | strcat(readbuffer, " "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4451 | sleeptime = 0; // how fast to type |
| 4452 | } else if (thing == 2) { // insert lines |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4453 | strcat(readbuffer, lines[(int) lrand48() % 20]); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4454 | sleeptime = 0; // how fast to type |
| 4455 | } else { // insert multi-lines |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4456 | strcat(readbuffer, multilines[(int) lrand48() % 20]); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4457 | sleeptime = 0; // how fast to type |
| 4458 | } |
| 4459 | } |
Denys Vlasenko | 8187e01 | 2017-09-13 22:48:30 +0200 | [diff] [blame] | 4460 | strcat(readbuffer, ESC); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4461 | } |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 4462 | readbuffer[0] = strlen(readbuffer + 1); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4463 | cd1: |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4464 | totalcmds++; |
| 4465 | if (sleeptime > 0) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4466 | mysleep(sleeptime); // sleep 1/100 sec |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4467 | } |
| 4468 | |
| 4469 | // test to see if there are any errors |
| 4470 | static void crash_test() |
| 4471 | { |
| 4472 | static time_t oldtim; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4473 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4474 | time_t tim; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4475 | char d[2], msg[80]; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4476 | |
| 4477 | msg[0] = '\0'; |
| 4478 | if (end < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4479 | strcat(msg, "end<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4480 | } |
| 4481 | if (end > textend) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4482 | strcat(msg, "end>textend "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4483 | } |
| 4484 | if (dot < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4485 | strcat(msg, "dot<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4486 | } |
| 4487 | if (dot > end) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4488 | strcat(msg, "dot>end "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4489 | } |
| 4490 | if (screenbegin < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4491 | strcat(msg, "screenbegin<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4492 | } |
| 4493 | if (screenbegin > end - 1) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4494 | strcat(msg, "screenbegin>end-1 "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4495 | } |
| 4496 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4497 | if (msg[0]) { |
Glenn L McGrath | 7127b58 | 2002-12-03 21:48:15 +0000 | [diff] [blame] | 4498 | printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s", |
Denys Vlasenko | 04b5289 | 2012-06-11 13:51:38 +0200 | [diff] [blame] | 4499 | totalcmds, last_input_char, msg, ESC_BOLD_TEXT, ESC_NORM_TEXT); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 4500 | fflush_all(); |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 4501 | while (safe_read(STDIN_FILENO, d, 1) > 0) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4502 | if (d[0] == '\n' || d[0] == '\r') |
| 4503 | break; |
| 4504 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4505 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4506 | tim = time(NULL); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4507 | if (tim >= (oldtim + 3)) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4508 | sprintf(status_buffer, |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4509 | "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d", |
| 4510 | totalcmds, M, N, I, D, Y, P, U, end - text + 1); |
| 4511 | oldtim = tim; |
| 4512 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4513 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4514 | #endif |