blob: 1e5ef44fb51804612c4a8e40073745d74cd7ce2c [file] [log] [blame]
Rob Landleye5e1a102006-06-21 01:15:36 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3f980402001-04-04 17:31:15 +00002/*
3 * tiny vi.c: A small 'vi' clone
4 * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
5 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen3f980402001-04-04 17:31:15 +00007 */
8
Eric Andersen3f980402001-04-04 17:31:15 +00009/*
Eric Andersen3f980402001-04-04 17:31:15 +000010 * Things To Do:
11 * EXINIT
Eric Andersen1c0d3112001-04-16 15:46:44 +000012 * $HOME/.exrc and ./.exrc
Eric Andersen3f980402001-04-04 17:31:15 +000013 * add magic to search /foo.*bar
14 * add :help command
15 * :map macros
Eric Andersen3f980402001-04-04 17:31:15 +000016 * if mark[] values were line numbers rather than pointers
Denys Vlasenko60cb48c2013-01-14 15:57:44 +010017 * it would be easier to change the mark when add/delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +000018 * More intelligence in refresh()
19 * ":r !cmd" and "!cmd" to filter text through an external command
Eric Andersen1c0d3112001-04-16 15:46:44 +000020 * An "ex" line oriented mode- maybe using "cmdedit"
Eric Andersen3f980402001-04-04 17:31:15 +000021 */
22
Walter Harmsb9ba5802011-06-27 02:59:37 +020023//config:config VI
24//config: bool "vi"
25//config: default y
26//config: help
27//config: 'vi' is a text editor. More specifically, it is the One True
28//config: text editor <grin>. It does, however, have a rather steep
29//config: learning curve. If you are not already comfortable with 'vi'
30//config: you may wish to use something else.
31//config:
32//config:config FEATURE_VI_MAX_LEN
Denys Vlasenkof5604222017-01-10 14:58:54 +010033//config: int "Maximum screen width"
Walter Harmsb9ba5802011-06-27 02:59:37 +020034//config: range 256 16384
35//config: default 4096
36//config: depends on VI
37//config: help
38//config: Contrary to what you may think, this is not eating much.
39//config: Make it smaller than 4k only if you are very limited on memory.
40//config:
41//config:config FEATURE_VI_8BIT
Denys Vlasenkof5604222017-01-10 14:58:54 +010042//config: bool "Allow to display 8-bit chars (otherwise shows dots)"
Walter Harmsb9ba5802011-06-27 02:59:37 +020043//config: default n
44//config: depends on VI
45//config: help
46//config: If your terminal can display characters with high bit set,
47//config: you may want to enable this. Note: vi is not Unicode-capable.
48//config: If your terminal combines several 8-bit bytes into one character
49//config: (as in Unicode mode), this will not work properly.
50//config:
51//config:config FEATURE_VI_COLON
52//config: bool "Enable \":\" colon commands (no \"ex\" mode)"
53//config: default y
54//config: depends on VI
55//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +010056//config: Enable a limited set of colon commands. This does not
Walter Harmsb9ba5802011-06-27 02:59:37 +020057//config: provide an "ex" mode.
58//config:
59//config:config FEATURE_VI_YANKMARK
60//config: bool "Enable yank/put commands and mark cmds"
61//config: default y
62//config: depends on VI
63//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +010064//config: This will enable you to use yank and put, as well as mark.
Walter Harmsb9ba5802011-06-27 02:59:37 +020065//config:
66//config:config FEATURE_VI_SEARCH
67//config: bool "Enable search and replace cmds"
68//config: default y
69//config: depends on VI
70//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +010071//config: Select this if you wish to be able to do search and replace.
Walter Harmsb9ba5802011-06-27 02:59:37 +020072//config:
73//config:config FEATURE_VI_REGEX_SEARCH
74//config: bool "Enable regex in search and replace"
75//config: default n # Uses GNU regex, which may be unavailable. FIXME
76//config: depends on FEATURE_VI_SEARCH
77//config: help
78//config: Use extended regex search.
79//config:
80//config:config FEATURE_VI_USE_SIGNALS
81//config: bool "Catch signals"
82//config: default y
83//config: depends on VI
84//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +010085//config: Selecting this option will make vi signal aware. This will support
86//config: SIGWINCH to deal with Window Changes, catch ^Z and ^C and alarms.
Walter Harmsb9ba5802011-06-27 02:59:37 +020087//config:
88//config:config FEATURE_VI_DOT_CMD
89//config: bool "Remember previous cmd and \".\" cmd"
90//config: default y
91//config: depends on VI
92//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +010093//config: Make vi remember the last command and be able to repeat it.
Walter Harmsb9ba5802011-06-27 02:59:37 +020094//config:
95//config:config FEATURE_VI_READONLY
96//config: bool "Enable -R option and \"view\" mode"
97//config: default y
98//config: depends on VI
99//config: help
100//config: Enable the read-only command line option, which allows the user to
101//config: open a file in read-only mode.
102//config:
103//config:config FEATURE_VI_SETOPTS
Denys Vlasenkof5604222017-01-10 14:58:54 +0100104//config: bool "Enable settable options, ai ic showmatch"
Walter Harmsb9ba5802011-06-27 02:59:37 +0200105//config: default y
106//config: depends on VI
107//config: help
108//config: Enable the editor to set some (ai, ic, showmatch) options.
109//config:
110//config:config FEATURE_VI_SET
Denys Vlasenkof5604222017-01-10 14:58:54 +0100111//config: bool "Support :set"
Walter Harmsb9ba5802011-06-27 02:59:37 +0200112//config: default y
113//config: depends on VI
Walter Harmsb9ba5802011-06-27 02:59:37 +0200114//config:
115//config:config FEATURE_VI_WIN_RESIZE
116//config: bool "Handle window resize"
117//config: default y
118//config: depends on VI
119//config: help
Denys Vlasenkof5604222017-01-10 14:58:54 +0100120//config: Behave nicely with terminals that get resized.
Walter Harmsb9ba5802011-06-27 02:59:37 +0200121//config:
122//config:config FEATURE_VI_ASK_TERMINAL
123//config: bool "Use 'tell me cursor position' ESC sequence to measure window"
124//config: default y
125//config: depends on VI
126//config: help
127//config: If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
128//config: this option makes vi perform a last-ditch effort to find it:
Denys Vlasenko4e552a72011-07-25 15:18:20 +0200129//config: position cursor to 999,999 and ask terminal to report real
130//config: cursor position using "ESC [ 6 n" escape sequence, then read stdin.
Walter Harmsb9ba5802011-06-27 02:59:37 +0200131//config: This is not clean but helps a lot on serial lines and such.
Denys Vlasenkof5604222017-01-10 14:58:54 +0100132//config:
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200133//config:config FEATURE_VI_UNDO
Denys Vlasenkof5604222017-01-10 14:58:54 +0100134//config: bool "Support undo command \"u\""
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200135//config: default y
136//config: depends on VI
137//config: help
138//config: Support the 'u' command to undo insertion, deletion, and replacement
139//config: of text.
Denys Vlasenkof5604222017-01-10 14:58:54 +0100140//config:
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200141//config:config FEATURE_VI_UNDO_QUEUE
142//config: bool "Enable undo operation queuing"
143//config: default y
144//config: depends on FEATURE_VI_UNDO
145//config: help
146//config: The vi undo functions can use an intermediate queue to greatly lower
147//config: malloc() calls and overhead. When the maximum size of this queue is
148//config: reached, the contents of the queue are committed to the undo stack.
149//config: This increases the size of the undo code and allows some undo
150//config: operations (especially un-typing/backspacing) to be far more useful.
Denys Vlasenkof5604222017-01-10 14:58:54 +0100151//config:
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200152//config:config FEATURE_VI_UNDO_QUEUE_MAX
153//config: int "Maximum undo character queue size"
154//config: default 256
155//config: range 32 65536
156//config: depends on FEATURE_VI_UNDO_QUEUE
157//config: help
158//config: This option sets the number of bytes used at runtime for the queue.
159//config: Smaller values will create more undo objects and reduce the amount
160//config: of typed or backspaced characters that are grouped into one undo
161//config: operation; larger values increase the potential size of each undo
162//config: and will generally malloc() larger objects and less frequently.
163//config: Unless you want more (or less) frequent "undo points" while typing,
164//config: you should probably leave this unchanged.
Walter Harmsb9ba5802011-06-27 02:59:37 +0200165
166//applet:IF_VI(APPLET(vi, BB_DIR_BIN, BB_SUID_DROP))
167
168//kbuild:lib-$(CONFIG_VI) += vi.o
169
Pere Orga6a3e01d2011-04-01 22:56:30 +0200170//usage:#define vi_trivial_usage
171//usage: "[OPTIONS] [FILE]..."
172//usage:#define vi_full_usage "\n\n"
173//usage: "Edit FILE\n"
Pere Orga6a3e01d2011-04-01 22:56:30 +0200174//usage: IF_FEATURE_VI_COLON(
Denys Vlasenko605f2642012-06-11 01:53:33 +0200175//usage: "\n -c CMD Initial command to run ($EXINIT also available)"
Pere Orga6a3e01d2011-04-01 22:56:30 +0200176//usage: )
177//usage: IF_FEATURE_VI_READONLY(
178//usage: "\n -R Read-only"
179//usage: )
Denys Vlasenko605f2642012-06-11 01:53:33 +0200180//usage: "\n -H List available features"
Pere Orga6a3e01d2011-04-01 22:56:30 +0200181
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000182#include "libbb.h"
Denys Vlasenko066f3992011-07-03 03:19:43 +0200183/* Should be after libbb.h: on some systems regex.h needs sys/types.h: */
184#if ENABLE_FEATURE_VI_REGEX_SEARCH
185# include <regex.h>
186#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000187
Paul Fox35e9c5d2008-03-06 16:26:12 +0000188/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000189#define ENABLE_FEATURE_VI_CRASHME 0
190
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000191
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000192#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000193
194#if ENABLE_FEATURE_VI_8BIT
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100195//FIXME: this does not work properly for Unicode anyway
196# define Isprint(c) (isprint)(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000197#else
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100198# define Isprint(c) isprint_asciionly(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000199#endif
200
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000201#else
202
203/* 0x9b is Meta-ESC */
204#if ENABLE_FEATURE_VI_8BIT
Denys Vlasenko066f3992011-07-03 03:19:43 +0200205# define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000206#else
Denys Vlasenko066f3992011-07-03 03:19:43 +0200207# define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000208#endif
209
210#endif
211
212
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000213enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000214 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000215 // User input len. Need not be extra big.
216 // Lines in file being edited *can* be bigger than this.
217 MAX_INPUT_LEN = 128,
218 // Sanity limits. We have only one buffer of this size.
219 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
220 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000221};
Eric Andersen3f980402001-04-04 17:31:15 +0000222
Denys Vlasenko04b52892012-06-11 13:51:38 +0200223/* VT102 ESC sequences.
224 * See "Xterm Control Sequences"
225 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
226 */
227/* Inverse/Normal text */
228#define ESC_BOLD_TEXT "\033[7m"
229#define ESC_NORM_TEXT "\033[0m"
230/* Bell */
231#define ESC_BELL "\007"
232/* Clear-to-end-of-line */
233#define ESC_CLEAR2EOL "\033[K"
234/* Clear-to-end-of-screen.
235 * (We use default param here.
236 * Full sequence is "ESC [ <num> J",
237 * <num> is 0/1/2 = "erase below/above/all".)
238 */
239#define ESC_CLEAR2EOS "\033[J"
240/* Cursor to given coordinate (1,1: top left) */
241#define ESC_SET_CURSOR_POS "\033[%u;%uH"
242//UNUSED
243///* Cursor up and down */
244//#define ESC_CURSOR_UP "\033[A"
245//#define ESC_CURSOR_DOWN "\n"
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000246
Denis Vlasenkoded6ad32008-10-14 12:26:30 +0000247#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
248// cmds modifying text[]
249// vda: removed "aAiIs" as they switch us into insert mode
250// and remembering input for replay after them makes no sense
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200251static const char modifying_cmds[] ALIGN1 = "cCdDJoOpPrRxX<>~";
Denis Vlasenkoded6ad32008-10-14 12:26:30 +0000252#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000253
Rob Landleybc68cd12006-03-10 19:22:06 +0000254enum {
255 YANKONLY = FALSE,
256 YANKDEL = TRUE,
257 FORWARD = 1, // code depends on "1" for array index
258 BACK = -1, // code depends on "-1" for array index
259 LIMITED = 0, // how much of text[] in char_search
260 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000261
Rob Landleybc68cd12006-03-10 19:22:06 +0000262 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
263 S_TO_WS = 2, // used in skip_thing() for moving "dot"
264 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
265 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000266 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000267};
Eric Andersen3f980402001-04-04 17:31:15 +0000268
Denis Vlasenkob1759462008-06-20 20:20:54 +0000269
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000270/* vi.c expects chars to be unsigned. */
271/* busybox build system provides that, but it's better */
272/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000273
Denis Vlasenkob1759462008-06-20 20:20:54 +0000274struct globals {
275 /* many references - keep near the top of globals */
276 char *text, *end; // pointers to the user data in memory
277 char *dot; // where all the action takes place
278 int text_size; // size of the allocated buffer
279
280 /* the rest */
281 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000282#define VI_AUTOINDENT 1
283#define VI_SHOWMATCH 2
284#define VI_IGNORECASE 4
285#define VI_ERR_METHOD 8
286#define autoindent (vi_setops & VI_AUTOINDENT)
287#define showmatch (vi_setops & VI_SHOWMATCH )
288#define ignorecase (vi_setops & VI_IGNORECASE)
289/* indicate error with beep or flash */
290#define err_method (vi_setops & VI_ERR_METHOD)
291
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000292#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000293 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000294#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
295#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
296#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000297#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000298#define SET_READONLY_FILE(flags) ((void)0)
299#define SET_READONLY_MODE(flags) ((void)0)
300#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000301#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000302
Denis Vlasenkob1759462008-06-20 20:20:54 +0000303 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000304 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000305 smallint cmd_mode; // 0=command 1=insert 2=replace
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200306 int modified_count; // buffer contents changed if !0
307 int last_modified_count; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000308 int save_argc; // how many file names on cmd line
309 int cmdcnt; // repetition count
310 unsigned rows, columns; // the terminal screen is this size
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700311#if ENABLE_FEATURE_VI_ASK_TERMINAL
312 int get_rowcol_error;
313#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000314 int crow, ccol; // cursor is on Crow x Ccol
315 int offset; // chars scrolled off the screen to the left
316 int have_status_msg; // is default edit status needed?
317 // [don't make smallint!]
318 int last_status_cksum; // hash of current status line
319 char *current_filename;
320 char *screenbegin; // index into text[], of top line on the screen
321 char *screen; // pointer to the virtual screen buffer
322 int screensize; // and its size
323 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000324 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000325 char erase_char; // the users erase character
326 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000327
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000328#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000329 smallint adding2q; // are we currently adding user input to q
330 int lmc_len; // length of last_modifying_cmd
331 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000332#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000333#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000334 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000335#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000336#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000337 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000338#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000339
Denis Vlasenkob1759462008-06-20 20:20:54 +0000340 /* former statics */
341#if ENABLE_FEATURE_VI_YANKMARK
342 char *edit_file__cur_line;
343#endif
344 int refresh__old_offset;
345 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000346
Denis Vlasenkob1759462008-06-20 20:20:54 +0000347 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000348#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000349 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000350 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000351 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
352 char *context_start, *context_end;
353#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000354#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000355 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000356#endif
Denys Vlasenko01ccdd12017-01-11 16:17:59 +0100357 struct termios term_orig; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000358#if ENABLE_FEATURE_VI_COLON
359 char *initial_cmds[3]; // currently 2 entries, NULL terminated
360#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000361 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000362 // but CRASHME mode uses it as generated command buffer too
363#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000364 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000365#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000366 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000367#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000368#define STATUS_BUFFER_LEN 200
369 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
370#if ENABLE_FEATURE_VI_DOT_CMD
371 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
372#endif
373 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000374
375 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200376#if ENABLE_FEATURE_VI_UNDO
377// undo_push() operations
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200378#define UNDO_INS 0
379#define UNDO_DEL 1
380#define UNDO_INS_CHAIN 2
381#define UNDO_DEL_CHAIN 3
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200382// UNDO_*_QUEUED must be equal to UNDO_xxx ORed with UNDO_QUEUED_FLAG
383#define UNDO_QUEUED_FLAG 4
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200384#define UNDO_INS_QUEUED 4
385#define UNDO_DEL_QUEUED 5
386#define UNDO_USE_SPOS 32
387#define UNDO_EMPTY 64
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200388// Pass-through flags for functions that can be undone
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200389#define NO_UNDO 0
390#define ALLOW_UNDO 1
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200391#define ALLOW_UNDO_CHAIN 2
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200392# if ENABLE_FEATURE_VI_UNDO_QUEUE
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200393#define ALLOW_UNDO_QUEUED 3
394 char undo_queue_state;
395 int undo_q;
396 char *undo_queue_spos; // Start position of queued operation
397 char undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX];
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200398# else
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200399// If undo queuing disabled, don't invoke the missing queue logic
400#define ALLOW_UNDO_QUEUED 1
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200401# endif
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200402
403 struct undo_object {
404 struct undo_object *prev; // Linking back avoids list traversal (LIFO)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200405 int start; // Offset where the data should be restored/deleted
406 int length; // total data size
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200407 uint8_t u_type; // 0=deleted, 1=inserted, 2=swapped
408 char undo_text[1]; // text that was deleted (if deletion)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200409 } *undo_stack_tail;
410#endif /* ENABLE_FEATURE_VI_UNDO */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000411};
412#define G (*ptr_to_globals)
413#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000414#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000415#define end (G.end )
416#define dot (G.dot )
417#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000418
419#define vi_setops (G.vi_setops )
420#define editing (G.editing )
421#define cmd_mode (G.cmd_mode )
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200422#define modified_count (G.modified_count )
423#define last_modified_count (G.last_modified_count)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000424#define save_argc (G.save_argc )
425#define cmdcnt (G.cmdcnt )
426#define rows (G.rows )
427#define columns (G.columns )
428#define crow (G.crow )
429#define ccol (G.ccol )
430#define offset (G.offset )
431#define status_buffer (G.status_buffer )
432#define have_status_msg (G.have_status_msg )
433#define last_status_cksum (G.last_status_cksum )
434#define current_filename (G.current_filename )
435#define screen (G.screen )
436#define screensize (G.screensize )
437#define screenbegin (G.screenbegin )
438#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000439#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000440#define erase_char (G.erase_char )
441#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000442#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000443#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000444#else
445#define readonly_mode 0
446#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000447#define adding2q (G.adding2q )
448#define lmc_len (G.lmc_len )
449#define ioq (G.ioq )
450#define ioq_start (G.ioq_start )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000451#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000452#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000453
Denis Vlasenkob1759462008-06-20 20:20:54 +0000454#define edit_file__cur_line (G.edit_file__cur_line)
455#define refresh__old_offset (G.refresh__old_offset)
456#define format_edit_status__tot (G.format_edit_status__tot)
457
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000458#define YDreg (G.YDreg )
459#define Ureg (G.Ureg )
460#define mark (G.mark )
461#define context_start (G.context_start )
462#define context_end (G.context_end )
463#define restart (G.restart )
464#define term_orig (G.term_orig )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000465#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000466#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000467#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000468#define last_modifying_cmd (G.last_modifying_cmd )
469#define get_input_line__buf (G.get_input_line__buf)
470
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200471#if ENABLE_FEATURE_VI_UNDO
472#define undo_stack_tail (G.undo_stack_tail )
473# if ENABLE_FEATURE_VI_UNDO_QUEUE
474#define undo_queue_state (G.undo_queue_state)
475#define undo_q (G.undo_q )
476#define undo_queue (G.undo_queue )
477#define undo_queue_spos (G.undo_queue_spos )
478# endif
479#endif
480
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000481#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000482 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200483 last_modified_count = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000484 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000485 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000486} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000487
Denis Vlasenkob1759462008-06-20 20:20:54 +0000488
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000489static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000490static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000491static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000492static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
493static char *begin_line(char *); // return pointer to cur line B-o-l
494static char *end_line(char *); // return pointer to cur line E-o-l
495static char *prev_line(char *); // return pointer to prev line B-o-l
496static char *next_line(char *); // return pointer to next line B-o-l
497static char *end_screen(void); // get pointer to last char on screen
498static int count_lines(char *, char *); // count line from start to stop
Maninder Singh97c64912015-05-25 13:46:36 +0200499static char *find_line(int); // find beginning of line #li
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000500static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000501static void dot_left(void); // move dot left- dont leave line
502static void dot_right(void); // move dot right- dont leave line
503static void dot_begin(void); // move dot to B-o-l
504static void dot_end(void); // move dot to E-o-l
505static void dot_next(void); // move dot to next line B-o-l
506static void dot_prev(void); // move dot to prev line B-o-l
507static void dot_scroll(int, int); // move the screen up or down
508static void dot_skip_over_ws(void); // move dot pat WS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000509static char *bound_dot(char *); // make sure text[0] <= P < "end"
510static char *new_screen(int, int); // malloc virtual screen memory
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200511#if !ENABLE_FEATURE_VI_UNDO
512#define char_insert(a,b,c) char_insert(a,b)
513#endif
514static char *char_insert(char *, char, int); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000515// might reallocate text[]! use p += stupid_insert(p, ...),
516// and be careful to not use pointers into potentially freed text[]!
517static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000518static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000519static int st_test(char *, int, int, char *); // helper for skip_thing()
520static char *skip_thing(char *, int, int, int); // skip some object
521static char *find_pair(char *, char); // find matching pair () [] {}
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200522#if !ENABLE_FEATURE_VI_UNDO
523#define text_hole_delete(a,b,c) text_hole_delete(a,b)
524#endif
525static char *text_hole_delete(char *, char *, int); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000526// might reallocate text[]! use p += text_hole_make(p, ...),
527// and be careful to not use pointers into potentially freed text[]!
528static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200529#if !ENABLE_FEATURE_VI_UNDO
530#define yank_delete(a,b,c,d,e) yank_delete(a,b,c,d)
531#endif
532static char *yank_delete(char *, char *, int, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000533static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000534static void rawmode(void); // set "raw" mode on tty
535static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000536// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
537static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000538static int readit(void); // read (maybe cursor) key from stdin
539static int get_one_char(void); // read 1 char from stdin
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000540// file_insert might reallocate text[]!
541static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000542static int file_write(char *, char *, char *);
Denys Vlasenko04b52892012-06-11 13:51:38 +0200543static void place_cursor(int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000544static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000545static void clear_to_eol(void);
546static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000547static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000548static void standout_start(void); // send "start reverse video" sequence
549static void standout_end(void); // send "end reverse video" sequence
550static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000551static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000552static void status_line(const char *, ...); // print to status buf
553static void status_line_bold(const char *, ...);
Denys Vlasenko9e7c0022013-03-15 02:17:29 +0100554static void status_line_bold_errno(const char *fn);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000555static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000556static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000557static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000558static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000559static void refresh(int); // update the terminal from screen[]
560
Denys Vlasenko05399fc2014-09-15 17:06:10 +0200561static void indicate_error(void); // use flash or beep to indicate error
Paul Fox90372ed2005-10-09 14:26:26 +0000562static void Hit_Return(void);
563
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000564#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000565static char *char_search(char *, const char *, int, int); // search for pattern starting at p
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000566#endif
567#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000568static char *get_one_address(char *, int *); // get colon addr, if present
569static char *get_address(char *, int *, int *); // get two colon addrs, if present
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000570#endif
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200571static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000572#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000573static void winch_sig(int); // catch window size changes
574static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000575static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000576#endif
577#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000578static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000579static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000580#else
581#define end_cmd_q() ((void)0)
582#endif
583#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000584static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000585#endif
586#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000587// might reallocate text[]! use p += string_insert(p, ...),
588// and be careful to not use pointers into potentially freed text[]!
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200589# if !ENABLE_FEATURE_VI_UNDO
590#define string_insert(a,b,c) string_insert(a,b)
591# endif
592static uintptr_t string_insert(char *, const char *, int); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000593#endif
594#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000595static char *text_yank(char *, char *, int); // save copy of "p" into a register
596static char what_reg(void); // what is letter of current YDreg
597static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000598#endif
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200599#if ENABLE_FEATURE_VI_UNDO
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200600static void flush_undo_data(void);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200601static void undo_push(char *, unsigned int, unsigned char); // Push an operation on the undo stack
602static void undo_pop(void); // Undo the last operation
603# if ENABLE_FEATURE_VI_UNDO_QUEUE
604static void undo_queue_commit(void); // Flush any queued objects to the undo stack
605# else
606# define undo_queue_commit() ((void)0)
607# endif
608#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200609#define flush_undo_data() ((void)0)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200610#define undo_queue_commit() ((void)0)
611#endif
612
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000613#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000614static void crash_dummy();
615static void crash_test();
616static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000617#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000618
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000619static void write1(const char *out)
620{
621 fputs(out, stdout);
622}
623
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000624int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000625int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000626{
Eric Andersend402edf2001-04-04 19:29:48 +0000627 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000628
629 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000630
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200631#if ENABLE_FEATURE_VI_UNDO
632 /* undo_stack_tail = NULL; - already is */
633#if ENABLE_FEATURE_VI_UNDO_QUEUE
634 undo_queue_state = UNDO_EMPTY;
635 /* undo_q = 0; - already is */
636#endif
637#endif
638
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000639#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000640 my_pid = getpid();
641#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000642#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000643 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000644#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000645#ifdef NO_SUCH_APPLET_YET
646 /* If we aren't "vi", we are "view" */
647 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000648 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000649 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000650#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000651
Denys Vlasenko605f2642012-06-11 01:53:33 +0200652 // autoindent is not default in vim 7.3
653 vi_setops = /*VI_AUTOINDENT |*/ VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000654 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000655 // 2- process EXINIT variable from environment
656 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000657#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000658 {
659 char *p = getenv("EXINIT");
660 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000661 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000662 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000663#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000664 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000665 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000666#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000667 case 'C':
668 crashme = 1;
669 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000670#endif
671#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000672 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000673 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000674 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000675#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000676#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000677 case 'c': // cmd line vi command
678 if (*optarg)
Denys Vlasenko605f2642012-06-11 01:53:33 +0200679 initial_cmds[initial_cmds[0] != NULL] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000680 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000681#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000682 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000683 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000684 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000685 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000686 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000687 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000688 }
689 }
690
691 // The argv array can be used by the ":next" and ":rewind" commands
Dennis Groenenc0657e02012-01-31 14:12:38 +0100692 argv += optind;
693 argc -= optind;
Eric Andersen3f980402001-04-04 17:31:15 +0000694
695 //----- This is the main file handling loop --------------
Denys Vlasenko04b52892012-06-11 13:51:38 +0200696 save_argc = argc;
697 optind = 0;
Denys Vlasenkod3dff872012-06-11 13:53:26 +0200698 // "Save cursor, use alternate screen buffer, clear screen"
699 write1("\033[?1049h");
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700700 while (1) {
701 edit_file(argv[optind]); /* param might be NULL */
702 if (++optind >= argc)
703 break;
Eric Andersen3f980402001-04-04 17:31:15 +0000704 }
Denys Vlasenkod3dff872012-06-11 13:53:26 +0200705 // "Use normal screen buffer, restore cursor"
706 write1("\033[?1049l");
Eric Andersen3f980402001-04-04 17:31:15 +0000707 //-----------------------------------------------------------
708
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000709 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000710}
711
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000712/* read text from file or create an empty buf */
713/* will also update current_filename */
714static int init_text_buffer(char *fn)
715{
716 int rc;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000717
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200718 flush_undo_data();
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200719 modified_count = 0;
720 last_modified_count = -1;
721#if ENABLE_FEATURE_VI_YANKMARK
722 /* init the marks */
723 memset(mark, 0, sizeof(mark));
724#endif
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200725
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000726 /* allocate/reallocate text buffer */
727 free(text);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200728 text_size = 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000729 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000730
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000731 if (fn != current_filename) {
732 free(current_filename);
733 current_filename = xstrdup(fn);
734 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200735 rc = file_insert(fn, text, 1);
736 if (rc < 0) {
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200737 // file doesnt exist. Start empty buf with dummy line
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200738 char_insert(text, '\n', NO_UNDO);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000739 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000740 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000741}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000742
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700743#if ENABLE_FEATURE_VI_WIN_RESIZE
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200744static int query_screen_dimensions(void)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700745{
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200746 int err = get_terminal_width_height(STDIN_FILENO, &columns, &rows);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700747 if (rows > MAX_SCR_ROWS)
748 rows = MAX_SCR_ROWS;
749 if (columns > MAX_SCR_COLS)
750 columns = MAX_SCR_COLS;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200751 return err;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700752}
753#else
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200754# define query_screen_dimensions() (0)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700755#endif
756
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000757static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000758{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000759#if ENABLE_FEATURE_VI_YANKMARK
760#define cur_line edit_file__cur_line
761#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000762 int c;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000763#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000764 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000765#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000766
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000767 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000768 rawmode();
769 rows = 24;
770 columns = 80;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200771 IF_FEATURE_VI_ASK_TERMINAL(G.get_rowcol_error =) query_screen_dimensions();
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700772#if ENABLE_FEATURE_VI_ASK_TERMINAL
773 if (G.get_rowcol_error /* TODO? && no input on stdin */) {
774 uint64_t k;
775 write1("\033[999;999H" "\033[6n");
776 fflush_all();
777 k = read_key(STDIN_FILENO, readbuffer, /*timeout_ms:*/ 100);
778 if ((int32_t)k == KEYCODE_CURSOR_POS) {
779 uint32_t rc = (k >> 32);
780 columns = (rc & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200781 if (columns > MAX_SCR_COLS)
782 columns = MAX_SCR_COLS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700783 rows = ((rc >> 16) & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200784 if (rows > MAX_SCR_ROWS)
785 rows = MAX_SCR_ROWS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700786 }
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700787 }
788#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000789 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000790 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000791
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000792#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000793 YDreg = 26; // default Yank/Delete reg
794 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000795 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000796#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000797
Eric Andersen3f980402001-04-04 17:31:15 +0000798 last_forward_char = last_input_char = '\0';
799 crow = 0;
800 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000801
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000802#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700803 signal(SIGINT, catch_sig);
Eric Andersen3f980402001-04-04 17:31:15 +0000804 signal(SIGWINCH, winch_sig);
805 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000806 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000807 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000808 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000809 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000810#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000811
Eric Andersen3f980402001-04-04 17:31:15 +0000812 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
813 cmdcnt = 0;
814 tabstop = 8;
815 offset = 0; // no horizontal offset
816 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000817#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000818 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000819 ioq = ioq_start = NULL;
820 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000821 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000822#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000823
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000824#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000825 {
826 char *p, *q;
827 int n = 0;
828
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700829 while ((p = initial_cmds[n]) != NULL) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000830 do {
831 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000832 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000833 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000834 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000835 *p++ = '\0';
836 if (*q)
837 colon(q);
838 } while (p);
839 free(initial_cmds[n]);
840 initial_cmds[n] = NULL;
841 n++;
842 }
843 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000844#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000845 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000846 //------This is the main Vi cmd handling loop -----------------------
847 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000848#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000849 if (crashme > 0) {
850 if ((end - text) > 1) {
851 crash_dummy(); // generate a random command
852 } else {
853 crashme = 0;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200854 string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n", NO_UNDO); // insert the string
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000855 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000856 refresh(FALSE);
857 }
858 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000859#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000860 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000861#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000862 // save a copy of the current line- for the 'U" command
863 if (begin_line(dot) != cur_line) {
864 cur_line = begin_line(dot);
865 text_yank(begin_line(dot), end_line(dot), Ureg);
866 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000867#endif
868#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000869 // These are commands that change text[].
870 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000871 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000872 && cmd_mode == 0 // command mode
873 && c > '\0' // exclude NUL and non-ASCII chars
874 && c < 0x7f // (Unicode and such)
875 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000876 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000877 start_new_cmd_q(c);
878 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000879#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000880 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000881
Eric Andersen3f980402001-04-04 17:31:15 +0000882 // poll to see if there is input already waiting. if we are
883 // not able to display output fast enough to keep up, skip
884 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200885 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000886 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000887 refresh(FALSE);
888 show_status_line();
889 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000890#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000891 if (crashme > 0)
892 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000893#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000894 }
895 //-------------------------------------------------------------------
896
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000897 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000898 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000899#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000900}
901
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000902//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000903#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000904static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905{
906 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000907 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000908 IF_FEATURE_VI_YANKMARK(char c;)
909 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000910
911 *addr = -1; // assume no addr
912 if (*p == '.') { // the current line
913 p++;
914 q = begin_line(dot);
915 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000916 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000917#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000918 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000919 p++;
920 c = tolower(*p);
921 p++;
922 if (c >= 'a' && c <= 'z') {
923 // we have a mark
924 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000925 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000926 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000927 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000928 }
929 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000930 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000931#endif
932#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000933 else if (*p == '/') { // a search pattern
934 q = strchrnul(++p, '/');
935 pat = xstrndup(p, q - p); // save copy of pattern
936 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000937 if (*p == '/')
938 p++;
939 q = char_search(dot, pat, FORWARD, FULL);
940 if (q != NULL) {
941 *addr = count_lines(text, q);
942 }
943 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000944 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000945#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000946 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000947 p++;
948 q = begin_line(end - 1);
949 *addr = count_lines(text, q);
950 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000951 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000952 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000953 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200954 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000955 *addr = -1;
956 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000957 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000958}
959
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000960static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000961{
962 //----- get the address' i.e., 1,3 'a,'b -----
963 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000964 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000965 p++; // skip over leading spaces
966 if (*p == '%') { // alias for 1,$
967 p++;
968 *b = 1;
969 *e = count_lines(text, end-1);
970 goto ga0;
971 }
972 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000973 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000974 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000975 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000976 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000977 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000978 p++;
979 // get SECOND addr, if present
980 p = get_one_address(p, e);
981 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000982 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000983 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000984 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000985 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000986}
987
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000988#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000989static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000990 const char *short_opname, int opt)
991{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000992 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000993 int l = strlen(opname) - 1; /* opname have + ' ' */
994
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200995 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000996 if (strncasecmp(a, opname, l) == 0
997 || strncasecmp(a, short_opname, 2) == 0
998 ) {
999 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001000 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001001 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001002 vi_setops |= opt;
1003 }
1004}
1005#endif
1006
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001007#endif /* FEATURE_VI_COLON */
1008
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001009// buf must be no longer than MAX_INPUT_LEN!
1010static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001011{
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001012#if !ENABLE_FEATURE_VI_COLON
1013 /* Simple ":cmd" handler with minimal set of commands */
1014 char *p = buf;
1015 int cnt;
1016
1017 if (*p == ':')
1018 p++;
1019 cnt = strlen(p);
1020 if (cnt == 0)
1021 return;
1022 if (strncmp(p, "quit", cnt) == 0
1023 || strncmp(p, "q!", cnt) == 0
1024 ) {
1025 if (modified_count && p[1] != '!') {
1026 status_line_bold("No write since last change (:%s! overrides)", p);
1027 } else {
1028 editing = 0;
1029 }
1030 return;
1031 }
1032 if (strncmp(p, "write", cnt) == 0
1033 || strncmp(p, "wq", cnt) == 0
1034 || strncmp(p, "wn", cnt) == 0
1035 || (p[0] == 'x' && !p[1])
1036 ) {
1037 cnt = file_write(current_filename, text, end - 1);
1038 if (cnt < 0) {
1039 if (cnt == -1)
1040 status_line_bold("Write error: %s", strerror(errno));
1041 } else {
1042 modified_count = 0;
1043 last_modified_count = -1;
1044 status_line("'%s' %dL, %dC",
1045 current_filename,
1046 count_lines(text, end - 1), cnt
1047 );
1048 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
1049 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
1050 ) {
1051 editing = 0;
1052 }
1053 }
1054 return;
1055 }
1056 if (strncmp(p, "file", cnt) == 0) {
1057 last_status_cksum = 0; // force status update
1058 return;
1059 }
1060 if (sscanf(p, "%d", &cnt) > 0) {
1061 dot = find_line(cnt);
1062 dot_skip_over_ws();
1063 return;
1064 }
1065 not_implemented(p);
1066#else
1067
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001068 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001069 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001070 int i, l, li, b, e;
1071 int useforce;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001072
1073 // :3154 // if (-e line 3154) goto it else stay put
1074 // :4,33w! foo // write a portion of buffer to file "foo"
1075 // :w // write all of buffer to current file
1076 // :q // quit
1077 // :q! // quit- dont care about modified file
1078 // :'a,'z!sort -u // filter block through sort
1079 // :'f // goto mark "f"
1080 // :'fl // list literal the mark "f" line
1081 // :.r bar // read file "bar" into buffer before dot
1082 // :/123/,/abc/d // delete lines from "123" line to "abc" line
1083 // :/xyz/ // goto the "xyz" line
1084 // :s/find/replace/ // substitute pattern "find" with "replace"
1085 // :!<cmd> // run <cmd> then return
1086 //
Eric Andersen165e8cb2004-07-20 06:44:46 +00001087
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001088 if (!buf[0])
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001089 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001090 if (*buf == ':')
1091 buf++; // move past the ':'
1092
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001093 li = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001094 b = e = -1;
1095 q = text; // assume 1,$ for the range
1096 r = end - 1;
1097 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001098 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001099
1100 // look for optional address(es) :. :1 :1,9 :'q,'a :%
1101 buf = get_address(buf, &b, &e);
1102
1103 // remember orig command line
1104 orig_buf = buf;
1105
1106 // get the COMMAND into cmd[]
1107 buf1 = cmd;
1108 while (*buf != '\0') {
1109 if (isspace(*buf))
1110 break;
1111 *buf1++ = *buf++;
1112 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001113 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001114 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001115 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001116 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001117 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001118 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001119 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001120 if (buf1) {
1121 useforce = TRUE;
1122 *buf1 = '\0'; // get rid of !
1123 }
1124 if (b >= 0) {
1125 // if there is only one addr, then the addr
1126 // is the line number of the single line the
1127 // user wants. So, reset the end
1128 // pointer to point at end of the "b" line
1129 q = find_line(b); // what line is #b
1130 r = end_line(q);
1131 li = 1;
1132 }
1133 if (e >= 0) {
1134 // we were given two addrs. change the
1135 // end pointer to the addr given by user.
1136 r = find_line(e); // what line is #e
1137 r = end_line(r);
1138 li = e - b + 1;
1139 }
1140 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001141 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001142 if (i == 0) { // :123CR goto line #123
1143 if (b >= 0) {
1144 dot = find_line(b); // what line is #b
1145 dot_skip_over_ws();
1146 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +00001147 }
1148#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001149 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001150 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001151 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001152 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001153 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001154 retcode = system(orig_buf + 1); // run the cmd
1155 if (retcode)
1156 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001157 rawmode();
1158 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +00001159 }
1160#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001161 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001162 if (b < 0) { // no addr given- use defaults
1163 b = e = count_lines(text, dot);
1164 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001165 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001166 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001167 if (b < 0) { // no addr given- use defaults
1168 q = begin_line(dot); // assume .,. for the range
1169 r = end_line(dot);
1170 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001171 dot = yank_delete(q, r, 1, YANKDEL, ALLOW_UNDO); // save, then delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001172 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001173 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001174 int size;
1175
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001176 // don't edit, if the current file has been modified
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001177 if (modified_count && !useforce) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001178 status_line_bold("No write since last change (:%s! overrides)", cmd);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001179 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001180 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001181 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001182 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001183 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001184 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001185 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001186 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001187 } else {
1188 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001189 status_line_bold("No current filename");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001190 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001191 }
1192
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001193 size = init_text_buffer(fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001194
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001195#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001196 if (Ureg >= 0 && Ureg < 28) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001197 free(reg[Ureg]); // free orig line reg- for 'U'
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001198 reg[Ureg] = NULL;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001199 }
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001200 if (YDreg >= 0 && YDreg < 28) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001201 free(reg[YDreg]); // free default yank/delete register
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001202 reg[YDreg] = NULL;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001203 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001204#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001205 // how many lines in text[]?
1206 li = count_lines(text, end - 1);
Denys Vlasenko778794d2013-01-22 10:13:52 +01001207 status_line("'%s'%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001208 IF_FEATURE_VI_READONLY("%s")
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001209 " %dL, %dC",
1210 current_filename,
1211 (size < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001212 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001213 ((readonly_mode) ? " [Readonly]" : ""),
1214 )
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001215 li, (int)(end - text)
1216 );
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001217 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001218 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01001219 status_line_bold("No address allowed on this command");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001220 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001221 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001222 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001223 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001224 free(current_filename);
1225 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001226 } else {
1227 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +00001228 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001229 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001230 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001231 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001232 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001233 cookmode();
1234 show_help();
1235 rawmode();
1236 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001237 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001238 if (b < 0) { // no addr given- use defaults
1239 q = begin_line(dot); // assume .,. for the range
1240 r = end_line(dot);
1241 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001242 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001243 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001244 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001245 int c_is_no_print;
1246
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001247 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +00001248 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001249 if (c_is_no_print) {
1250 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001251 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +00001252 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001253 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001254 write1("$\r");
1255 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00001256 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001257 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001258 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001259 else
1260 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001261 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001262 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001263 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001264 standout_end();
1265 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001266 Hit_Return();
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001267 } else if (strncmp(cmd, "quit", i) == 0 // quit
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001268 || strncmp(cmd, "next", i) == 0 // edit next file
Dennis Groenenc0657e02012-01-31 14:12:38 +01001269 || strncmp(cmd, "prev", i) == 0 // edit previous file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001270 ) {
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001271 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001272 if (useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001273 if (*cmd == 'q') {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001274 // force end of argv list
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001275 optind = save_argc;
1276 }
1277 editing = 0;
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001278 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001279 }
1280 // don't exit if the file been modified
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001281 if (modified_count) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001282 status_line_bold("No write since last change (:%s! overrides)", cmd);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001283 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001284 }
1285 // are there other file to edit
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001286 n = save_argc - optind - 1;
1287 if (*cmd == 'q' && n > 0) {
1288 status_line_bold("%d more file(s) to edit", n);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001289 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001290 }
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001291 if (*cmd == 'n' && n <= 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001292 status_line_bold("No more files to edit");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001293 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001294 }
Dennis Groenenc0657e02012-01-31 14:12:38 +01001295 if (*cmd == 'p') {
1296 // are there previous files to edit
1297 if (optind < 1) {
1298 status_line_bold("No previous files to edit");
1299 goto ret;
1300 }
1301 optind -= 2;
1302 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001303 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001304 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001305 int size;
1306
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001307 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001308 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001309 status_line_bold("No filename given");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001310 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001311 }
1312 if (b < 0) { // no addr given- use defaults
1313 q = begin_line(dot); // assume "dot"
1314 }
1315 // read after current line- unless user said ":0r foo"
Ron Yorston70f43202014-11-30 20:39:53 +00001316 if (b != 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001317 q = next_line(q);
Ron Yorston70f43202014-11-30 20:39:53 +00001318 // read after last line
1319 if (q == end-1)
1320 ++q;
1321 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001322 { // dance around potentially-reallocated text[]
1323 uintptr_t ofs = q - text;
Ron Yorstone5213ce2014-11-30 20:39:25 +00001324 size = file_insert(fn, q, 0);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001325 q = text + ofs;
1326 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001327 if (size < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001328 goto ret; // nothing was inserted
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001329 // how many lines in text[]?
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001330 li = count_lines(q, q + size - 1);
Denys Vlasenko778794d2013-01-22 10:13:52 +01001331 status_line("'%s'"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001332 IF_FEATURE_VI_READONLY("%s")
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001333 " %dL, %dC",
1334 fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001335 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001336 li, size
1337 );
1338 if (size > 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001339 // if the insert is before "dot" then we need to update
1340 if (q <= dot)
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001341 dot += size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001342 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001343 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001344 if (modified_count && !useforce) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001345 status_line_bold("No write since last change (:%s! overrides)", cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001346 } else {
1347 // reset the filenames to edit
Dennis Groenenc0657e02012-01-31 14:12:38 +01001348 optind = -1; /* start from 0th file */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001349 editing = 0;
1350 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001351#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001352 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001353#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001354 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001355#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001356 i = 0; // offset into args
Denys Vlasenko605f2642012-06-11 01:53:33 +02001357 // only blank is regarded as args delimiter. What about tab '\t'?
Denis Vlasenkof9234132007-03-21 00:03:42 +00001358 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001359 // print out values of all options
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001360#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001361 status_line_bold(
1362 "%sautoindent "
1363 "%sflash "
1364 "%signorecase "
1365 "%sshowmatch "
1366 "tabstop=%u",
1367 autoindent ? "" : "no",
1368 err_method ? "" : "no",
1369 ignorecase ? "" : "no",
1370 showmatch ? "" : "no",
1371 tabstop
1372 );
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001373#endif
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001374 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001375 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001376#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001377 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001378 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001379 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001380 i = 2; // ":set noautoindent"
1381 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001382 setops(argp, "flash " , i, "fl", VI_ERR_METHOD);
Denis Vlasenkof9234132007-03-21 00:03:42 +00001383 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001384 setops(argp, "showmatch " , i, "sm", VI_SHOWMATCH );
1385 if (strncmp(argp + i, "tabstop=", 8) == 0) {
1386 int t = 0;
1387 sscanf(argp + i+8, "%u", &t);
1388 if (t > 0 && t <= MAX_TABSTOP)
1389 tabstop = t;
Denis Vlasenkof9234132007-03-21 00:03:42 +00001390 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001391 argp = skip_non_whitespace(argp);
1392 argp = skip_whitespace(argp);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001393 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001394#endif /* FEATURE_VI_SETOPTS */
1395#endif /* FEATURE_VI_SET */
1396#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001397 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001398 char *F, *R, *flags;
1399 size_t len_F, len_R;
1400 int gflag; // global replace flag
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001401#if ENABLE_FEATURE_VI_UNDO
1402 int dont_chain_first_item = ALLOW_UNDO;
1403#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001404
1405 // F points to the "find" pattern
1406 // R points to the "replace" pattern
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001407 // replace the cmd line delimiters "/" with NULs
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001408 c = orig_buf[1]; // what is the delimiter
1409 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001410 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001411 if (!R)
1412 goto colon_s_fail;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001413 len_F = R - F;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001414 *R++ = '\0'; // terminate "find"
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001415 flags = strchr(R, c);
1416 if (!flags)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001417 goto colon_s_fail;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001418 len_R = flags - R;
1419 *flags++ = '\0'; // terminate "replace"
1420 gflag = *flags;
1421
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001422 q = begin_line(q);
1423 if (b < 0) { // maybe :s/foo/bar/
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001424 q = begin_line(dot); // start with cur line
1425 b = count_lines(text, q); // cur line number
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001426 }
1427 if (e < 0)
1428 e = b; // maybe :.s/foo/bar/
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001429
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001430 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001431 char *ls = q; // orig line start
1432 char *found;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001433 vc4:
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001434 found = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
1435 if (found) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001436 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001437 // we found the "find" pattern - delete it
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001438 // For undo support, the first item should not be chained
1439 text_hole_delete(found, found + len_F - 1, dont_chain_first_item);
1440#if ENABLE_FEATURE_VI_UNDO
1441 dont_chain_first_item = ALLOW_UNDO_CHAIN;
1442#endif
1443 // insert the "replace" patern
1444 bias = string_insert(found, R, ALLOW_UNDO_CHAIN);
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001445 found += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001446 ls += bias;
1447 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001448 // check for "global" :s/foo/bar/g
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001449 if (gflag == 'g') {
1450 if ((found + len_R) < end_line(ls)) {
1451 q = found + len_R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001452 goto vc4; // don't let q move past cur line
1453 }
1454 }
1455 }
1456 q = next_line(ls);
1457 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001458#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001459 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001460 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001461 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1462 || strncmp(cmd, "wq", i) == 0
1463 || strncmp(cmd, "wn", i) == 0
1464 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001465 ) {
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001466 int size;
1467 //int forced = FALSE;
1468
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001469 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001470 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001471 fn = args;
1472 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001473#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001474 if (readonly_mode && !useforce) {
Denys Vlasenko778794d2013-01-22 10:13:52 +01001475 status_line_bold("'%s' is read only", fn);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001476 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001477 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001478#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001479 // how many lines in text[]?
1480 li = count_lines(q, r);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001481 size = r - q + 1;
1482 //if (useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001483 // if "fn" is not write-able, chmod u+w
1484 // sprintf(syscmd, "chmod u+w %s", fn);
1485 // system(syscmd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001486 // forced = TRUE;
1487 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001488 l = file_write(fn, q, r);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001489 //if (useforce && forced) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001490 // chmod u-w
1491 // sprintf(syscmd, "chmod u-w %s", fn);
1492 // system(syscmd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001493 // forced = FALSE;
1494 //}
Paul Fox61e45db2005-10-09 14:43:22 +00001495 if (l < 0) {
1496 if (l == -1)
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01001497 status_line_bold_errno(fn);
Paul Fox61e45db2005-10-09 14:43:22 +00001498 } else {
Denys Vlasenko778794d2013-01-22 10:13:52 +01001499 status_line("'%s' %dL, %dC", fn, li, l);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001500 if (q == text && r == end - 1 && l == size) {
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001501 modified_count = 0;
1502 last_modified_count = -1;
Paul Fox61e45db2005-10-09 14:43:22 +00001503 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001504 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n'
1505 || cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N'
1506 )
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001507 && l == size
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001508 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00001509 editing = 0;
1510 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001511 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001512#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001513 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001514 if (b < 0) { // no addr given- use defaults
1515 q = begin_line(dot); // assume .,. for the range
1516 r = end_line(dot);
1517 }
1518 text_yank(q, r, YDreg);
1519 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001520 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001521 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001522#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001523 } else {
1524 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001525 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001526 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001527 ret:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001528 dot = bound_dot(dot); // make sure "dot" is valid
1529 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001530#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001531 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001532 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001533#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001534#endif /* FEATURE_VI_COLON */
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001535}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001536
1537static void Hit_Return(void)
1538{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001539 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001540
Denis Vlasenkof882f082007-12-23 02:36:51 +00001541 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001542 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001543 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001544 while ((c = get_one_char()) != '\n' && c != '\r')
1545 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001546 redraw(TRUE); // force redraw all
1547}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001548
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001549static int next_tabstop(int col)
1550{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001551 return col + ((tabstop - 1) - (col % tabstop));
1552}
1553
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001554//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001555static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001556{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001557 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001558 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001559 int cnt, ro, co;
1560
1561 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001562
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001563 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001564 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001565 // how many lines do we have to move
1566 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001567 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001568 screenbegin = beg_cur;
1569 if (cnt > (rows - 1) / 2) {
1570 // we moved too many lines. put "dot" in middle of screen
1571 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1572 screenbegin = prev_line(screenbegin);
1573 }
1574 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001575 } else {
1576 char *end_scr; // begin and end of screen
1577 end_scr = end_screen(); // last char of screen
1578 if (beg_cur > end_scr) {
1579 // "d" is after bottom line on screen
1580 // how many lines do we have to move
1581 cnt = count_lines(end_scr, beg_cur);
1582 if (cnt > (rows - 1) / 2)
1583 goto sc1; // too many lines
1584 for (ro = 0; ro < cnt - 1; ro++) {
1585 // move screen begin the same amount
1586 screenbegin = next_line(screenbegin);
1587 // now, move the end of screen
1588 end_scr = next_line(end_scr);
1589 end_scr = end_line(end_scr);
1590 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001591 }
1592 }
1593 // "d" is on screen- find out which row
1594 tp = screenbegin;
1595 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1596 if (tp == beg_cur)
1597 break;
1598 tp = next_line(tp);
1599 }
1600
1601 // find out what col "d" is on
1602 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001603 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001604 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001605 break;
1606 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001607 // handle tabs like real vi
1608 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001609 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001610 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001611 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001612 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1613 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001614 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001615 co++;
1616 tp++;
1617 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001618
1619 // "co" is the column where "dot" is.
1620 // The screen has "columns" columns.
1621 // The currently displayed columns are 0+offset -- columns+ofset
1622 // |-------------------------------------------------------------|
1623 // ^ ^ ^
1624 // offset | |------- columns ----------------|
1625 //
1626 // If "co" is already in this range then we do not have to adjust offset
1627 // but, we do have to subtract the "offset" bias from "co".
1628 // If "co" is outside this range then we have to change "offset".
1629 // If the first char of a line is a tab the cursor will try to stay
1630 // in column 7, but we have to set offset to 0.
1631
1632 if (co < 0 + offset) {
1633 offset = co;
1634 }
1635 if (co >= columns + offset) {
1636 offset = co - columns + 1;
1637 }
1638 // if the first char of the line is a tab, and "dot" is sitting on it
1639 // force offset to 0.
1640 if (d == beg_cur && *d == '\t') {
1641 offset = 0;
1642 }
1643 co -= offset;
1644
1645 *row = ro;
1646 *col = co;
1647}
1648
1649//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001650static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001651{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001652 if (p > text) {
1653 p = memrchr(text, '\n', p - text);
1654 if (!p)
1655 return text;
1656 return p + 1;
1657 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001658 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001659}
1660
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001661static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001662{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001663 if (p < end - 1) {
1664 p = memchr(p, '\n', end - p - 1);
1665 if (!p)
1666 return end - 1;
1667 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001668 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001669}
1670
Denis Vlasenkof882f082007-12-23 02:36:51 +00001671static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001672{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001673 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001674 // Try to stay off of the Newline
1675 if (*p == '\n' && (p - begin_line(p)) > 0)
1676 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001677 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001678}
1679
Denis Vlasenkof882f082007-12-23 02:36:51 +00001680static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001681{
Maninder Singh97c64912015-05-25 13:46:36 +02001682 p = begin_line(p); // goto beginning of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001683 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001684 p--; // step to prev line
Maninder Singh97c64912015-05-25 13:46:36 +02001685 p = begin_line(p); // goto beginning of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001686 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001687}
1688
Denis Vlasenkof882f082007-12-23 02:36:51 +00001689static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001690{
1691 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001692 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001693 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001694 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001695}
1696
1697//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001698static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001699{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001700 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001701 int cnt;
1702
1703 // find new bottom line
1704 q = screenbegin;
1705 for (cnt = 0; cnt < rows - 2; cnt++)
1706 q = next_line(q);
1707 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001708 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001709}
1710
Denis Vlasenkof882f082007-12-23 02:36:51 +00001711// count line from start to stop
1712static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001713{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001714 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001715 int cnt;
1716
Denis Vlasenkof882f082007-12-23 02:36:51 +00001717 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001718 q = start;
1719 start = stop;
1720 stop = q;
1721 }
1722 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001723 stop = end_line(stop);
1724 while (start <= stop && start <= end - 1) {
1725 start = end_line(start);
1726 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001727 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001728 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001729 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001730 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001731}
1732
Maninder Singh97c64912015-05-25 13:46:36 +02001733static char *find_line(int li) // find beginning of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001734{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001735 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001736
1737 for (q = text; li > 1; li--) {
1738 q = next_line(q);
1739 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001740 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001741}
1742
1743//----- Dot Movement Routines ----------------------------------
1744static void dot_left(void)
1745{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001746 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001747 if (dot > text && dot[-1] != '\n')
1748 dot--;
1749}
1750
1751static void dot_right(void)
1752{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001753 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001754 if (dot < end - 1 && *dot != '\n')
1755 dot++;
1756}
1757
1758static void dot_begin(void)
1759{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001760 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001761 dot = begin_line(dot); // return pointer to first char cur line
1762}
1763
1764static void dot_end(void)
1765{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001766 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001767 dot = end_line(dot); // return pointer to last char cur line
1768}
1769
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001770static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771{
1772 int co;
1773
1774 p = begin_line(p);
1775 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001776 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001777 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001778 break;
1779 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001780 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001781 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001782 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001783 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001784 co++;
1785 p++;
1786 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001787 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001788}
1789
1790static void dot_next(void)
1791{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001792 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001793 dot = next_line(dot);
1794}
1795
1796static void dot_prev(void)
1797{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001798 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001799 dot = prev_line(dot);
1800}
1801
1802static void dot_scroll(int cnt, int dir)
1803{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001804 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001805
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001806 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001807 for (; cnt > 0; cnt--) {
1808 if (dir < 0) {
1809 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001810 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001811 screenbegin = prev_line(screenbegin);
1812 } else {
1813 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001814 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001815 screenbegin = next_line(screenbegin);
1816 }
1817 }
1818 // make sure "dot" stays on the screen so we dont scroll off
1819 if (dot < screenbegin)
1820 dot = screenbegin;
1821 q = end_screen(); // find new bottom line
1822 if (dot > q)
1823 dot = begin_line(q); // is dot is below bottom line?
1824 dot_skip_over_ws();
1825}
1826
1827static void dot_skip_over_ws(void)
1828{
1829 // skip WS
1830 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1831 dot++;
1832}
1833
Denis Vlasenkof882f082007-12-23 02:36:51 +00001834static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001835{
1836 if (p >= end && end > text) {
1837 p = end - 1;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02001838 indicate_error();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001839 }
1840 if (p < text) {
1841 p = text;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02001842 indicate_error();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001843 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001844 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001845}
1846
1847//----- Helper Utility Routines --------------------------------
1848
1849//----------------------------------------------------------------
1850//----- Char Routines --------------------------------------------
1851/* Chars that are part of a word-
1852 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1853 * Chars that are Not part of a word (stoppers)
1854 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1855 * Chars that are WhiteSpace
1856 * TAB NEWLINE VT FF RETURN SPACE
1857 * DO NOT COUNT NEWLINE AS WHITESPACE
1858 */
1859
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001860static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001861{
1862 int li;
1863
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001864 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001865 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001866 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001867 // initialize the new screen. assume this will be a empty file.
1868 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001869 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001870 for (li = 1; li < ro - 1; li++) {
1871 screen[(li * co) + 0] = '~';
1872 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001873 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001874}
1875
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001876#if ENABLE_FEATURE_VI_SEARCH
Walter Harmsb9ba5802011-06-27 02:59:37 +02001877
1878# if ENABLE_FEATURE_VI_REGEX_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001879
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001880// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001881static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001882{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001883 struct re_pattern_buffer preg;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001884 const char *err;
1885 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001886 int i;
Walter Harmsb9ba5802011-06-27 02:59:37 +02001887 int size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001888
1889 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001890 if (ignorecase)
1891 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED | RE_ICASE;
1892
1893 memset(&preg, 0, sizeof(preg));
1894 err = re_compile_pattern(pat, strlen(pat), &preg);
1895 if (err != NULL) {
1896 status_line_bold("bad search pattern '%s': %s", pat, err);
1897 return p;
1898 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001899
1900 // assume a LIMITED forward search
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001901 q = end - 1;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001902 if (dir == BACK)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001903 q = text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001904 // RANGE could be negative if we are searching backwards
1905 range = q - p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001906 q = p;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001907 size = range;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001908 if (range < 0) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001909 size = -size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001910 q = p - size;
1911 if (q < text)
1912 q = text;
1913 }
1914 // search for the compiled pattern, preg, in p[]
Denys Vlasenko264f3732013-04-21 15:51:41 +02001915 // range < 0: search backward
1916 // range > 0: search forward
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001917 // 0 < start < size
Denys Vlasenko264f3732013-04-21 15:51:41 +02001918 // re_search() < 0: not found or error
1919 // re_search() >= 0: index of found pattern
1920 // struct pattern char int int int struct reg
1921 // re_search(*pattern_buffer, *string, size, start, range, *regs)
1922 i = re_search(&preg, q, size, /*start:*/ 0, range, /*struct re_registers*:*/ NULL);
1923 regfree(&preg);
1924 if (i < 0)
1925 return NULL;
1926 if (dir == FORWARD)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001927 p = p + i;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001928 else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001929 p = p - i;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001930 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001931}
Walter Harmsb9ba5802011-06-27 02:59:37 +02001932
1933# else
1934
1935# if ENABLE_FEATURE_VI_SETOPTS
1936static int mycmp(const char *s1, const char *s2, int len)
1937{
1938 if (ignorecase) {
1939 return strncasecmp(s1, s2, len);
1940 }
1941 return strncmp(s1, s2, len);
1942}
1943# else
1944# define mycmp strncmp
1945# endif
1946
1947static char *char_search(char *p, const char *pat, int dir, int range)
1948{
1949 char *start, *stop;
1950 int len;
1951
1952 len = strlen(pat);
1953 if (dir == FORWARD) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001954 stop = end - 1; // assume range is p..end-1
Walter Harmsb9ba5802011-06-27 02:59:37 +02001955 if (range == LIMITED)
1956 stop = next_line(p); // range is to next line
1957 for (start = p; start < stop; start++) {
1958 if (mycmp(start, pat, len) == 0) {
1959 return start;
1960 }
1961 }
1962 } else if (dir == BACK) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001963 stop = text; // assume range is text..p
Walter Harmsb9ba5802011-06-27 02:59:37 +02001964 if (range == LIMITED)
1965 stop = prev_line(p); // range is to prev line
1966 for (start = p - len; start >= stop; start--) {
1967 if (mycmp(start, pat, len) == 0) {
1968 return start;
1969 }
1970 }
1971 }
1972 // pattern not found
1973 return NULL;
1974}
1975
1976# endif
1977
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001978#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001979
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001980static char *char_insert(char *p, char c, int undo) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001981{
1982 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001983 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001984 refresh(FALSE); // show the ^
1985 c = get_one_char();
1986 *p = c;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001987#if ENABLE_FEATURE_VI_UNDO
1988 switch (undo) {
1989 case ALLOW_UNDO:
1990 undo_push(p, 1, UNDO_INS);
1991 break;
1992 case ALLOW_UNDO_CHAIN:
1993 undo_push(p, 1, UNDO_INS_CHAIN);
1994 break;
1995# if ENABLE_FEATURE_VI_UNDO_QUEUE
1996 case ALLOW_UNDO_QUEUED:
1997 undo_push(p, 1, UNDO_INS_QUEUED);
1998 break;
1999# endif
2000 }
2001#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002002 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002003#endif /* ENABLE_FEATURE_VI_UNDO */
2004 p++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002005 } else if (c == 27) { // Is this an ESC?
2006 cmd_mode = 0;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002007 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002008 cmdcnt = 0;
2009 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00002010 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002011 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002012 p--;
2013 }
Paul Foxd13b90b2005-07-18 22:17:25 +00002014 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Denys Vlasenko49acc1a2015-03-12 21:15:34 +01002015 if (p > text) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002016 p--;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002017 p = text_hole_delete(p, p, ALLOW_UNDO_QUEUED); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002018 }
2019 } else {
2020 // insert a char into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002021 if (c == 13)
2022 c = '\n'; // translate \r to \n
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002023#if ENABLE_FEATURE_VI_UNDO
2024# if ENABLE_FEATURE_VI_UNDO_QUEUE
2025 if (c == '\n')
2026 undo_queue_commit();
2027# endif
2028 switch (undo) {
2029 case ALLOW_UNDO:
2030 undo_push(p, 1, UNDO_INS);
2031 break;
2032 case ALLOW_UNDO_CHAIN:
2033 undo_push(p, 1, UNDO_INS_CHAIN);
2034 break;
2035# if ENABLE_FEATURE_VI_UNDO_QUEUE
2036 case ALLOW_UNDO_QUEUED:
2037 undo_push(p, 1, UNDO_INS_QUEUED);
2038 break;
2039# endif
2040 }
2041#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002042 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002043#endif /* ENABLE_FEATURE_VI_UNDO */
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002044 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002045#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002046 if (showmatch && strchr(")]}", c) != NULL) {
2047 showmatching(p - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002048 }
2049 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002050 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002051 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002052 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00002053 len = strspn(q, " \t"); // space or tab
2054 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00002055 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002056 bias = text_hole_make(p, len);
2057 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002058 q += bias;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002059#if ENABLE_FEATURE_VI_UNDO
2060 undo_push(p, len, UNDO_INS);
2061#endif
Denis Vlasenko00d84172008-11-24 07:34:42 +00002062 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00002063 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002064 }
2065 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002066#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002067 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002068 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002069}
2070
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002071// might reallocate text[]! use p += stupid_insert(p, ...),
2072// and be careful to not use pointers into potentially freed text[]!
2073static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002074{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002075 uintptr_t bias;
2076 bias = text_hole_make(p, 1);
2077 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002078 *p = c;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002079 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002080}
2081
Denis Vlasenko33875382008-06-21 20:31:50 +00002082static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002083{
Paul Foxc51fc7b2008-03-06 01:34:23 +00002084 char *save_dot, *p, *q, *t;
2085 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002086
2087 save_dot = dot;
2088 p = q = dot;
2089
2090 if (strchr("cdy><", c)) {
2091 // these cmds operate on whole lines
2092 p = q = begin_line(p);
2093 for (cnt = 1; cnt < cmdcnt; cnt++) {
2094 q = next_line(q);
2095 }
2096 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00002097 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002098 // These cmds operate on char positions
2099 do_cmd(c); // execute movement cmd
2100 q = dot;
2101 } else if (strchr("wW", c)) {
2102 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002103 // if we are at the next word's first char
2104 // step back one char
2105 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00002106 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002107 || (ispunct(dot[-1]) && !ispunct(dot[0]))
2108 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
2109 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002110 if (dot > text && *dot == '\n')
2111 dot--; // stay off NL
2112 q = dot;
2113 } else if (strchr("H-k{", c)) {
2114 // these operate on multi-lines backwards
2115 q = end_line(dot); // find NL
2116 do_cmd(c); // execute movement cmd
2117 dot_begin();
2118 p = dot;
2119 } else if (strchr("L+j}\r\n", c)) {
2120 // these operate on multi-lines forwards
2121 p = begin_line(dot);
2122 do_cmd(c); // execute movement cmd
2123 dot_end(); // find NL
2124 q = dot;
2125 } else {
Denys Vlasenko6830ade2013-01-15 13:58:01 +01002126 // nothing -- this causes any other values of c to
2127 // represent the one-character range under the
2128 // cursor. this is correct for ' ' and 'l', but
2129 // perhaps no others.
2130 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002131 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00002132 if (q < p) {
2133 t = q;
2134 q = p;
2135 p = t;
2136 }
2137
Denis Vlasenko42cc3042008-03-24 02:05:58 +00002138 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00002139 if (q > p && strchr("^0bBh\b\177", c)) q--;
2140
2141 multiline = 0;
2142 for (t = p; t <= q; t++) {
2143 if (*t == '\n') {
2144 multiline = 1;
2145 break;
2146 }
2147 }
2148
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002149 *start = p;
2150 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002151 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002152 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002153}
2154
Denis Vlasenko33875382008-06-21 20:31:50 +00002155static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002156{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002157 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002158 int test, inc;
2159
2160 inc = dir;
2161 c = c0 = p[0];
2162 ci = p[inc];
2163 test = 0;
2164
2165 if (type == S_BEFORE_WS) {
2166 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002167 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002168 }
2169 if (type == S_TO_WS) {
2170 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002171 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002172 }
2173 if (type == S_OVER_WS) {
2174 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002175 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002176 }
2177 if (type == S_END_PUNCT) {
2178 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002179 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002180 }
2181 if (type == S_END_ALNUM) {
2182 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002183 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002184 }
2185 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002186 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002187}
2188
Denis Vlasenko33875382008-06-21 20:31:50 +00002189static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002190{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002191 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002192
2193 while (st_test(p, type, dir, &c)) {
2194 // make sure we limit search to correct number of lines
2195 if (c == '\n' && --linecnt < 1)
2196 break;
2197 if (dir >= 0 && p >= end - 1)
2198 break;
2199 if (dir < 0 && p <= text)
2200 break;
2201 p += dir; // move to next char
2202 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002203 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002204}
2205
2206// find matching char of pair () [] {}
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002207// will crash if c is not one of these
Denis Vlasenko33875382008-06-21 20:31:50 +00002208static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002209{
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002210 const char *braces = "()[]{}";
2211 char match;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002212 int dir, level;
2213
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002214 dir = strchr(braces, c) - braces;
2215 dir ^= 1;
2216 match = braces[dir];
2217 dir = ((dir & 1) << 1) - 1; /* 1 for ([{, -1 for )\} */
2218
2219 // look for match, count levels of pairs (( ))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002220 level = 1;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002221 for (;;) {
2222 p += dir;
2223 if (p < text || p >= end)
2224 return NULL;
2225 if (*p == c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002226 level++; // increase pair levels
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002227 if (*p == match) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002228 level--; // reduce pair level
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002229 if (level == 0)
2230 return p; // found matching pair
2231 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002232 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002233}
2234
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002235#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002236// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00002237static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002238{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002239 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002240
2241 // we found half of a pair
2242 q = find_pair(p, *p); // get loc of matching char
2243 if (q == NULL) {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002244 indicate_error(); // no matching char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002245 } else {
2246 // "q" now points to matching pair
2247 save_dot = dot; // remember where we are
2248 dot = q; // go to new loc
2249 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002250 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002251 dot = save_dot; // go back to old loc
2252 refresh(FALSE);
2253 }
2254}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002255#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002256
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002257#if ENABLE_FEATURE_VI_UNDO
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002258static void flush_undo_data(void)
2259{
2260 struct undo_object *undo_entry;
2261
2262 while (undo_stack_tail) {
2263 undo_entry = undo_stack_tail;
2264 undo_stack_tail = undo_entry->prev;
2265 free(undo_entry);
2266 }
2267}
2268
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002269// Undo functions and hooks added by Jody Bruchon (jody@jodybruchon.com)
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002270static void undo_push(char *src, unsigned int length, uint8_t u_type) // Add to the undo stack
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002271{
Denys Vlasenko2c512022014-04-03 01:45:05 +02002272 struct undo_object *undo_entry;
2273
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002274 // "u_type" values
2275 // UNDO_INS: insertion, undo will remove from buffer
2276 // UNDO_DEL: deleted text, undo will restore to buffer
2277 // UNDO_{INS,DEL}_CHAIN: Same as above but also calls undo_pop() when complete
2278 // The CHAIN operations are for handling multiple operations that the user
2279 // performs with a single action, i.e. REPLACE mode or find-and-replace commands
2280 // UNDO_{INS,DEL}_QUEUED: If queuing feature is enabled, allow use of the queue
2281 // for the INS/DEL operation. The raw values should be equal to the values of
2282 // UNDO_{INS,DEL} ORed with UNDO_QUEUED_FLAG
2283
2284#if ENABLE_FEATURE_VI_UNDO_QUEUE
2285 // This undo queuing functionality groups multiple character typing or backspaces
2286 // into a single large undo object. This greatly reduces calls to malloc() for
2287 // single-character operations while typing and has the side benefit of letting
2288 // an undo operation remove chunks of text rather than a single character.
2289 switch (u_type) {
2290 case UNDO_EMPTY: // Just in case this ever happens...
2291 return;
2292 case UNDO_DEL_QUEUED:
2293 if (length != 1)
2294 return; // Only queue single characters
2295 switch (undo_queue_state) {
2296 case UNDO_EMPTY:
2297 undo_queue_state = UNDO_DEL;
2298 case UNDO_DEL:
2299 undo_queue_spos = src;
2300 undo_q++;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002301 undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q] = *src;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002302 // If queue is full, dump it into an object
2303 if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX)
2304 undo_queue_commit();
2305 return;
2306 case UNDO_INS:
2307 // Switch from storing inserted text to deleted text
2308 undo_queue_commit();
2309 undo_push(src, length, UNDO_DEL_QUEUED);
2310 return;
2311 }
2312 break;
2313 case UNDO_INS_QUEUED:
2314 if (length != 1)
2315 return;
2316 switch (undo_queue_state) {
2317 case UNDO_EMPTY:
2318 undo_queue_state = UNDO_INS;
2319 undo_queue_spos = src;
2320 case UNDO_INS:
2321 undo_q++; // Don't need to save any data for insertions
2322 if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX)
2323 undo_queue_commit();
2324 return;
2325 case UNDO_DEL:
2326 // Switch from storing deleted text to inserted text
2327 undo_queue_commit();
2328 undo_push(src, length, UNDO_INS_QUEUED);
2329 return;
2330 }
2331 break;
2332 }
2333#else
2334 // If undo queuing is disabled, ignore the queuing flag entirely
2335 u_type = u_type & ~UNDO_QUEUED_FLAG;
2336#endif
2337
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002338 // Allocate a new undo object
2339 if (u_type == UNDO_DEL || u_type == UNDO_DEL_CHAIN) {
2340 // For UNDO_DEL objects, save deleted text
2341 if ((src + length) == end)
2342 length--;
2343 // If this deletion empties text[], strip the newline. When the buffer becomes
2344 // zero-length, a newline is added back, which requires this to compensate.
2345 undo_entry = xzalloc(offsetof(struct undo_object, undo_text) + length);
2346 memcpy(undo_entry->undo_text, src, length);
2347 } else {
2348 undo_entry = xzalloc(sizeof(*undo_entry));
2349 }
2350 undo_entry->length = length;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002351#if ENABLE_FEATURE_VI_UNDO_QUEUE
2352 if ((u_type & UNDO_USE_SPOS) != 0) {
Denys Vlasenko2c512022014-04-03 01:45:05 +02002353 undo_entry->start = undo_queue_spos - text; // use start position from queue
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002354 } else {
Denys Vlasenko2c512022014-04-03 01:45:05 +02002355 undo_entry->start = src - text; // use offset from start of text buffer
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002356 }
2357 u_type = (u_type & ~UNDO_USE_SPOS);
2358#else
Denys Vlasenko2c512022014-04-03 01:45:05 +02002359 undo_entry->start = src - text;
2360#endif
Denys Vlasenko2c512022014-04-03 01:45:05 +02002361 undo_entry->u_type = u_type;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002362
2363 // Push it on undo stack
2364 undo_entry->prev = undo_stack_tail;
2365 undo_stack_tail = undo_entry;
2366 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002367}
2368
2369static void undo_pop(void) // Undo the last operation
2370{
Denys Vlasenko2c512022014-04-03 01:45:05 +02002371 int repeat;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002372 char *u_start, *u_end;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002373 struct undo_object *undo_entry;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002374
2375 // Commit pending undo queue before popping (should be unnecessary)
2376 undo_queue_commit();
2377
Denys Vlasenko2c512022014-04-03 01:45:05 +02002378 undo_entry = undo_stack_tail;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002379 // Check for an empty undo stack
Denys Vlasenko2c512022014-04-03 01:45:05 +02002380 if (!undo_entry) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002381 status_line("Already at oldest change");
2382 return;
2383 }
2384
Denys Vlasenko2c512022014-04-03 01:45:05 +02002385 switch (undo_entry->u_type) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002386 case UNDO_DEL:
2387 case UNDO_DEL_CHAIN:
2388 // make hole and put in text that was deleted; deallocate text
Denys Vlasenko2c512022014-04-03 01:45:05 +02002389 u_start = text + undo_entry->start;
2390 text_hole_make(u_start, undo_entry->length);
2391 memcpy(u_start, undo_entry->undo_text, undo_entry->length);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002392 status_line("Undo [%d] %s %d chars at position %d",
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002393 modified_count, "restored",
Denys Vlasenko2c512022014-04-03 01:45:05 +02002394 undo_entry->length, undo_entry->start
2395 );
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002396 break;
2397 case UNDO_INS:
2398 case UNDO_INS_CHAIN:
2399 // delete what was inserted
Denys Vlasenko2c512022014-04-03 01:45:05 +02002400 u_start = undo_entry->start + text;
2401 u_end = u_start - 1 + undo_entry->length;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002402 text_hole_delete(u_start, u_end, NO_UNDO);
2403 status_line("Undo [%d] %s %d chars at position %d",
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002404 modified_count, "deleted",
Denys Vlasenko2c512022014-04-03 01:45:05 +02002405 undo_entry->length, undo_entry->start
2406 );
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002407 break;
2408 }
Denys Vlasenko2c512022014-04-03 01:45:05 +02002409 repeat = 0;
2410 switch (undo_entry->u_type) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002411 // If this is the end of a chain, lower modification count and refresh display
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002412 case UNDO_DEL:
2413 case UNDO_INS:
Denys Vlasenko2c512022014-04-03 01:45:05 +02002414 dot = (text + undo_entry->start);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002415 refresh(FALSE);
2416 break;
2417 case UNDO_DEL_CHAIN:
2418 case UNDO_INS_CHAIN:
2419 repeat = 1;
2420 break;
2421 }
2422 // Deallocate the undo object we just processed
Denys Vlasenko2c512022014-04-03 01:45:05 +02002423 undo_stack_tail = undo_entry->prev;
2424 free(undo_entry);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002425 modified_count--;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002426 // For chained operations, continue popping all the way down the chain.
2427 if (repeat) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002428 undo_pop(); // Follow the undo chain if one exists
2429 }
2430}
2431
2432#if ENABLE_FEATURE_VI_UNDO_QUEUE
2433static void undo_queue_commit(void) // Flush any queued objects to the undo stack
2434{
2435 // Pushes the queue object onto the undo stack
2436 if (undo_q > 0) {
2437 // Deleted character undo events grow from the end
Denys Vlasenko2c512022014-04-03 01:45:05 +02002438 undo_push(undo_queue + CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q,
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002439 undo_q,
2440 (undo_queue_state | UNDO_USE_SPOS)
2441 );
2442 undo_queue_state = UNDO_EMPTY;
2443 undo_q = 0;
2444 }
2445}
2446#endif
2447
2448#endif /* ENABLE_FEATURE_VI_UNDO */
2449
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002450// open a hole in text[]
2451// might reallocate text[]! use p += text_hole_make(p, ...),
2452// and be careful to not use pointers into potentially freed text[]!
2453static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002454{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002455 uintptr_t bias = 0;
2456
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002457 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002458 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002459 end += size; // adjust the new END
2460 if (end >= (text + text_size)) {
2461 char *new_text;
2462 text_size += end - (text + text_size) + 10240;
2463 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002464 bias = (new_text - text);
2465 screenbegin += bias;
2466 dot += bias;
2467 end += bias;
2468 p += bias;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01002469#if ENABLE_FEATURE_VI_YANKMARK
2470 {
2471 int i;
2472 for (i = 0; i < ARRAY_SIZE(mark); i++)
2473 if (mark[i])
2474 mark[i] += bias;
2475 }
2476#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +00002477 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002478 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00002479 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002480 memset(p, ' ', size); // clear new hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002481 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002482}
2483
2484// close a hole in text[]
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002485// "undo" value indicates if this operation should be undo-able
2486static char *text_hole_delete(char *p, char *q, int undo) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002487{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002488 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002489 int cnt, hole_size;
2490
2491 // move forwards, from beginning
2492 // assume p <= q
2493 src = q + 1;
2494 dest = p;
2495 if (q < p) { // they are backward- swap them
2496 src = p + 1;
2497 dest = q;
2498 }
2499 hole_size = q - p + 1;
2500 cnt = end - src;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002501#if ENABLE_FEATURE_VI_UNDO
2502 switch (undo) {
2503 case NO_UNDO:
2504 break;
2505 case ALLOW_UNDO:
2506 undo_push(p, hole_size, UNDO_DEL);
2507 break;
2508 case ALLOW_UNDO_CHAIN:
2509 undo_push(p, hole_size, UNDO_DEL_CHAIN);
2510 break;
2511# if ENABLE_FEATURE_VI_UNDO_QUEUE
2512 case ALLOW_UNDO_QUEUED:
2513 undo_push(p, hole_size, UNDO_DEL_QUEUED);
2514 break;
2515# endif
2516 }
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002517 modified_count--;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002518#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002519 if (src < text || src > end)
2520 goto thd0;
2521 if (dest < text || dest >= end)
2522 goto thd0;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002523 modified_count++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002524 if (src >= end)
2525 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00002526 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002527 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002528 end = end - hole_size; // adjust the new END
2529 if (dest >= end)
2530 dest = end - 1; // make sure dest in below end-1
2531 if (end <= text)
2532 dest = end = text; // keep pointers valid
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002533 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002534 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002535}
2536
2537// copy text into register, then delete text.
2538// if dist <= 0, do not include, or go past, a NewLine
2539//
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002540static char *yank_delete(char *start, char *stop, int dist, int yf, int undo)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002541{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002542 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002543
2544 // make sure start <= stop
2545 if (start > stop) {
2546 // they are backwards, reverse them
2547 p = start;
2548 start = stop;
2549 stop = p;
2550 }
2551 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00002552 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002553 p = start;
2554 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002555 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002556 // dont go past a NewLine
2557 for (; p + 1 <= stop; p++) {
2558 if (p[1] == '\n') {
2559 stop = p; // "stop" just before NewLine
2560 break;
2561 }
2562 }
2563 }
2564 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002565#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002566 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002567#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002568 if (yf == YANKDEL) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002569 p = text_hole_delete(start, stop, undo);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002570 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002571 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002572}
2573
2574static void show_help(void)
2575{
2576 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002577#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002578 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002579#endif
2580#if ENABLE_FEATURE_VI_DOT_CMD
Denys Vlasenko605f2642012-06-11 01:53:33 +02002581 "\n\tLast command repeat with ."
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002582#endif
2583#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00002584 "\n\tLine marking with 'x"
2585 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002586#endif
2587#if ENABLE_FEATURE_VI_READONLY
Walter Harmsb9ba5802011-06-27 02:59:37 +02002588 //not implemented: "\n\tReadonly if vi is called as \"view\""
2589 //redundant: usage text says this too: "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002590#endif
2591#if ENABLE_FEATURE_VI_SET
Denys Vlasenko605f2642012-06-11 01:53:33 +02002592 "\n\tSome colon mode commands with :"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002593#endif
2594#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002595 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002596#endif
2597#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002598 "\n\tSignal catching- ^C"
2599 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002600#endif
2601#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002602 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002603#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002604 );
2605}
2606
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002607#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002608static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002609{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002610 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002611 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002612 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002613 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002614 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002615 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002616 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002617 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002618 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002619}
2620
2621static void end_cmd_q(void)
2622{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002623#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002624 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002625#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002626 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002627}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002628#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002629
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002630#if ENABLE_FEATURE_VI_YANKMARK \
2631 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2632 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002633// might reallocate text[]! use p += string_insert(p, ...),
2634// and be careful to not use pointers into potentially freed text[]!
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002635static uintptr_t string_insert(char *p, const char *s, int undo) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002636{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002637 uintptr_t bias;
2638 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002639
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002640 i = strlen(s);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002641#if ENABLE_FEATURE_VI_UNDO
2642 switch (undo) {
2643 case ALLOW_UNDO:
2644 undo_push(p, i, UNDO_INS);
2645 break;
2646 case ALLOW_UNDO_CHAIN:
2647 undo_push(p, i, UNDO_INS_CHAIN);
2648 break;
2649 }
2650#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002651 bias = text_hole_make(p, i);
2652 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002653 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002654#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002655 {
2656 int cnt;
2657 for (cnt = 0; *s != '\0'; s++) {
2658 if (*s == '\n')
2659 cnt++;
2660 }
2661 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2662 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002663#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002664 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002665}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002666#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002667
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002668#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002669static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002670{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002671 int cnt = q - p;
2672 if (cnt < 0) { // they are backwards- reverse them
2673 p = q;
2674 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002675 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002676 free(reg[dest]); // if already a yank register, free it
2677 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002678 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002679}
2680
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002681static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002682{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002683 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002684
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002685 c = 'D'; // default to D-reg
2686 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002687 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002688 if (YDreg == 26)
2689 c = 'D';
2690 if (YDreg == 27)
2691 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002692 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002693}
2694
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002695static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002696{
2697 // A context is defined to be "modifying text"
2698 // Any modifying command establishes a new context.
2699
2700 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002701 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002702 // we are trying to modify text[]- make this the current context
2703 mark[27] = mark[26]; // move cur to prev
2704 mark[26] = dot; // move local to cur
2705 context_start = prev_line(prev_line(dot));
2706 context_end = next_line(next_line(dot));
2707 //loiter= start_loiter= now;
2708 }
2709 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002710}
2711
Denis Vlasenkof882f082007-12-23 02:36:51 +00002712static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002713{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002714 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002715
2716 // the current context is in mark[26]
2717 // the previous context is in mark[27]
2718 // only swap context if other context is valid
2719 if (text <= mark[27] && mark[27] <= end - 1) {
2720 tmp = mark[27];
Denys Vlasenko61fcc8c2016-09-28 16:23:05 +02002721 mark[27] = p;
2722 mark[26] = p = tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002723 context_start = prev_line(prev_line(prev_line(p)));
2724 context_end = next_line(next_line(next_line(p)));
2725 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002726 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002727}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002728#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002729
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002730//----- Set terminal attributes --------------------------------
2731static void rawmode(void)
2732{
Denys Vlasenko01ccdd12017-01-11 16:17:59 +01002733 // no TERMIOS_CLEAR_ISIG: leave ISIG on - allow signals
2734 set_termios_to_raw(STDIN_FILENO, &term_orig, TERMIOS_RAW_CRNL);
2735 erase_char = term_orig.c_cc[VERASE];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002736}
2737
2738static void cookmode(void)
2739{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002740 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002741 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002742}
2743
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002744#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002745//----- Come here when we get a window resize signal ---------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002746static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002747{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002748 int save_errno = errno;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002749 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002750 signal(SIGWINCH, winch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002751 query_screen_dimensions();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002752 new_screen(rows, columns); // get memory for virtual screen
2753 redraw(TRUE); // re-draw the screen
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002754 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002755}
2756
2757//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002758static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002759{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002760 int save_errno = errno;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002761 rawmode(); // terminal to "raw"
2762 last_status_cksum = 0; // force status update
2763 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002764
2765 signal(SIGTSTP, suspend_sig);
2766 signal(SIGCONT, SIG_DFL);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002767 //kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
2768 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002769}
2770
2771//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002772static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002773{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002774 int save_errno = errno;
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002775 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002776 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002777
2778 signal(SIGCONT, cont_sig);
2779 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002780 kill(my_pid, SIGTSTP);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002781 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002782}
2783
2784//----- Come here when we get a signal ---------------------------
2785static void catch_sig(int sig)
2786{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002787 signal(SIGINT, catch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002788 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002789}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002790#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002791
Denys Vlasenko606291b2009-09-23 23:15:43 +02002792static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002793{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002794 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002795
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002796 if (hund != 0)
2797 fflush_all();
2798
Denys Vlasenko606291b2009-09-23 23:15:43 +02002799 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002800 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002801 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002802}
2803
2804//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002805static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002806{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002807 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002808
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002809 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002810 c = read_key(STDIN_FILENO, readbuffer, /*timeout off:*/ -2);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002811 if (c == -1) { // EOF/error
2812 go_bottom_and_clear_to_eol();
2813 cookmode(); // terminal to "cooked"
2814 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002815 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002816 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002817}
2818
2819//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002820static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002821{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002822 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002823
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002824#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002825 if (!adding2q) {
2826 // we are not adding to the q.
2827 // but, we may be reading from a q
2828 if (ioq == 0) {
2829 // there is no current q, read from STDIN
2830 c = readit(); // get the users input
2831 } else {
2832 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002833 // careful with correct sign expansion!
2834 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002835 if (c == '\0') {
2836 // the end of the q, read from STDIN
2837 free(ioq_start);
2838 ioq_start = ioq = 0;
2839 c = readit(); // get the users input
2840 }
2841 }
2842 } else {
2843 // adding STDIN chars to q
2844 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002845 if (lmc_len >= MAX_INPUT_LEN - 1) {
2846 status_line_bold("last_modifying_cmd overrun");
2847 } else {
2848 // add new char to q
2849 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002850 }
2851 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002852#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002853 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002854#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002855 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002856}
2857
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002858// Get input line (uses "status line" area)
2859static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002860{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002861 // char [MAX_INPUT_LEN]
2862#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002863
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002864 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002865 int i;
2866
2867 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002868 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002869 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002870 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002871
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002872 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002873 while (i < MAX_INPUT_LEN) {
2874 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002875 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002876 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002877 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002878 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002879 buf[--i] = '\0';
2880 write1("\b \b"); // erase char on screen
2881 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002882 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002883 } else if (c > 0 && c < 256) { // exclude Unicode
2884 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002885 buf[i] = c;
2886 buf[++i] = '\0';
2887 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002888 }
2889 }
2890 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002891 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002892#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002893}
2894
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002895// might reallocate text[]!
Ron Yorstone5213ce2014-11-30 20:39:25 +00002896static int file_insert(const char *fn, char *p, int initial)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002897{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002898 int cnt = -1;
2899 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002900 struct stat statbuf;
2901
Denys Vlasenko7f3a2a22015-10-08 11:24:44 +02002902 if (p < text)
2903 p = text;
2904 if (p > end)
2905 p = end;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002906
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002907 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002908 if (fd < 0) {
Ron Yorstone5213ce2014-11-30 20:39:25 +00002909 if (!initial)
2910 status_line_bold_errno(fn);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002911 return cnt;
2912 }
2913
2914 /* Validate file */
2915 if (fstat(fd, &statbuf) < 0) {
2916 status_line_bold_errno(fn);
2917 goto fi;
2918 }
2919 if (!S_ISREG(statbuf.st_mode)) {
2920 status_line_bold("'%s' is not a regular file", fn);
2921 goto fi;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002922 }
Denys Vlasenko778794d2013-01-22 10:13:52 +01002923 size = (statbuf.st_size < INT_MAX ? (int)statbuf.st_size : INT_MAX);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002924 p += text_hole_make(p, size);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002925 cnt = full_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002926 if (cnt < 0) {
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01002927 status_line_bold_errno(fn);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002928 p = text_hole_delete(p, p + size - 1, NO_UNDO); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002929 } else if (cnt < size) {
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002930 // There was a partial read, shrink unused space
2931 p = text_hole_delete(p + cnt, p + size - 1, NO_UNDO);
Denys Vlasenko778794d2013-01-22 10:13:52 +01002932 status_line_bold("can't read '%s'", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002933 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002934 fi:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002935 close(fd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002936
Denis Vlasenko856be772007-08-17 08:29:48 +00002937#if ENABLE_FEATURE_VI_READONLY
Ron Yorstone5213ce2014-11-30 20:39:25 +00002938 if (initial
Denis Vlasenko856be772007-08-17 08:29:48 +00002939 && ((access(fn, W_OK) < 0) ||
2940 /* root will always have access()
2941 * so we check fileperms too */
2942 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2943 )
2944 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002945 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002946 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002947#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002948 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002949}
2950
Denis Vlasenko33875382008-06-21 20:31:50 +00002951static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002952{
2953 int fd, cnt, charcnt;
2954
2955 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002956 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002957 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002958 }
Denis Vlasenko8abae882008-05-03 11:35:59 +00002959 /* By popular request we do not open file with O_TRUNC,
2960 * but instead ftruncate() it _after_ successful write.
2961 * Might reduce amount of data lost on power fail etc.
2962 */
2963 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002964 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002965 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002966 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002967 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002968 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002969 if (charcnt == cnt) {
2970 // good write
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002971 //modified_count = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002972 } else {
2973 charcnt = 0;
2974 }
2975 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002976 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002977}
2978
2979//----- Terminal Drawing ---------------------------------------
2980// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002981// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002982// screen coordinates
2983// 0,0 ... 0,79
2984// 1,0 ... 1,79
2985// . ... .
2986// . ... .
2987// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002988// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002989
2990//----- Move the cursor to row x col (count from 0, not 1) -------
Denys Vlasenko04b52892012-06-11 13:51:38 +02002991static void place_cursor(int row, int col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002992{
Denys Vlasenko04b52892012-06-11 13:51:38 +02002993 char cm1[sizeof(ESC_SET_CURSOR_POS) + sizeof(int)*3 * 2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002994
2995 if (row < 0) row = 0;
2996 if (row >= rows) row = rows - 1;
2997 if (col < 0) col = 0;
2998 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002999
Denys Vlasenko04b52892012-06-11 13:51:38 +02003000 sprintf(cm1, ESC_SET_CURSOR_POS, row + 1, col + 1);
3001 write1(cm1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003002}
3003
3004//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003005static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003006{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003007 write1(ESC_CLEAR2EOL);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003008}
3009
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003010static void go_bottom_and_clear_to_eol(void)
3011{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003012 place_cursor(rows - 1, 0);
3013 clear_to_eol();
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003014}
3015
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003016//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003017static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003018{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003019 write1(ESC_CLEAR2EOS);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003020}
3021
3022//----- Start standout mode ------------------------------------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003023static void standout_start(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003024{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003025 write1(ESC_BOLD_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003026}
3027
3028//----- End standout mode --------------------------------------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003029static void standout_end(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003030{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003031 write1(ESC_NORM_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003032}
3033
3034//----- Flash the screen --------------------------------------
3035static void flash(int h)
3036{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003037 standout_start();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003038 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003039 mysleep(h);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003040 standout_end();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003041 redraw(TRUE);
3042}
3043
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003044static void indicate_error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003045{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003046#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003047 if (crashme > 0)
3048 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003049#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003050 if (!err_method) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003051 write1(ESC_BELL);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003052 } else {
3053 flash(10);
3054 }
3055}
3056
3057//----- Screen[] Routines --------------------------------------
3058//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003059static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003060{
3061 memset(screen, ' ', screensize); // clear new screen
3062}
3063
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003064static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00003065{
3066 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003067 char *e = buf + count;
3068
Paul Fox8552aec2005-09-16 12:20:05 +00003069 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003070 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00003071 return sum;
3072}
3073
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003074//----- Draw the status line at bottom of the screen -------------
3075static void show_status_line(void)
3076{
Paul Foxc3504852005-09-16 12:48:18 +00003077 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003078
Paul Fox8552aec2005-09-16 12:20:05 +00003079 // either we already have an error or status message, or we
3080 // create one.
3081 if (!have_status_msg) {
3082 cnt = format_edit_status();
3083 cksum = bufsum(status_buffer, cnt);
3084 }
3085 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003086 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003087 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003088 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00003089 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003090 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00003091 (columns - 1) ) {
3092 have_status_msg = 0;
3093 Hit_Return();
3094 }
3095 have_status_msg = 0;
3096 }
Denys Vlasenko04b52892012-06-11 13:51:38 +02003097 place_cursor(crow, ccol); // put cursor back in correct place
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003098 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003099 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003100}
3101
3102//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00003103// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003104static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003105{
3106 va_list args;
3107
3108 va_start(args, format);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003109 strcpy(status_buffer, ESC_BOLD_TEXT);
3110 vsprintf(status_buffer + sizeof(ESC_BOLD_TEXT)-1, format, args);
3111 strcat(status_buffer, ESC_NORM_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003112 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00003113
Denys Vlasenko04b52892012-06-11 13:51:38 +02003114 have_status_msg = 1 + sizeof(ESC_BOLD_TEXT) + sizeof(ESC_NORM_TEXT) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003115}
3116
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01003117static void status_line_bold_errno(const char *fn)
3118{
3119 status_line_bold("'%s' %s", fn, strerror(errno));
3120}
3121
Paul Fox8552aec2005-09-16 12:20:05 +00003122// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003123static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003124{
3125 va_list args;
3126
3127 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003128 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003129 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00003130
3131 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003132}
3133
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003134// copy s to buf, convert unprintable
3135static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003136{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003137 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003138 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003139
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003140 buf[0] = '\0';
3141 if (!s[0])
3142 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003143
3144 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003145 for (; *s; s++) {
3146 int c_is_no_print;
3147
3148 c = *s;
3149 c_is_no_print = (c & 0x80) && !Isprint(c);
3150 if (c_is_no_print) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003151 strcpy(d, ESC_NORM_TEXT);
3152 d += sizeof(ESC_NORM_TEXT)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003153 c = '.';
3154 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003155 if (c < ' ' || c == 0x7f) {
3156 *d++ = '^';
3157 c |= '@'; /* 0x40 */
3158 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003159 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003160 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003161 *d++ = c;
3162 *d = '\0';
3163 if (c_is_no_print) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003164 strcpy(d, ESC_BOLD_TEXT);
3165 d += sizeof(ESC_BOLD_TEXT)-1;
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003166 }
3167 if (*s == '\n') {
3168 *d++ = '$';
3169 *d = '\0';
3170 }
3171 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003172 break;
3173 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003174}
3175
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003176static void not_implemented(const char *s)
3177{
3178 char buf[MAX_INPUT_LEN];
3179
3180 print_literal(buf, s);
3181 status_line_bold("\'%s\' is not implemented", buf);
3182}
3183
3184// show file status on status line
3185static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003186{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00003187 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00003188
3189#define tot format_edit_status__tot
3190
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003191 int cur, percent, ret, trunc_at;
3192
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003193 // modified_count is now a counter rather than a flag. this
Paul Fox8552aec2005-09-16 12:20:05 +00003194 // helps reduce the amount of line counting we need to do.
3195 // (this will cause a mis-reporting of modified status
3196 // once every MAXINT editing operations.)
3197
3198 // it would be nice to do a similar optimization here -- if
3199 // we haven't done a motion that could have changed which line
3200 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003201 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003202
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003203 // count_lines() is expensive.
3204 // Call it only if something was changed since last time
3205 // we were here:
3206 if (modified_count != last_modified_count) {
Paul Fox8552aec2005-09-16 12:20:05 +00003207 tot = cur + count_lines(dot, end - 1) - 1;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003208 last_modified_count = modified_count;
Paul Fox8552aec2005-09-16 12:20:05 +00003209 }
3210
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003211 // current line percent
3212 // ------------- ~~ ----------
3213 // total lines 100
3214 if (tot > 0) {
3215 percent = (100 * cur) / tot;
3216 } else {
3217 cur = tot = 0;
3218 percent = 100;
3219 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00003220
Paul Fox8552aec2005-09-16 12:20:05 +00003221 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
3222 columns : STATUS_BUFFER_LEN-1;
3223
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003224 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003225#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00003226 "%c %s%s%s %d/%d %d%%",
3227#else
3228 "%c %s%s %d/%d %d%%",
3229#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003230 cmd_mode_indicator[cmd_mode & 3],
3231 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003232#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003233 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00003234#endif
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003235 (modified_count ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00003236 cur, tot, percent);
3237
3238 if (ret >= 0 && ret < trunc_at)
3239 return ret; /* it all fit */
3240
3241 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00003242#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003243}
3244
3245//----- Force refresh of all Lines -----------------------------
3246static void redraw(int full_screen)
3247{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003248 place_cursor(0, 0);
3249 clear_to_eos();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003250 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003251 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003252 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00003253 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003254}
3255
3256//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00003257static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003258{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003259 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003260 int co;
3261 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003262 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003263
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003264 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003265 co = 0;
3266 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003267 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003268 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003269 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003270 if (c == '\n')
3271 break;
3272 if ((c & 0x80) && !Isprint(c)) {
3273 c = '.';
3274 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003275 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003276 if (c == '\t') {
3277 c = ' ';
3278 // co % 8 != 7
3279 while ((co % tabstop) != (tabstop - 1)) {
3280 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003281 }
3282 } else {
3283 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003284 if (c == 0x7f)
3285 c = '?';
3286 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003287 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003288 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003289 }
3290 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003291 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003292 // discard scrolled-off-to-the-left portion,
3293 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003294 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003295 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003296 co -= tabstop;
3297 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003298 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003299 if (src >= end)
3300 break;
3301 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003302 // check "short line, gigantic offset" case
3303 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003304 ofs = co;
3305 // discard last scrolled off part
3306 co -= ofs;
3307 dest += ofs;
3308 // fill the rest with spaces
3309 if (co < columns)
3310 memset(&dest[co], ' ', columns - co);
3311 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003312}
3313
3314//----- Refresh the changed screen lines -----------------------
3315// Copy the source line from text[] into the buffer and note
3316// if the current screenline is different from the new buffer.
3317// If they differ then that line needs redrawing on the terminal.
3318//
3319static void refresh(int full_screen)
3320{
Denis Vlasenkob1759462008-06-20 20:20:54 +00003321#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003322
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003323 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003324 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003325
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +02003326 if (ENABLE_FEATURE_VI_WIN_RESIZE IF_FEATURE_VI_ASK_TERMINAL(&& !G.get_rowcol_error) ) {
Denis Vlasenko55995022008-05-18 22:28:26 +00003327 unsigned c = columns, r = rows;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07003328 query_screen_dimensions();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003329 full_screen |= (c - columns) | (r - rows);
3330 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003331 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
3332 tp = screenbegin; // index into text[] of top line
3333
3334 // compare text[] to screen[] and mark screen[] lines that need updating
3335 for (li = 0; li < rows - 1; li++) {
3336 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00003337 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003338 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00003339 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003340
3341 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00003342 if (tp < end) {
3343 char *t = memchr(tp, '\n', end - tp);
3344 if (!t) t = end - 1;
3345 tp = t + 1;
3346 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003347
Maninder Singh97c64912015-05-25 13:46:36 +02003348 // see if there are any changes between virtual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003349 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003350 cs = 0;
3351 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003352 sp = &screen[li * columns]; // start of screen line
3353 if (full_screen) {
3354 // force re-draw of every single column from 0 - columns-1
3355 goto re0;
3356 }
3357 // compare newly formatted buffer with virtual screen
3358 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003359 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003360 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003361 changed = TRUE; // mark for redraw
3362 break;
3363 }
3364 }
3365
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003366 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003367 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003368 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003369 changed = TRUE; // mark for redraw
3370 break;
3371 }
3372 }
3373 // now, cs is index of first diff, and ce is index of last diff
3374
3375 // if horz offset has changed, force a redraw
3376 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003377 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003378 changed = TRUE;
3379 }
3380
3381 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003382 if (cs < 0) cs = 0;
3383 if (ce > columns - 1) ce = columns - 1;
3384 if (cs > ce) { cs = 0; ce = columns - 1; }
Maninder Singh97c64912015-05-25 13:46:36 +02003385 // is there a change between virtual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003386 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003387 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003388 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003389 place_cursor(li, cs);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003390 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003391 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003392 }
3393 }
3394
Denys Vlasenko04b52892012-06-11 13:51:38 +02003395 place_cursor(crow, ccol);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003396
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003397 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003398#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003399}
3400
Eric Andersen3f980402001-04-04 17:31:15 +00003401//---------------------------------------------------------------------
3402//----- the Ascii Chart -----------------------------------------------
3403//
3404// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
3405// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
3406// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
3407// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
3408// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
3409// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
3410// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
3411// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
3412// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
3413// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
3414// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
3415// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
3416// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
3417// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
3418// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
3419// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
3420//---------------------------------------------------------------------
3421
3422//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003423static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00003424{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003425 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003426 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003427 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00003428 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003429 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003430
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003431// c1 = c; // quiet the compiler
3432// cnt = yf = 0; // quiet the compiler
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003433// p = q = save_dot = buf; // quiet the compiler
3434 memset(buf, '\0', sizeof(buf));
Eric Andersenbff7a602001-11-17 07:15:43 +00003435
Paul Fox8552aec2005-09-16 12:20:05 +00003436 show_status_line();
3437
Eric Andersenbff7a602001-11-17 07:15:43 +00003438 /* if this is a cursor key, skip these checks */
3439 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003440 case KEYCODE_UP:
3441 case KEYCODE_DOWN:
3442 case KEYCODE_LEFT:
3443 case KEYCODE_RIGHT:
3444 case KEYCODE_HOME:
3445 case KEYCODE_END:
3446 case KEYCODE_PAGEUP:
3447 case KEYCODE_PAGEDOWN:
3448 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00003449 goto key_cmd_mode;
3450 }
3451
Eric Andersen3f980402001-04-04 17:31:15 +00003452 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003453 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003454 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003455 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00003456 // we are 'R'eplacing the current *dot with new char
3457 if (*dot == '\n') {
3458 // don't Replace past E-o-l
3459 cmd_mode = 1; // convert to insert
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003460 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00003461 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003462 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003463 if (c != 27)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003464 dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char
3465 dot = char_insert(dot, c, ALLOW_UNDO_CHAIN); // insert new char
Eric Andersen3f980402001-04-04 17:31:15 +00003466 }
3467 goto dc1;
3468 }
3469 }
3470 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003471 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003472 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00003473 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003474 if (1 <= c || Isprint(c)) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003475 dot = char_insert(dot, c, ALLOW_UNDO_QUEUED);
Eric Andersen3f980402001-04-04 17:31:15 +00003476 }
3477 goto dc1;
3478 }
3479
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003480 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003481 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003482 //case 0x01: // soh
3483 //case 0x09: // ht
3484 //case 0x0b: // vt
3485 //case 0x0e: // so
3486 //case 0x0f: // si
3487 //case 0x10: // dle
3488 //case 0x11: // dc1
3489 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003490#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003491 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003492 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003493 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003494#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003495 //case 0x16: // syn
3496 //case 0x17: // etb
3497 //case 0x18: // can
3498 //case 0x1c: // fs
3499 //case 0x1d: // gs
3500 //case 0x1e: // rs
3501 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003502 //case '!': // !-
3503 //case '#': // #-
3504 //case '&': // &-
3505 //case '(': // (-
3506 //case ')': // )-
3507 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003508 //case '=': // =-
3509 //case '@': // @-
3510 //case 'F': // F-
3511 //case 'K': // K-
3512 //case 'Q': // Q-
3513 //case 'S': // S-
3514 //case 'T': // T-
3515 //case 'V': // V-
3516 //case '[': // [-
3517 //case '\\': // \-
3518 //case ']': // ]-
3519 //case '_': // _-
3520 //case '`': // `-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003521 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003522 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00003523 buf[0] = c;
3524 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003525 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003526 end_cmd_q(); // stop adding to q
3527 case 0x00: // nul- ignore
3528 break;
3529 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003530 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00003531 dot_scroll(rows - 2, -1);
3532 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003533 case 4: // ctrl-D scroll down half screen
3534 dot_scroll((rows - 2) / 2, 1);
3535 break;
3536 case 5: // ctrl-E scroll down one line
3537 dot_scroll(1, 1);
3538 break;
3539 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003540 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003541 dot_scroll(rows - 2, 1);
3542 break;
3543 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003544 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003545 break;
3546 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003547 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003548 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003549 case 0x7f: // DEL- move left (This may be ERASE char)
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003550 do {
3551 dot_left();
3552 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003553 break;
3554 case 10: // Newline ^J
3555 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003556 case KEYCODE_DOWN: // cursor key Down
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003557 do {
3558 dot_next(); // go to next B-o-l
3559 // try stay in same col
3560 dot = move_to_col(dot, ccol + offset);
3561 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003562 break;
3563 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003564 case 18: // ctrl-R force redraw
Denys Vlasenko04b52892012-06-11 13:51:38 +02003565 place_cursor(0, 0);
3566 clear_to_eos();
3567 //mysleep(10); // why???
Eric Andersen3f980402001-04-04 17:31:15 +00003568 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003569 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003570 refresh(TRUE); // this will redraw the entire display
3571 break;
3572 case 13: // Carriage Return ^M
3573 case '+': // +- goto next line
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003574 do {
3575 dot_next();
3576 dot_skip_over_ws();
3577 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003578 break;
3579 case 21: // ctrl-U scroll up half screen
3580 dot_scroll((rows - 2) / 2, -1);
3581 break;
3582 case 25: // ctrl-Y scroll up one line
3583 dot_scroll(1, -1);
3584 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003585 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003586 if (cmd_mode == 0)
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003587 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003588 cmd_mode = 0; // stop insrting
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003589 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00003590 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003591 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003592 break;
3593 case ' ': // move right
3594 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003595 case KEYCODE_RIGHT: // Cursor Key Right
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003596 do {
3597 dot_right();
3598 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003599 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003600#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003601 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003602 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3603 if ((unsigned)c1 <= 25) { // a-z?
3604 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003605 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003606 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003607 }
3608 break;
3609 case '\'': // '- goto a specific mark
Denys Vlasenko61fcc8c2016-09-28 16:23:05 +02003610 c1 = (get_one_char() | 0x20);
3611 if ((unsigned)(c1 - 'a') <= 25) { // a-z?
3612 c1 = (c1 - 'a');
Eric Andersen3f980402001-04-04 17:31:15 +00003613 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003614 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003615 if (text <= q && q < end) {
3616 dot = q;
3617 dot_begin(); // go to B-o-l
3618 dot_skip_over_ws();
3619 }
3620 } else if (c1 == '\'') { // goto previous context
3621 dot = swap_context(dot); // swap current and previous context
3622 dot_begin(); // go to B-o-l
3623 dot_skip_over_ws();
3624 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003625 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003626 }
3627 break;
3628 case 'm': // m- Mark a line
3629 // this is really stupid. If there are any inserts or deletes
3630 // between text[0] and dot then this mark will not point to the
3631 // correct location! It could be off by many lines!
3632 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003633 c1 = (get_one_char() | 0x20) - 'a';
3634 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003635 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003636 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003637 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003638 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003639 }
3640 break;
3641 case 'P': // P- Put register before
3642 case 'p': // p- put register after
3643 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003644 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003645 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003646 break;
3647 }
3648 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003649 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003650 if (c == 'P') {
3651 dot_begin(); // putting lines- Put above
3652 }
3653 if (c == 'p') {
3654 // are we putting after very last line?
3655 if (end_line(dot) == (end - 1)) {
3656 dot = end; // force dot to end of text[]
3657 } else {
3658 dot_next(); // next line, then put before
3659 }
3660 }
3661 } else {
3662 if (c == 'p')
3663 dot_right(); // move to right, can move to NL
3664 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003665 string_insert(dot, p, ALLOW_UNDO); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003666 end_cmd_q(); // stop adding to q
3667 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003668 case 'U': // U- Undo; replace current line with original version
Denys Vlasenko800a9a02012-01-31 14:10:26 +01003669 if (reg[Ureg] != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003670 p = begin_line(dot);
3671 q = end_line(dot);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003672 p = text_hole_delete(p, q, ALLOW_UNDO); // delete cur line
3673 p += string_insert(p, reg[Ureg], ALLOW_UNDO_CHAIN); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003674 dot = p;
3675 dot_skip_over_ws();
3676 }
3677 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003678#endif /* FEATURE_VI_YANKMARK */
Andrew Fuller4d8ddb82015-05-03 18:18:25 +02003679#if ENABLE_FEATURE_VI_UNDO
3680 case 'u': // u- undo last operation
3681 undo_pop();
3682 break;
3683#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003684 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003685 case KEYCODE_END: // Cursor Key End
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003686 for (;;) {
3687 dot = end_line(dot);
Denys Vlasenko1fd71292011-11-28 04:55:48 +01003688 if (--cmdcnt <= 0)
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003689 break;
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003690 dot_next();
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003691 }
Eric Andersen3f980402001-04-04 17:31:15 +00003692 break;
3693 case '%': // %- find matching char of pair () [] {}
3694 for (q = dot; q < end && *q != '\n'; q++) {
3695 if (strchr("()[]{}", *q) != NULL) {
3696 // we found half of a pair
3697 p = find_pair(q, *q);
3698 if (p == NULL) {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003699 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003700 } else {
3701 dot = p;
3702 }
3703 break;
3704 }
3705 }
3706 if (*q == '\n')
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003707 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003708 break;
3709 case 'f': // f- forward to a user specified char
3710 last_forward_char = get_one_char(); // get the search char
3711 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003712 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003713 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003714 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003715 case ';': // ;- look at rest of line for last forward char
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003716 do {
3717 if (last_forward_char == 0)
3718 break;
3719 q = dot + 1;
3720 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3721 q++;
3722 }
3723 if (*q == last_forward_char)
3724 dot = q;
3725 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003726 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003727 case ',': // repeat latest 'f' in opposite direction
Paul Foxb5ee8db2008-02-14 01:17:01 +00003728 if (last_forward_char == 0)
3729 break;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003730 do {
3731 q = dot - 1;
3732 while (q >= text && *q != '\n' && *q != last_forward_char) {
3733 q--;
3734 }
3735 if (q >= text && *q == last_forward_char)
3736 dot = q;
3737 } while (--cmdcnt > 0);
Paul Foxb5ee8db2008-02-14 01:17:01 +00003738 break;
3739
Eric Andersen3f980402001-04-04 17:31:15 +00003740 case '-': // -- goto prev line
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003741 do {
3742 dot_prev();
3743 dot_skip_over_ws();
3744 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003745 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003746#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003747 case '.': // .- repeat the last modifying command
3748 // Stuff the last_modifying_cmd back into stdin
3749 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003750 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003751 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003752 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003753 }
3754 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003755#endif
3756#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003757 case '?': // /- search for a pattern
3758 case '/': // /- search for a pattern
3759 buf[0] = c;
3760 buf[1] = '\0';
3761 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003762 if (q[0] && !q[1]) {
3763 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003764 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003765 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003766 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003767 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003768 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003769 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003770 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003771 goto dc3; // now find the pattern
3772 }
3773 // user changed mind and erased the "/"- do nothing
3774 break;
3775 case 'N': // N- backward search for last pattern
Eric Andersen3f980402001-04-04 17:31:15 +00003776 dir = BACK; // assume BACKWARD search
3777 p = dot - 1;
3778 if (last_search_pattern[0] == '?') {
3779 dir = FORWARD;
3780 p = dot + 1;
3781 }
3782 goto dc4; // now search for pattern
3783 break;
3784 case 'n': // n- repeat search for last pattern
3785 // search rest of text[] starting at next char
3786 // if search fails return orignal "p" not the "p+1" address
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003787 do {
3788 const char *msg;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003789 dc3:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003790 dir = FORWARD; // assume FORWARD search
3791 p = dot + 1;
3792 if (last_search_pattern[0] == '?') {
3793 dir = BACK;
3794 p = dot - 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003795 }
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003796 dc4:
3797 q = char_search(p, last_search_pattern + 1, dir, FULL);
3798 if (q != NULL) {
3799 dot = q; // good search, update "dot"
3800 msg = NULL;
3801 goto dc2;
3802 }
3803 // no pattern found between "dot" and "end"- continue at top
3804 p = text;
3805 if (dir == BACK) {
3806 p = end - 1;
3807 }
3808 q = char_search(p, last_search_pattern + 1, dir, FULL);
3809 if (q != NULL) { // found something
3810 dot = q; // found new pattern- goto it
3811 msg = "search hit BOTTOM, continuing at TOP";
3812 if (dir == BACK) {
3813 msg = "search hit TOP, continuing at BOTTOM";
3814 }
3815 } else {
3816 msg = "Pattern not found";
3817 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003818 dc2:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003819 if (msg)
3820 status_line_bold("%s", msg);
3821 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003822 break;
3823 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003824 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003825 if (q != NULL) { // found blank line
3826 dot = next_line(q); // move to next blank line
3827 }
3828 break;
3829 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003830 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003831 if (q != NULL) { // found blank line
3832 dot = next_line(q); // move to next blank line
3833 }
3834 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003835#endif /* FEATURE_VI_SEARCH */
Maninder Singh97c64912015-05-25 13:46:36 +02003836 case '0': // 0- goto beginning of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003837 case '1': // 1-
3838 case '2': // 2-
3839 case '3': // 3-
3840 case '4': // 4-
3841 case '5': // 5-
3842 case '6': // 6-
3843 case '7': // 7-
3844 case '8': // 8-
3845 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003846 if (c == '0' && cmdcnt < 1) {
3847 dot_begin(); // this was a standalone zero
3848 } else {
3849 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3850 }
3851 break;
3852 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003853 p = get_input_line(":"); // get input line- use "status line"
Eric Andersen3f980402001-04-04 17:31:15 +00003854 colon(p); // execute the command
Eric Andersen3f980402001-04-04 17:31:15 +00003855 break;
3856 case '<': // <- Left shift something
3857 case '>': // >- Right shift something
3858 cnt = count_lines(text, dot); // remember what line we are on
3859 c1 = get_one_char(); // get the type of thing to delete
3860 find_range(&p, &q, c1);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003861 yank_delete(p, q, 1, YANKONLY, NO_UNDO); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003862 p = begin_line(p);
3863 q = end_line(q);
3864 i = count_lines(p, q); // # of lines we are shifting
3865 for ( ; i > 0; i--, p = next_line(p)) {
3866 if (c == '<') {
3867 // shift left- remove tab or 8 spaces
3868 if (*p == '\t') {
3869 // shrink buffer 1 char
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003870 text_hole_delete(p, p, NO_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003871 } else if (*p == ' ') {
3872 // we should be calculating columns, not just SPACE
3873 for (j = 0; *p == ' ' && j < tabstop; j++) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003874 text_hole_delete(p, p, NO_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003875 }
3876 }
3877 } else if (c == '>') {
3878 // shift right -- add tab or 8 spaces
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003879 char_insert(p, '\t', ALLOW_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003880 }
3881 }
3882 dot = find_line(cnt); // what line were we on
3883 dot_skip_over_ws();
3884 end_cmd_q(); // stop adding to q
3885 break;
3886 case 'A': // A- append at e-o-l
3887 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003888 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003889 case 'a': // a- append after current char
3890 if (*dot != '\n')
3891 dot++;
3892 goto dc_i;
3893 break;
3894 case 'B': // B- back a blank-delimited Word
3895 case 'E': // E- end of a blank-delimited word
3896 case 'W': // W- forward a blank-delimited word
Eric Andersen3f980402001-04-04 17:31:15 +00003897 dir = FORWARD;
3898 if (c == 'B')
3899 dir = BACK;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003900 do {
3901 if (c == 'W' || isspace(dot[dir])) {
3902 dot = skip_thing(dot, 1, dir, S_TO_WS);
3903 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3904 }
3905 if (c != 'W')
3906 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3907 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003908 break;
3909 case 'C': // C- Change to e-o-l
3910 case 'D': // D- delete to e-o-l
3911 save_dot = dot;
3912 dot = dollar_line(dot); // move to before NL
3913 // copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003914 dot = yank_delete(save_dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete to e-o-l
Eric Andersen3f980402001-04-04 17:31:15 +00003915 if (c == 'C')
3916 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003917#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003918 if (c == 'D')
3919 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003920#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003921 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003922 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003923 c1 = get_one_char();
3924 if (c1 != 'g') {
3925 buf[0] = 'g';
Denys Vlasenkode1996d2016-09-15 13:53:42 +02003926 // c1 < 0 if the key was special. Try "g<up-arrow>"
3927 // TODO: if Unicode?
3928 buf[1] = (c1 >= 0 ? c1 : '*');
Paul Foxb5ee8db2008-02-14 01:17:01 +00003929 buf[2] = '\0';
3930 not_implemented(buf);
3931 break;
3932 }
3933 if (cmdcnt == 0)
3934 cmdcnt = 1;
3935 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003936 case 'G': // G- goto to a line number (default= E-O-F)
3937 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003938 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003939 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003940 }
3941 dot_skip_over_ws();
3942 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003943 case 'H': // H- goto top line on screen
3944 dot = screenbegin;
3945 if (cmdcnt > (rows - 1)) {
3946 cmdcnt = (rows - 1);
3947 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003948 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003949 do_cmd('+');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003950 }
Eric Andersen3f980402001-04-04 17:31:15 +00003951 dot_skip_over_ws();
3952 break;
3953 case 'I': // I- insert before first non-blank
3954 dot_begin(); // 0
3955 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003956 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003957 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003958 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003959 dc_i:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003960 cmd_mode = 1; // start inserting
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003961 undo_queue_commit(); // commit queue when cmd_mode changes
Eric Andersen3f980402001-04-04 17:31:15 +00003962 break;
3963 case 'J': // J- join current and next lines together
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003964 do {
3965 dot_end(); // move to NL
3966 if (dot < end - 1) { // make sure not last char in text[]
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003967#if ENABLE_FEATURE_VI_UNDO
3968 undo_push(dot, 1, UNDO_DEL);
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003969 *dot++ = ' '; // replace NL with space
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003970 undo_push((dot - 1), 1, UNDO_INS_CHAIN);
3971#else
3972 *dot++ = ' ';
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003973 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003974#endif
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003975 while (isblank(*dot)) { // delete leading WS
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003976 text_hole_delete(dot, dot, ALLOW_UNDO_CHAIN);
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003977 }
Eric Andersen3f980402001-04-04 17:31:15 +00003978 }
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003979 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003980 end_cmd_q(); // stop adding to q
3981 break;
3982 case 'L': // L- goto bottom line on screen
3983 dot = end_screen();
3984 if (cmdcnt > (rows - 1)) {
3985 cmdcnt = (rows - 1);
3986 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003987 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003988 do_cmd('-');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003989 }
Eric Andersen3f980402001-04-04 17:31:15 +00003990 dot_begin();
3991 dot_skip_over_ws();
3992 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003993 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003994 dot = screenbegin;
3995 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3996 dot = next_line(dot);
3997 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003998 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003999 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00004000 p = begin_line(dot);
4001 if (p[-1] == '\n') {
4002 dot_prev();
4003 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
4004 dot_end();
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004005 dot = char_insert(dot, '\n', ALLOW_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00004006 } else {
4007 dot_begin(); // 0
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004008 dot = char_insert(dot, '\n', ALLOW_UNDO); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00004009 dot_prev(); // -
4010 }
4011 goto dc_i;
4012 break;
4013 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004014 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00004015 cmd_mode = 2;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004016 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00004017 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004018 case KEYCODE_DELETE:
Denys Vlasenko49acc1a2015-03-12 21:15:34 +01004019 if (dot < end - 1)
4020 dot = yank_delete(dot, dot, 1, YANKDEL, ALLOW_UNDO);
4021 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004022 case 'X': // X- delete char before dot
4023 case 'x': // x- delete the current char
4024 case 's': // s- substitute the current char
Eric Andersen3f980402001-04-04 17:31:15 +00004025 dir = 0;
4026 if (c == 'X')
4027 dir = -1;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004028 do {
4029 if (dot[dir] != '\n') {
4030 if (c == 'X')
4031 dot--; // delete prev char
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004032 dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004033 }
4034 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004035 end_cmd_q(); // stop adding to q
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004036 if (c == 's')
4037 goto dc_i; // start inserting
Eric Andersen3f980402001-04-04 17:31:15 +00004038 break;
4039 case 'Z': // Z- if modified, {write}; exit
4040 // ZZ means to save file (if necessary), then exit
4041 c1 = get_one_char();
4042 if (c1 != 'Z') {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02004043 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00004044 break;
4045 }
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004046 if (modified_count) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004047 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denys Vlasenko778794d2013-01-22 10:13:52 +01004048 status_line_bold("'%s' is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00004049 break;
Paul Foxf0305b72006-03-28 14:18:21 +00004050 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004051 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00004052 if (cnt < 0) {
4053 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004054 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00004055 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00004056 editing = 0;
4057 }
4058 } else {
4059 editing = 0;
4060 }
4061 break;
4062 case '^': // ^- move to first non-blank on line
4063 dot_begin();
4064 dot_skip_over_ws();
4065 break;
4066 case 'b': // b- back a word
4067 case 'e': // e- end of word
Eric Andersen3f980402001-04-04 17:31:15 +00004068 dir = FORWARD;
4069 if (c == 'b')
4070 dir = BACK;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004071 do {
4072 if ((dot + dir) < text || (dot + dir) > end - 1)
4073 break;
4074 dot += dir;
4075 if (isspace(*dot)) {
4076 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
4077 }
4078 if (isalnum(*dot) || *dot == '_') {
4079 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
4080 } else if (ispunct(*dot)) {
4081 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
4082 }
4083 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004084 break;
4085 case 'c': // c- change something
4086 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004087#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004088 case 'y': // y- yank something
4089 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004090#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00004091 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00004092 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00004093 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004094#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004095 if (c == 'y' || c == 'Y')
4096 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004097#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004098 c1 = 'y';
4099 if (c != 'Y')
4100 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00004101 // determine range, and whether it spans lines
4102 ml = find_range(&p, &q, c1);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004103 place_cursor(0, 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004104 if (c1 == 27) { // ESC- user changed mind and wants out
4105 c = c1 = 27; // Escape- do nothing
4106 } else if (strchr("wW", c1)) {
4107 if (c == 'c') {
4108 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004109 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00004110 if (q <= text || q[-1] == '\n')
4111 break;
4112 q--;
4113 }
4114 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004115 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word
Paul Foxc51fc7b2008-03-06 01:34:23 +00004116 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
4117 // partial line copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004118 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word
Paul Foxc51fc7b2008-03-06 01:34:23 +00004119 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
4120 // whole line copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004121 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete lines
Paul Foxc51fc7b2008-03-06 01:34:23 +00004122 whole = 1;
4123 } else {
4124 // could not recognize object
4125 c = c1 = 27; // error-
4126 ml = 0;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02004127 indicate_error();
Paul Foxc51fc7b2008-03-06 01:34:23 +00004128 }
4129 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00004130 if (c == 'c') {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004131 dot = char_insert(dot, '\n', ALLOW_UNDO_CHAIN);
Eric Andersen1c0d3112001-04-16 15:46:44 +00004132 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00004133 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00004134 dot_prev();
4135 }
4136 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00004137 dot_begin();
4138 dot_skip_over_ws();
4139 }
Eric Andersen3f980402001-04-04 17:31:15 +00004140 }
4141 if (c1 != 27) {
4142 // if CHANGING, not deleting, start inserting after the delete
4143 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004144 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00004145 goto dc_i; // start inserting
4146 }
4147 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004148 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00004149 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004150#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004151 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004152 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00004153 }
4154 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004155 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00004156 for (cnt = 0; p <= q; p++) {
4157 if (*p == '\n')
4158 cnt++;
4159 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004160 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004161 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004162#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004163 end_cmd_q(); // stop adding to q
4164 }
4165 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00004166 }
Eric Andersen3f980402001-04-04 17:31:15 +00004167 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004168 case KEYCODE_UP: // cursor key Up
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004169 do {
4170 dot_prev();
4171 dot = move_to_col(dot, ccol + offset); // try stay in same col
4172 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004173 break;
4174 case 'r': // r- replace the current char with user input
4175 c1 = get_one_char(); // get the replacement char
4176 if (*dot != '\n') {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004177#if ENABLE_FEATURE_VI_UNDO
4178 undo_push(dot, 1, UNDO_DEL);
4179 *dot = c1;
4180 undo_push(dot, 1, UNDO_INS_CHAIN);
4181#else
Eric Andersen3f980402001-04-04 17:31:15 +00004182 *dot = c1;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004183 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004184#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004185 }
4186 end_cmd_q(); // stop adding to q
4187 break;
Eric Andersen822c3832001-05-07 17:37:43 +00004188 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00004189 last_forward_char = get_one_char();
4190 do_cmd(';');
4191 if (*dot == last_forward_char)
4192 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00004193 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00004194 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004195 case 'w': // w- forward a word
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004196 do {
4197 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
4198 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
4199 } else if (ispunct(*dot)) { // we are on PUNCT
4200 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
4201 }
4202 if (dot < end - 1)
4203 dot++; // move over word
4204 if (isspace(*dot)) {
4205 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
4206 }
4207 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004208 break;
4209 case 'z': // z-
4210 c1 = get_one_char(); // get the replacement char
4211 cnt = 0;
4212 if (c1 == '.')
4213 cnt = (rows - 2) / 2; // put dot at center
4214 if (c1 == '-')
4215 cnt = rows - 2; // put dot at bottom
4216 screenbegin = begin_line(dot); // start dot at top
4217 dot_scroll(cnt, -1);
4218 break;
4219 case '|': // |- move to column "cmdcnt"
4220 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
4221 break;
4222 case '~': // ~- flip the case of letters a-z -> A-Z
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004223 do {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004224#if ENABLE_FEATURE_VI_UNDO
4225 if (islower(*dot)) {
4226 undo_push(dot, 1, UNDO_DEL);
4227 *dot = toupper(*dot);
4228 undo_push(dot, 1, UNDO_INS_CHAIN);
4229 } else if (isupper(*dot)) {
4230 undo_push(dot, 1, UNDO_DEL);
4231 *dot = tolower(*dot);
4232 undo_push(dot, 1, UNDO_INS_CHAIN);
4233 }
4234#else
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004235 if (islower(*dot)) {
4236 *dot = toupper(*dot);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004237 modified_count++;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004238 } else if (isupper(*dot)) {
4239 *dot = tolower(*dot);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004240 modified_count++;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004241 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004242#endif
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004243 dot_right();
4244 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004245 end_cmd_q(); // stop adding to q
4246 break;
4247 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004248 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00004249 dot_begin();
4250 break;
4251 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004252#if 0
4253 case KEYCODE_FUN1: // Function Key F1
4254 case KEYCODE_FUN2: // Function Key F2
4255 case KEYCODE_FUN3: // Function Key F3
4256 case KEYCODE_FUN4: // Function Key F4
4257 case KEYCODE_FUN5: // Function Key F5
4258 case KEYCODE_FUN6: // Function Key F6
4259 case KEYCODE_FUN7: // Function Key F7
4260 case KEYCODE_FUN8: // Function Key F8
4261 case KEYCODE_FUN9: // Function Key F9
4262 case KEYCODE_FUN10: // Function Key F10
4263 case KEYCODE_FUN11: // Function Key F11
4264 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00004265 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004266#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004267 }
4268
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004269 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00004270 // if text[] just became empty, add back an empty line
4271 if (end == text) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004272 char_insert(text, '\n', NO_UNDO); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00004273 dot = text;
4274 }
4275 // it is OK for dot to exactly equal to end, otherwise check dot validity
4276 if (dot != end) {
4277 dot = bound_dot(dot); // make sure "dot" is valid
4278 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004279#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004280 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004281#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004282
4283 if (!isdigit(c))
4284 cmdcnt = 0; // cmd was not a number, reset cmdcnt
4285 cnt = dot - begin_line(dot);
4286 // Try to stay off of the Newline
4287 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
4288 dot--;
4289}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004290
Paul Fox35e9c5d2008-03-06 16:26:12 +00004291/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004292#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004293static int totalcmds = 0;
4294static int Mp = 85; // Movement command Probability
4295static int Np = 90; // Non-movement command Probability
4296static int Dp = 96; // Delete command Probability
4297static int Ip = 97; // Insert command Probability
4298static int Yp = 98; // Yank command Probability
4299static int Pp = 99; // Put command Probability
4300static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004301static const char chars[20] = "\t012345 abcdABCD-=.$";
4302static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004303 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004304 "broadcast", "the", "emergency", "of",
4305 "system", "quick", "brown", "fox",
4306 "jumped", "over", "lazy", "dogs",
4307 "back", "January", "Febuary", "March"
4308};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004309static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004310 "You should have received a copy of the GNU General Public License\n",
4311 "char c, cm, *cmd, *cmd1;\n",
4312 "generate a command by percentages\n",
4313 "Numbers may be typed as a prefix to some commands.\n",
4314 "Quit, discarding changes!\n",
4315 "Forced write, if permission originally not valid.\n",
4316 "In general, any ex or ed command (such as substitute or delete).\n",
4317 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
4318 "Please get w/ me and I will go over it with you.\n",
4319 "The following is a list of scheduled, committed changes.\n",
4320 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
4321 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
4322 "Any question about transactions please contact Sterling Huxley.\n",
4323 "I will try to get back to you by Friday, December 31.\n",
4324 "This Change will be implemented on Friday.\n",
4325 "Let me know if you have problems accessing this;\n",
4326 "Sterling Huxley recently added you to the access list.\n",
4327 "Would you like to go to lunch?\n",
4328 "The last command will be automatically run.\n",
4329 "This is too much english for a computer geek.\n",
4330};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004331static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004332 "You should have received a copy of the GNU General Public License\n",
4333 "char c, cm, *cmd, *cmd1;\n",
4334 "generate a command by percentages\n",
4335 "Numbers may be typed as a prefix to some commands.\n",
4336 "Quit, discarding changes!\n",
4337 "Forced write, if permission originally not valid.\n",
4338 "In general, any ex or ed command (such as substitute or delete).\n",
4339 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
4340 "Please get w/ me and I will go over it with you.\n",
4341 "The following is a list of scheduled, committed changes.\n",
4342 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
4343 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
4344 "Any question about transactions please contact Sterling Huxley.\n",
4345 "I will try to get back to you by Friday, December 31.\n",
4346 "This Change will be implemented on Friday.\n",
4347 "Let me know if you have problems accessing this;\n",
4348 "Sterling Huxley recently added you to the access list.\n",
4349 "Would you like to go to lunch?\n",
4350 "The last command will be automatically run.\n",
4351 "This is too much english for a computer geek.\n",
4352};
4353
4354// create a random command to execute
4355static void crash_dummy()
4356{
4357 static int sleeptime; // how long to pause between commands
4358 char c, cm, *cmd, *cmd1;
4359 int i, cnt, thing, rbi, startrbi, percent;
4360
4361 // "dot" movement commands
4362 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
4363
4364 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02004365 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004366 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004367 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02004368 readbuffer[0] = 'X';
4369 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004370 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004371 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004372 // generate a command by percentages
4373 percent = (int) lrand48() % 100; // get a number from 0-99
4374 if (percent < Mp) { // Movement commands
4375 // available commands
4376 cmd = cmd1;
4377 M++;
4378 } else if (percent < Np) { // non-movement commands
4379 cmd = "mz<>\'\""; // available commands
4380 N++;
4381 } else if (percent < Dp) { // Delete commands
4382 cmd = "dx"; // available commands
4383 D++;
4384 } else if (percent < Ip) { // Inset commands
4385 cmd = "iIaAsrJ"; // available commands
4386 I++;
4387 } else if (percent < Yp) { // Yank commands
4388 cmd = "yY"; // available commands
4389 Y++;
4390 } else if (percent < Pp) { // Put commands
4391 cmd = "pP"; // available commands
4392 P++;
4393 } else {
4394 // We do not know how to handle this command, try again
4395 U++;
4396 goto cd0;
4397 }
4398 // randomly pick one of the available cmds from "cmd[]"
4399 i = (int) lrand48() % strlen(cmd);
4400 cm = cmd[i];
4401 if (strchr(":\024", cm))
4402 goto cd0; // dont allow colon or ctrl-T commands
4403 readbuffer[rbi++] = cm; // put cmd into input buffer
4404
4405 // now we have the command-
4406 // there are 1, 2, and multi char commands
4407 // find out which and generate the rest of command as necessary
4408 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
4409 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
4410 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
4411 cmd1 = "abcdefghijklmnopqrstuvwxyz";
4412 }
4413 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4414 c = cmd1[thing];
4415 readbuffer[rbi++] = c; // add movement to input buffer
4416 }
4417 if (strchr("iIaAsc", cm)) { // multi-char commands
4418 if (cm == 'c') {
4419 // change some thing
4420 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4421 c = cmd1[thing];
4422 readbuffer[rbi++] = c; // add movement to input buffer
4423 }
4424 thing = (int) lrand48() % 4; // what thing to insert
4425 cnt = (int) lrand48() % 10; // how many to insert
4426 for (i = 0; i < cnt; i++) {
4427 if (thing == 0) { // insert chars
4428 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
4429 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004430 strcat(readbuffer, words[(int) lrand48() % 20]);
4431 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004432 sleeptime = 0; // how fast to type
4433 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004434 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004435 sleeptime = 0; // how fast to type
4436 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004437 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004438 sleeptime = 0; // how fast to type
4439 }
4440 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004441 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004442 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02004443 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004444 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004445 totalcmds++;
4446 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004447 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004448}
4449
4450// test to see if there are any errors
4451static void crash_test()
4452{
4453 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004454
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004455 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004456 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004457
4458 msg[0] = '\0';
4459 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004460 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004461 }
4462 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004463 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004464 }
4465 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004466 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004467 }
4468 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004469 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004470 }
4471 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004472 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004473 }
4474 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004475 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004476 }
4477
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004478 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00004479 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Denys Vlasenko04b52892012-06-11 13:51:38 +02004480 totalcmds, last_input_char, msg, ESC_BOLD_TEXT, ESC_NORM_TEXT);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01004481 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004482 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004483 if (d[0] == '\n' || d[0] == '\r')
4484 break;
4485 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004486 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004487 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004488 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004489 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004490 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4491 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4492 oldtim = tim;
4493 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004494}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004495#endif