blob: f355712ab2568bb3cadb410528f7e7c8bad3e224 [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
33//config: int "Maximum screen width in vi"
34//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
42//config: bool "Allow vi to display 8-bit chars (otherwise shows dots)"
43//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
56//config: Enable a limited set of colon commands for vi. This does not
57//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
64//config: This will enable you to use yank and put, as well as mark in
65//config: busybox vi.
66//config:
67//config:config FEATURE_VI_SEARCH
68//config: bool "Enable search and replace cmds"
69//config: default y
70//config: depends on VI
71//config: help
72//config: Select this if you wish to be able to do search and replace in
73//config: busybox vi.
74//config:
75//config:config FEATURE_VI_REGEX_SEARCH
76//config: bool "Enable regex in search and replace"
77//config: default n # Uses GNU regex, which may be unavailable. FIXME
78//config: depends on FEATURE_VI_SEARCH
79//config: help
80//config: Use extended regex search.
81//config:
82//config:config FEATURE_VI_USE_SIGNALS
83//config: bool "Catch signals"
84//config: default y
85//config: depends on VI
86//config: help
87//config: Selecting this option will make busybox vi signal aware. This will
88//config: make busybox vi support SIGWINCH to deal with Window Changes, catch
89//config: Ctrl-Z and Ctrl-C and alarms.
90//config:
91//config:config FEATURE_VI_DOT_CMD
92//config: bool "Remember previous cmd and \".\" cmd"
93//config: default y
94//config: depends on VI
95//config: help
96//config: Make busybox vi remember the last command and be able to repeat it.
97//config:
98//config:config FEATURE_VI_READONLY
99//config: bool "Enable -R option and \"view\" mode"
100//config: default y
101//config: depends on VI
102//config: help
103//config: Enable the read-only command line option, which allows the user to
104//config: open a file in read-only mode.
105//config:
106//config:config FEATURE_VI_SETOPTS
107//config: bool "Enable set-able options, ai ic showmatch"
108//config: default y
109//config: depends on VI
110//config: help
111//config: Enable the editor to set some (ai, ic, showmatch) options.
112//config:
113//config:config FEATURE_VI_SET
114//config: bool "Support for :set"
115//config: default y
116//config: depends on VI
117//config: help
118//config: Support for ":set".
119//config:
120//config:config FEATURE_VI_WIN_RESIZE
121//config: bool "Handle window resize"
122//config: default y
123//config: depends on VI
124//config: help
125//config: Make busybox vi behave nicely with terminals that get resized.
126//config:
127//config:config FEATURE_VI_ASK_TERMINAL
128//config: bool "Use 'tell me cursor position' ESC sequence to measure window"
129//config: default y
130//config: depends on VI
131//config: help
132//config: If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
133//config: this option makes vi perform a last-ditch effort to find it:
Denys Vlasenko4e552a72011-07-25 15:18:20 +0200134//config: position cursor to 999,999 and ask terminal to report real
135//config: cursor position using "ESC [ 6 n" escape sequence, then read stdin.
Walter Harmsb9ba5802011-06-27 02:59:37 +0200136//config:
137//config: This is not clean but helps a lot on serial lines and such.
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200138//config:config FEATURE_VI_UNDO
139//config: bool "Support undo command 'u'"
140//config: default y
141//config: depends on VI
142//config: help
143//config: Support the 'u' command to undo insertion, deletion, and replacement
144//config: of text.
145//config:config FEATURE_VI_UNDO_QUEUE
146//config: bool "Enable undo operation queuing"
147//config: default y
148//config: depends on FEATURE_VI_UNDO
149//config: help
150//config: The vi undo functions can use an intermediate queue to greatly lower
151//config: malloc() calls and overhead. When the maximum size of this queue is
152//config: reached, the contents of the queue are committed to the undo stack.
153//config: This increases the size of the undo code and allows some undo
154//config: operations (especially un-typing/backspacing) to be far more useful.
155//config:config FEATURE_VI_UNDO_QUEUE_MAX
156//config: int "Maximum undo character queue size"
157//config: default 256
158//config: range 32 65536
159//config: depends on FEATURE_VI_UNDO_QUEUE
160//config: help
161//config: This option sets the number of bytes used at runtime for the queue.
162//config: Smaller values will create more undo objects and reduce the amount
163//config: of typed or backspaced characters that are grouped into one undo
164//config: operation; larger values increase the potential size of each undo
165//config: and will generally malloc() larger objects and less frequently.
166//config: Unless you want more (or less) frequent "undo points" while typing,
167//config: you should probably leave this unchanged.
Walter Harmsb9ba5802011-06-27 02:59:37 +0200168
169//applet:IF_VI(APPLET(vi, BB_DIR_BIN, BB_SUID_DROP))
170
171//kbuild:lib-$(CONFIG_VI) += vi.o
172
Pere Orga6a3e01d2011-04-01 22:56:30 +0200173//usage:#define vi_trivial_usage
174//usage: "[OPTIONS] [FILE]..."
175//usage:#define vi_full_usage "\n\n"
176//usage: "Edit FILE\n"
Pere Orga6a3e01d2011-04-01 22:56:30 +0200177//usage: IF_FEATURE_VI_COLON(
Denys Vlasenko605f2642012-06-11 01:53:33 +0200178//usage: "\n -c CMD Initial command to run ($EXINIT also available)"
Pere Orga6a3e01d2011-04-01 22:56:30 +0200179//usage: )
180//usage: IF_FEATURE_VI_READONLY(
181//usage: "\n -R Read-only"
182//usage: )
Denys Vlasenko605f2642012-06-11 01:53:33 +0200183//usage: "\n -H List available features"
Pere Orga6a3e01d2011-04-01 22:56:30 +0200184
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000185#include "libbb.h"
Denys Vlasenko066f3992011-07-03 03:19:43 +0200186/* Should be after libbb.h: on some systems regex.h needs sys/types.h: */
187#if ENABLE_FEATURE_VI_REGEX_SEARCH
188# include <regex.h>
189#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000190
Paul Fox35e9c5d2008-03-06 16:26:12 +0000191/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000192#define ENABLE_FEATURE_VI_CRASHME 0
193
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000194
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000195#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000196
197#if ENABLE_FEATURE_VI_8BIT
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100198//FIXME: this does not work properly for Unicode anyway
199# define Isprint(c) (isprint)(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000200#else
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100201# define Isprint(c) isprint_asciionly(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000202#endif
203
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000204#else
205
206/* 0x9b is Meta-ESC */
207#if ENABLE_FEATURE_VI_8BIT
Denys Vlasenko066f3992011-07-03 03:19:43 +0200208# define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000209#else
Denys Vlasenko066f3992011-07-03 03:19:43 +0200210# define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +0000211#endif
212
213#endif
214
215
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000216enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000217 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000218 // User input len. Need not be extra big.
219 // Lines in file being edited *can* be bigger than this.
220 MAX_INPUT_LEN = 128,
221 // Sanity limits. We have only one buffer of this size.
222 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
223 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000224};
Eric Andersen3f980402001-04-04 17:31:15 +0000225
Denys Vlasenko04b52892012-06-11 13:51:38 +0200226/* VT102 ESC sequences.
227 * See "Xterm Control Sequences"
228 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
229 */
230/* Inverse/Normal text */
231#define ESC_BOLD_TEXT "\033[7m"
232#define ESC_NORM_TEXT "\033[0m"
233/* Bell */
234#define ESC_BELL "\007"
235/* Clear-to-end-of-line */
236#define ESC_CLEAR2EOL "\033[K"
237/* Clear-to-end-of-screen.
238 * (We use default param here.
239 * Full sequence is "ESC [ <num> J",
240 * <num> is 0/1/2 = "erase below/above/all".)
241 */
242#define ESC_CLEAR2EOS "\033[J"
243/* Cursor to given coordinate (1,1: top left) */
244#define ESC_SET_CURSOR_POS "\033[%u;%uH"
245//UNUSED
246///* Cursor up and down */
247//#define ESC_CURSOR_UP "\033[A"
248//#define ESC_CURSOR_DOWN "\n"
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000249
Denis Vlasenkoded6ad32008-10-14 12:26:30 +0000250#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
251// cmds modifying text[]
252// vda: removed "aAiIs" as they switch us into insert mode
253// and remembering input for replay after them makes no sense
254static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~";
255#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000256
Rob Landleybc68cd12006-03-10 19:22:06 +0000257enum {
258 YANKONLY = FALSE,
259 YANKDEL = TRUE,
260 FORWARD = 1, // code depends on "1" for array index
261 BACK = -1, // code depends on "-1" for array index
262 LIMITED = 0, // how much of text[] in char_search
263 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000264
Rob Landleybc68cd12006-03-10 19:22:06 +0000265 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
266 S_TO_WS = 2, // used in skip_thing() for moving "dot"
267 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
268 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000269 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000270};
Eric Andersen3f980402001-04-04 17:31:15 +0000271
Denis Vlasenkob1759462008-06-20 20:20:54 +0000272
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000273/* vi.c expects chars to be unsigned. */
274/* busybox build system provides that, but it's better */
275/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000276
Denis Vlasenkob1759462008-06-20 20:20:54 +0000277struct globals {
278 /* many references - keep near the top of globals */
279 char *text, *end; // pointers to the user data in memory
280 char *dot; // where all the action takes place
281 int text_size; // size of the allocated buffer
282
283 /* the rest */
284 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000285#define VI_AUTOINDENT 1
286#define VI_SHOWMATCH 2
287#define VI_IGNORECASE 4
288#define VI_ERR_METHOD 8
289#define autoindent (vi_setops & VI_AUTOINDENT)
290#define showmatch (vi_setops & VI_SHOWMATCH )
291#define ignorecase (vi_setops & VI_IGNORECASE)
292/* indicate error with beep or flash */
293#define err_method (vi_setops & VI_ERR_METHOD)
294
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000295#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000296 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000297#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
298#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
299#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000300#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000301#define SET_READONLY_FILE(flags) ((void)0)
302#define SET_READONLY_MODE(flags) ((void)0)
303#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000304#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000305
Denis Vlasenkob1759462008-06-20 20:20:54 +0000306 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000307 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000308 smallint cmd_mode; // 0=command 1=insert 2=replace
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200309 int modified_count; // buffer contents changed if !0
310 int last_modified_count; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000311 int save_argc; // how many file names on cmd line
312 int cmdcnt; // repetition count
313 unsigned rows, columns; // the terminal screen is this size
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700314#if ENABLE_FEATURE_VI_ASK_TERMINAL
315 int get_rowcol_error;
316#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000317 int crow, ccol; // cursor is on Crow x Ccol
318 int offset; // chars scrolled off the screen to the left
319 int have_status_msg; // is default edit status needed?
320 // [don't make smallint!]
321 int last_status_cksum; // hash of current status line
322 char *current_filename;
323 char *screenbegin; // index into text[], of top line on the screen
324 char *screen; // pointer to the virtual screen buffer
325 int screensize; // and its size
326 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000327 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000328 char erase_char; // the users erase character
329 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000330
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000331#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000332 smallint adding2q; // are we currently adding user input to q
333 int lmc_len; // length of last_modifying_cmd
334 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000335#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000336#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000337 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000338#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000339#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000340 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000341#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000342
Denis Vlasenkob1759462008-06-20 20:20:54 +0000343 /* former statics */
344#if ENABLE_FEATURE_VI_YANKMARK
345 char *edit_file__cur_line;
346#endif
347 int refresh__old_offset;
348 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000349
Denis Vlasenkob1759462008-06-20 20:20:54 +0000350 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000351#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000352 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000353 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000354 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
355 char *context_start, *context_end;
356#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000357#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000358 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000359#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000360 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000361#if ENABLE_FEATURE_VI_COLON
362 char *initial_cmds[3]; // currently 2 entries, NULL terminated
363#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000364 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000365 // but CRASHME mode uses it as generated command buffer too
366#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000367 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000368#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000369 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000370#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000371#define STATUS_BUFFER_LEN 200
372 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
373#if ENABLE_FEATURE_VI_DOT_CMD
374 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
375#endif
376 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000377
378 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200379#if ENABLE_FEATURE_VI_UNDO
380// undo_push() operations
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200381#define UNDO_INS 0
382#define UNDO_DEL 1
383#define UNDO_INS_CHAIN 2
384#define UNDO_DEL_CHAIN 3
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200385// UNDO_*_QUEUED must be equal to UNDO_xxx ORed with UNDO_QUEUED_FLAG
386#define UNDO_QUEUED_FLAG 4
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200387#define UNDO_INS_QUEUED 4
388#define UNDO_DEL_QUEUED 5
389#define UNDO_USE_SPOS 32
390#define UNDO_EMPTY 64
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200391// Pass-through flags for functions that can be undone
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200392#define NO_UNDO 0
393#define ALLOW_UNDO 1
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200394#define ALLOW_UNDO_CHAIN 2
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200395# if ENABLE_FEATURE_VI_UNDO_QUEUE
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200396#define ALLOW_UNDO_QUEUED 3
397 char undo_queue_state;
398 int undo_q;
399 char *undo_queue_spos; // Start position of queued operation
400 char undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX];
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200401# else
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200402// If undo queuing disabled, don't invoke the missing queue logic
403#define ALLOW_UNDO_QUEUED 1
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200404# endif
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200405
406 struct undo_object {
407 struct undo_object *prev; // Linking back avoids list traversal (LIFO)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200408 int start; // Offset where the data should be restored/deleted
409 int length; // total data size
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200410 uint8_t u_type; // 0=deleted, 1=inserted, 2=swapped
411 char undo_text[1]; // text that was deleted (if deletion)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200412 } *undo_stack_tail;
413#endif /* ENABLE_FEATURE_VI_UNDO */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000414};
415#define G (*ptr_to_globals)
416#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000417#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000418#define end (G.end )
419#define dot (G.dot )
420#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000421
422#define vi_setops (G.vi_setops )
423#define editing (G.editing )
424#define cmd_mode (G.cmd_mode )
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200425#define modified_count (G.modified_count )
426#define last_modified_count (G.last_modified_count)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000427#define save_argc (G.save_argc )
428#define cmdcnt (G.cmdcnt )
429#define rows (G.rows )
430#define columns (G.columns )
431#define crow (G.crow )
432#define ccol (G.ccol )
433#define offset (G.offset )
434#define status_buffer (G.status_buffer )
435#define have_status_msg (G.have_status_msg )
436#define last_status_cksum (G.last_status_cksum )
437#define current_filename (G.current_filename )
438#define screen (G.screen )
439#define screensize (G.screensize )
440#define screenbegin (G.screenbegin )
441#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000442#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000443#define erase_char (G.erase_char )
444#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000445#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000446#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000447#else
448#define readonly_mode 0
449#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000450#define adding2q (G.adding2q )
451#define lmc_len (G.lmc_len )
452#define ioq (G.ioq )
453#define ioq_start (G.ioq_start )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000454#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000455#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000456
Denis Vlasenkob1759462008-06-20 20:20:54 +0000457#define edit_file__cur_line (G.edit_file__cur_line)
458#define refresh__old_offset (G.refresh__old_offset)
459#define format_edit_status__tot (G.format_edit_status__tot)
460
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000461#define YDreg (G.YDreg )
462#define Ureg (G.Ureg )
463#define mark (G.mark )
464#define context_start (G.context_start )
465#define context_end (G.context_end )
466#define restart (G.restart )
467#define term_orig (G.term_orig )
468#define term_vi (G.term_vi )
469#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000470#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000471#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000472#define last_modifying_cmd (G.last_modifying_cmd )
473#define get_input_line__buf (G.get_input_line__buf)
474
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200475#if ENABLE_FEATURE_VI_UNDO
476#define undo_stack_tail (G.undo_stack_tail )
477# if ENABLE_FEATURE_VI_UNDO_QUEUE
478#define undo_queue_state (G.undo_queue_state)
479#define undo_q (G.undo_q )
480#define undo_queue (G.undo_queue )
481#define undo_queue_spos (G.undo_queue_spos )
482# endif
483#endif
484
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000485#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000486 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200487 last_modified_count = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000488 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000489 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000490} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000491
Denis Vlasenkob1759462008-06-20 20:20:54 +0000492
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000493static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000494static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000495static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000496static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
497static char *begin_line(char *); // return pointer to cur line B-o-l
498static char *end_line(char *); // return pointer to cur line E-o-l
499static char *prev_line(char *); // return pointer to prev line B-o-l
500static char *next_line(char *); // return pointer to next line B-o-l
501static char *end_screen(void); // get pointer to last char on screen
502static int count_lines(char *, char *); // count line from start to stop
Maninder Singh97c64912015-05-25 13:46:36 +0200503static char *find_line(int); // find beginning of line #li
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000504static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000505static void dot_left(void); // move dot left- dont leave line
506static void dot_right(void); // move dot right- dont leave line
507static void dot_begin(void); // move dot to B-o-l
508static void dot_end(void); // move dot to E-o-l
509static void dot_next(void); // move dot to next line B-o-l
510static void dot_prev(void); // move dot to prev line B-o-l
511static void dot_scroll(int, int); // move the screen up or down
512static void dot_skip_over_ws(void); // move dot pat WS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000513static char *bound_dot(char *); // make sure text[0] <= P < "end"
514static char *new_screen(int, int); // malloc virtual screen memory
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200515#if !ENABLE_FEATURE_VI_UNDO
516#define char_insert(a,b,c) char_insert(a,b)
517#endif
518static char *char_insert(char *, char, int); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000519// might reallocate text[]! use p += stupid_insert(p, ...),
520// and be careful to not use pointers into potentially freed text[]!
521static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000522static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000523static int st_test(char *, int, int, char *); // helper for skip_thing()
524static char *skip_thing(char *, int, int, int); // skip some object
525static char *find_pair(char *, char); // find matching pair () [] {}
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200526#if !ENABLE_FEATURE_VI_UNDO
527#define text_hole_delete(a,b,c) text_hole_delete(a,b)
528#endif
529static char *text_hole_delete(char *, char *, int); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000530// might reallocate text[]! use p += text_hole_make(p, ...),
531// and be careful to not use pointers into potentially freed text[]!
532static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200533#if !ENABLE_FEATURE_VI_UNDO
534#define yank_delete(a,b,c,d,e) yank_delete(a,b,c,d)
535#endif
536static char *yank_delete(char *, char *, int, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000537static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000538static void rawmode(void); // set "raw" mode on tty
539static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000540// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
541static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000542static int readit(void); // read (maybe cursor) key from stdin
543static int get_one_char(void); // read 1 char from stdin
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000544// file_insert might reallocate text[]!
545static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000546static int file_write(char *, char *, char *);
Denys Vlasenko04b52892012-06-11 13:51:38 +0200547static void place_cursor(int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000548static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000549static void clear_to_eol(void);
550static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000551static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000552static void standout_start(void); // send "start reverse video" sequence
553static void standout_end(void); // send "end reverse video" sequence
554static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000555static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000556static void status_line(const char *, ...); // print to status buf
557static void status_line_bold(const char *, ...);
Denys Vlasenko9e7c0022013-03-15 02:17:29 +0100558static void status_line_bold_errno(const char *fn);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000559static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000560static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000561static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000562static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000563static void refresh(int); // update the terminal from screen[]
564
Denys Vlasenko05399fc2014-09-15 17:06:10 +0200565static void indicate_error(void); // use flash or beep to indicate error
Paul Fox90372ed2005-10-09 14:26:26 +0000566static void Hit_Return(void);
567
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000568#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000569static char *char_search(char *, const char *, int, int); // search for pattern starting at p
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000570#endif
571#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000572static char *get_one_address(char *, int *); // get colon addr, if present
573static char *get_address(char *, int *, int *); // get two colon addrs, if present
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000574#endif
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200575static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000576#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000577static void winch_sig(int); // catch window size changes
578static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000579static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000580#endif
581#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000582static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000583static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000584#else
585#define end_cmd_q() ((void)0)
586#endif
587#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000588static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000589#endif
590#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000591// might reallocate text[]! use p += string_insert(p, ...),
592// and be careful to not use pointers into potentially freed text[]!
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200593# if !ENABLE_FEATURE_VI_UNDO
594#define string_insert(a,b,c) string_insert(a,b)
595# endif
596static uintptr_t string_insert(char *, const char *, int); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000597#endif
598#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000599static char *text_yank(char *, char *, int); // save copy of "p" into a register
600static char what_reg(void); // what is letter of current YDreg
601static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000602#endif
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200603#if ENABLE_FEATURE_VI_UNDO
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200604static void flush_undo_data(void);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200605static void undo_push(char *, unsigned int, unsigned char); // Push an operation on the undo stack
606static void undo_pop(void); // Undo the last operation
607# if ENABLE_FEATURE_VI_UNDO_QUEUE
608static void undo_queue_commit(void); // Flush any queued objects to the undo stack
609# else
610# define undo_queue_commit() ((void)0)
611# endif
612#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200613#define flush_undo_data() ((void)0)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200614#define undo_queue_commit() ((void)0)
615#endif
616
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000617#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000618static void crash_dummy();
619static void crash_test();
620static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000621#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000622
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000623static void write1(const char *out)
624{
625 fputs(out, stdout);
626}
627
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000628int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000629int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000630{
Eric Andersend402edf2001-04-04 19:29:48 +0000631 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000632
633 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000634
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200635#if ENABLE_FEATURE_VI_UNDO
636 /* undo_stack_tail = NULL; - already is */
637#if ENABLE_FEATURE_VI_UNDO_QUEUE
638 undo_queue_state = UNDO_EMPTY;
639 /* undo_q = 0; - already is */
640#endif
641#endif
642
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000643#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000644 my_pid = getpid();
645#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000646#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000647 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000648#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000649#ifdef NO_SUCH_APPLET_YET
650 /* If we aren't "vi", we are "view" */
651 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000652 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000653 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000654#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000655
Denys Vlasenko605f2642012-06-11 01:53:33 +0200656 // autoindent is not default in vim 7.3
657 vi_setops = /*VI_AUTOINDENT |*/ VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000658 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000659 // 2- process EXINIT variable from environment
660 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000661#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000662 {
663 char *p = getenv("EXINIT");
664 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000665 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000666 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000667#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000668 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000669 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000670#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000671 case 'C':
672 crashme = 1;
673 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000674#endif
675#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000676 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000677 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000678 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000679#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000680#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000681 case 'c': // cmd line vi command
682 if (*optarg)
Denys Vlasenko605f2642012-06-11 01:53:33 +0200683 initial_cmds[initial_cmds[0] != NULL] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000684 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000685#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000686 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000687 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000688 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000689 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000690 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000691 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000692 }
693 }
694
695 // The argv array can be used by the ":next" and ":rewind" commands
Dennis Groenenc0657e02012-01-31 14:12:38 +0100696 argv += optind;
697 argc -= optind;
Eric Andersen3f980402001-04-04 17:31:15 +0000698
699 //----- This is the main file handling loop --------------
Denys Vlasenko04b52892012-06-11 13:51:38 +0200700 save_argc = argc;
701 optind = 0;
Denys Vlasenkod3dff872012-06-11 13:53:26 +0200702 // "Save cursor, use alternate screen buffer, clear screen"
703 write1("\033[?1049h");
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700704 while (1) {
705 edit_file(argv[optind]); /* param might be NULL */
706 if (++optind >= argc)
707 break;
Eric Andersen3f980402001-04-04 17:31:15 +0000708 }
Denys Vlasenkod3dff872012-06-11 13:53:26 +0200709 // "Use normal screen buffer, restore cursor"
710 write1("\033[?1049l");
Eric Andersen3f980402001-04-04 17:31:15 +0000711 //-----------------------------------------------------------
712
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000713 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000714}
715
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000716/* read text from file or create an empty buf */
717/* will also update current_filename */
718static int init_text_buffer(char *fn)
719{
720 int rc;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000721
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200722 flush_undo_data();
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200723 modified_count = 0;
724 last_modified_count = -1;
725#if ENABLE_FEATURE_VI_YANKMARK
726 /* init the marks */
727 memset(mark, 0, sizeof(mark));
728#endif
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200729
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000730 /* allocate/reallocate text buffer */
731 free(text);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200732 text_size = 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000733 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000734
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000735 if (fn != current_filename) {
736 free(current_filename);
737 current_filename = xstrdup(fn);
738 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200739 rc = file_insert(fn, text, 1);
740 if (rc < 0) {
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200741 // file doesnt exist. Start empty buf with dummy line
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200742 char_insert(text, '\n', NO_UNDO);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000743 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000744 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000745}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000746
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700747#if ENABLE_FEATURE_VI_WIN_RESIZE
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200748static int query_screen_dimensions(void)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700749{
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200750 int err = get_terminal_width_height(STDIN_FILENO, &columns, &rows);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700751 if (rows > MAX_SCR_ROWS)
752 rows = MAX_SCR_ROWS;
753 if (columns > MAX_SCR_COLS)
754 columns = MAX_SCR_COLS;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200755 return err;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700756}
757#else
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200758# define query_screen_dimensions() (0)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700759#endif
760
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000761static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000762{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000763#if ENABLE_FEATURE_VI_YANKMARK
764#define cur_line edit_file__cur_line
765#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000766 int c;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000767#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000768 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000769#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000770
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000771 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000772 rawmode();
773 rows = 24;
774 columns = 80;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200775 IF_FEATURE_VI_ASK_TERMINAL(G.get_rowcol_error =) query_screen_dimensions();
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700776#if ENABLE_FEATURE_VI_ASK_TERMINAL
777 if (G.get_rowcol_error /* TODO? && no input on stdin */) {
778 uint64_t k;
779 write1("\033[999;999H" "\033[6n");
780 fflush_all();
781 k = read_key(STDIN_FILENO, readbuffer, /*timeout_ms:*/ 100);
782 if ((int32_t)k == KEYCODE_CURSOR_POS) {
783 uint32_t rc = (k >> 32);
784 columns = (rc & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200785 if (columns > MAX_SCR_COLS)
786 columns = MAX_SCR_COLS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700787 rows = ((rc >> 16) & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200788 if (rows > MAX_SCR_ROWS)
789 rows = MAX_SCR_ROWS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700790 }
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700791 }
792#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000793 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000794 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000795
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000796#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000797 YDreg = 26; // default Yank/Delete reg
798 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000799 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000800#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000801
Eric Andersen3f980402001-04-04 17:31:15 +0000802 last_forward_char = last_input_char = '\0';
803 crow = 0;
804 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000805
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000806#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700807 signal(SIGINT, catch_sig);
Eric Andersen3f980402001-04-04 17:31:15 +0000808 signal(SIGWINCH, winch_sig);
809 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000810 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000811 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000812 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000813 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000814#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000815
Eric Andersen3f980402001-04-04 17:31:15 +0000816 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
817 cmdcnt = 0;
818 tabstop = 8;
819 offset = 0; // no horizontal offset
820 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000821#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000822 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000823 ioq = ioq_start = NULL;
824 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000825 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000826#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000827
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000828#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000829 {
830 char *p, *q;
831 int n = 0;
832
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700833 while ((p = initial_cmds[n]) != NULL) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000834 do {
835 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000836 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000837 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000838 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000839 *p++ = '\0';
840 if (*q)
841 colon(q);
842 } while (p);
843 free(initial_cmds[n]);
844 initial_cmds[n] = NULL;
845 n++;
846 }
847 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000848#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000849 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000850 //------This is the main Vi cmd handling loop -----------------------
851 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000852#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000853 if (crashme > 0) {
854 if ((end - text) > 1) {
855 crash_dummy(); // generate a random command
856 } else {
857 crashme = 0;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200858 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 +0000859 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000860 refresh(FALSE);
861 }
862 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000863#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000864 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000865#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000866 // save a copy of the current line- for the 'U" command
867 if (begin_line(dot) != cur_line) {
868 cur_line = begin_line(dot);
869 text_yank(begin_line(dot), end_line(dot), Ureg);
870 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000871#endif
872#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000873 // These are commands that change text[].
874 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000875 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000876 && cmd_mode == 0 // command mode
877 && c > '\0' // exclude NUL and non-ASCII chars
878 && c < 0x7f // (Unicode and such)
879 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000880 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000881 start_new_cmd_q(c);
882 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000883#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000884 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000885
Eric Andersen3f980402001-04-04 17:31:15 +0000886 // poll to see if there is input already waiting. if we are
887 // not able to display output fast enough to keep up, skip
888 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200889 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000890 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000891 refresh(FALSE);
892 show_status_line();
893 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000894#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000895 if (crashme > 0)
896 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000897#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000898 }
899 //-------------------------------------------------------------------
900
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000901 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000902 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000903#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000904}
905
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000906//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000907#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000908static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000909{
910 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000911 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000912 IF_FEATURE_VI_YANKMARK(char c;)
913 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000914
915 *addr = -1; // assume no addr
916 if (*p == '.') { // the current line
917 p++;
918 q = begin_line(dot);
919 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000920 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000921#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000922 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000923 p++;
924 c = tolower(*p);
925 p++;
926 if (c >= 'a' && c <= 'z') {
927 // we have a mark
928 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000929 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000930 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000931 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000932 }
933 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000934 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000935#endif
936#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000937 else if (*p == '/') { // a search pattern
938 q = strchrnul(++p, '/');
939 pat = xstrndup(p, q - p); // save copy of pattern
940 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000941 if (*p == '/')
942 p++;
943 q = char_search(dot, pat, FORWARD, FULL);
944 if (q != NULL) {
945 *addr = count_lines(text, q);
946 }
947 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000948 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000949#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000950 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000951 p++;
952 q = begin_line(end - 1);
953 *addr = count_lines(text, q);
954 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000955 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000956 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000957 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200958 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000959 *addr = -1;
960 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000961 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000962}
963
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000964static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000965{
966 //----- get the address' i.e., 1,3 'a,'b -----
967 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000968 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000969 p++; // skip over leading spaces
970 if (*p == '%') { // alias for 1,$
971 p++;
972 *b = 1;
973 *e = count_lines(text, end-1);
974 goto ga0;
975 }
976 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000977 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000978 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000979 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000980 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000981 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000982 p++;
983 // get SECOND addr, if present
984 p = get_one_address(p, e);
985 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000986 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000987 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000988 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000989 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000990}
991
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000992#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000993static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000994 const char *short_opname, int opt)
995{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000996 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000997 int l = strlen(opname) - 1; /* opname have + ' ' */
998
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200999 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001000 if (strncasecmp(a, opname, l) == 0
1001 || strncasecmp(a, short_opname, 2) == 0
1002 ) {
1003 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001004 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001005 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001006 vi_setops |= opt;
1007 }
1008}
1009#endif
1010
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001011#endif /* FEATURE_VI_COLON */
1012
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001013// buf must be no longer than MAX_INPUT_LEN!
1014static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001015{
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001016#if !ENABLE_FEATURE_VI_COLON
1017 /* Simple ":cmd" handler with minimal set of commands */
1018 char *p = buf;
1019 int cnt;
1020
1021 if (*p == ':')
1022 p++;
1023 cnt = strlen(p);
1024 if (cnt == 0)
1025 return;
1026 if (strncmp(p, "quit", cnt) == 0
1027 || strncmp(p, "q!", cnt) == 0
1028 ) {
1029 if (modified_count && p[1] != '!') {
1030 status_line_bold("No write since last change (:%s! overrides)", p);
1031 } else {
1032 editing = 0;
1033 }
1034 return;
1035 }
1036 if (strncmp(p, "write", cnt) == 0
1037 || strncmp(p, "wq", cnt) == 0
1038 || strncmp(p, "wn", cnt) == 0
1039 || (p[0] == 'x' && !p[1])
1040 ) {
1041 cnt = file_write(current_filename, text, end - 1);
1042 if (cnt < 0) {
1043 if (cnt == -1)
1044 status_line_bold("Write error: %s", strerror(errno));
1045 } else {
1046 modified_count = 0;
1047 last_modified_count = -1;
1048 status_line("'%s' %dL, %dC",
1049 current_filename,
1050 count_lines(text, end - 1), cnt
1051 );
1052 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
1053 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
1054 ) {
1055 editing = 0;
1056 }
1057 }
1058 return;
1059 }
1060 if (strncmp(p, "file", cnt) == 0) {
1061 last_status_cksum = 0; // force status update
1062 return;
1063 }
1064 if (sscanf(p, "%d", &cnt) > 0) {
1065 dot = find_line(cnt);
1066 dot_skip_over_ws();
1067 return;
1068 }
1069 not_implemented(p);
1070#else
1071
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001072 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001073 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001074 int i, l, li, b, e;
1075 int useforce;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001076
1077 // :3154 // if (-e line 3154) goto it else stay put
1078 // :4,33w! foo // write a portion of buffer to file "foo"
1079 // :w // write all of buffer to current file
1080 // :q // quit
1081 // :q! // quit- dont care about modified file
1082 // :'a,'z!sort -u // filter block through sort
1083 // :'f // goto mark "f"
1084 // :'fl // list literal the mark "f" line
1085 // :.r bar // read file "bar" into buffer before dot
1086 // :/123/,/abc/d // delete lines from "123" line to "abc" line
1087 // :/xyz/ // goto the "xyz" line
1088 // :s/find/replace/ // substitute pattern "find" with "replace"
1089 // :!<cmd> // run <cmd> then return
1090 //
Eric Andersen165e8cb2004-07-20 06:44:46 +00001091
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001092 if (!buf[0])
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001093 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001094 if (*buf == ':')
1095 buf++; // move past the ':'
1096
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001097 li = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001098 b = e = -1;
1099 q = text; // assume 1,$ for the range
1100 r = end - 1;
1101 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001102 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001103
1104 // look for optional address(es) :. :1 :1,9 :'q,'a :%
1105 buf = get_address(buf, &b, &e);
1106
1107 // remember orig command line
1108 orig_buf = buf;
1109
1110 // get the COMMAND into cmd[]
1111 buf1 = cmd;
1112 while (*buf != '\0') {
1113 if (isspace(*buf))
1114 break;
1115 *buf1++ = *buf++;
1116 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001117 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001118 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001119 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001120 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001121 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001122 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001123 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001124 if (buf1) {
1125 useforce = TRUE;
1126 *buf1 = '\0'; // get rid of !
1127 }
1128 if (b >= 0) {
1129 // if there is only one addr, then the addr
1130 // is the line number of the single line the
1131 // user wants. So, reset the end
1132 // pointer to point at end of the "b" line
1133 q = find_line(b); // what line is #b
1134 r = end_line(q);
1135 li = 1;
1136 }
1137 if (e >= 0) {
1138 // we were given two addrs. change the
1139 // end pointer to the addr given by user.
1140 r = find_line(e); // what line is #e
1141 r = end_line(r);
1142 li = e - b + 1;
1143 }
1144 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001145 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001146 if (i == 0) { // :123CR goto line #123
1147 if (b >= 0) {
1148 dot = find_line(b); // what line is #b
1149 dot_skip_over_ws();
1150 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +00001151 }
1152#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001153 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001154 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001155 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001156 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001157 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001158 retcode = system(orig_buf + 1); // run the cmd
1159 if (retcode)
1160 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001161 rawmode();
1162 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +00001163 }
1164#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001165 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001166 if (b < 0) { // no addr given- use defaults
1167 b = e = count_lines(text, dot);
1168 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001169 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001170 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001171 if (b < 0) { // no addr given- use defaults
1172 q = begin_line(dot); // assume .,. for the range
1173 r = end_line(dot);
1174 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001175 dot = yank_delete(q, r, 1, YANKDEL, ALLOW_UNDO); // save, then delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001176 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001177 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001178 int size;
1179
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001180 // don't edit, if the current file has been modified
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001181 if (modified_count && !useforce) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001182 status_line_bold("No write since last change (:%s! overrides)", cmd);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001183 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001184 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001185 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001186 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001187 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001188 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001189 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001190 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001191 } else {
1192 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001193 status_line_bold("No current filename");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001194 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001195 }
1196
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001197 size = init_text_buffer(fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001198
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001199#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001200 if (Ureg >= 0 && Ureg < 28) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001201 free(reg[Ureg]); // free orig line reg- for 'U'
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001202 reg[Ureg] = NULL;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001203 }
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001204 if (YDreg >= 0 && YDreg < 28) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001205 free(reg[YDreg]); // free default yank/delete register
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001206 reg[YDreg] = NULL;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001207 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001208#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001209 // how many lines in text[]?
1210 li = count_lines(text, end - 1);
Denys Vlasenko778794d2013-01-22 10:13:52 +01001211 status_line("'%s'%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001212 IF_FEATURE_VI_READONLY("%s")
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001213 " %dL, %dC",
1214 current_filename,
1215 (size < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001216 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001217 ((readonly_mode) ? " [Readonly]" : ""),
1218 )
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001219 li, (int)(end - text)
1220 );
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001221 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001222 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01001223 status_line_bold("No address allowed on this command");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001224 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001225 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001226 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001227 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001228 free(current_filename);
1229 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001230 } else {
1231 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +00001232 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001233 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001234 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001235 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001236 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001237 cookmode();
1238 show_help();
1239 rawmode();
1240 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001241 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001242 if (b < 0) { // no addr given- use defaults
1243 q = begin_line(dot); // assume .,. for the range
1244 r = end_line(dot);
1245 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001246 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001247 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001248 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001249 int c_is_no_print;
1250
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001251 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +00001252 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001253 if (c_is_no_print) {
1254 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001255 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +00001256 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001257 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001258 write1("$\r");
1259 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00001260 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001261 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001262 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001263 else
1264 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001265 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001266 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001267 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001268 standout_end();
1269 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001270 Hit_Return();
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001271 } else if (strncmp(cmd, "quit", i) == 0 // quit
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001272 || strncmp(cmd, "next", i) == 0 // edit next file
Dennis Groenenc0657e02012-01-31 14:12:38 +01001273 || strncmp(cmd, "prev", i) == 0 // edit previous file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001274 ) {
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001275 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001276 if (useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001277 if (*cmd == 'q') {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001278 // force end of argv list
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001279 optind = save_argc;
1280 }
1281 editing = 0;
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001282 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001283 }
1284 // don't exit if the file been modified
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001285 if (modified_count) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001286 status_line_bold("No write since last change (:%s! overrides)", cmd);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001287 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001288 }
1289 // are there other file to edit
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001290 n = save_argc - optind - 1;
1291 if (*cmd == 'q' && n > 0) {
1292 status_line_bold("%d more file(s) to edit", n);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001293 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001294 }
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001295 if (*cmd == 'n' && n <= 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001296 status_line_bold("No more files to edit");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001297 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001298 }
Dennis Groenenc0657e02012-01-31 14:12:38 +01001299 if (*cmd == 'p') {
1300 // are there previous files to edit
1301 if (optind < 1) {
1302 status_line_bold("No previous files to edit");
1303 goto ret;
1304 }
1305 optind -= 2;
1306 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001307 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001308 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001309 int size;
1310
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001311 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001312 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001313 status_line_bold("No filename given");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001314 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001315 }
1316 if (b < 0) { // no addr given- use defaults
1317 q = begin_line(dot); // assume "dot"
1318 }
1319 // read after current line- unless user said ":0r foo"
Ron Yorston70f43202014-11-30 20:39:53 +00001320 if (b != 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001321 q = next_line(q);
Ron Yorston70f43202014-11-30 20:39:53 +00001322 // read after last line
1323 if (q == end-1)
1324 ++q;
1325 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001326 { // dance around potentially-reallocated text[]
1327 uintptr_t ofs = q - text;
Ron Yorstone5213ce2014-11-30 20:39:25 +00001328 size = file_insert(fn, q, 0);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001329 q = text + ofs;
1330 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001331 if (size < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001332 goto ret; // nothing was inserted
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001333 // how many lines in text[]?
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001334 li = count_lines(q, q + size - 1);
Denys Vlasenko778794d2013-01-22 10:13:52 +01001335 status_line("'%s'"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001336 IF_FEATURE_VI_READONLY("%s")
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001337 " %dL, %dC",
1338 fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001339 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001340 li, size
1341 );
1342 if (size > 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001343 // if the insert is before "dot" then we need to update
1344 if (q <= dot)
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001345 dot += size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001346 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001347 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001348 if (modified_count && !useforce) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001349 status_line_bold("No write since last change (:%s! overrides)", cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001350 } else {
1351 // reset the filenames to edit
Dennis Groenenc0657e02012-01-31 14:12:38 +01001352 optind = -1; /* start from 0th file */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001353 editing = 0;
1354 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001355#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001356 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001357#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001358 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001359#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001360 i = 0; // offset into args
Denys Vlasenko605f2642012-06-11 01:53:33 +02001361 // only blank is regarded as args delimiter. What about tab '\t'?
Denis Vlasenkof9234132007-03-21 00:03:42 +00001362 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001363 // print out values of all options
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001364#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001365 status_line_bold(
1366 "%sautoindent "
1367 "%sflash "
1368 "%signorecase "
1369 "%sshowmatch "
1370 "tabstop=%u",
1371 autoindent ? "" : "no",
1372 err_method ? "" : "no",
1373 ignorecase ? "" : "no",
1374 showmatch ? "" : "no",
1375 tabstop
1376 );
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001377#endif
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001378 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001379 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001380#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001381 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001382 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001383 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001384 i = 2; // ":set noautoindent"
1385 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001386 setops(argp, "flash " , i, "fl", VI_ERR_METHOD);
Denis Vlasenkof9234132007-03-21 00:03:42 +00001387 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001388 setops(argp, "showmatch " , i, "sm", VI_SHOWMATCH );
1389 if (strncmp(argp + i, "tabstop=", 8) == 0) {
1390 int t = 0;
1391 sscanf(argp + i+8, "%u", &t);
1392 if (t > 0 && t <= MAX_TABSTOP)
1393 tabstop = t;
Denis Vlasenkof9234132007-03-21 00:03:42 +00001394 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001395 argp = skip_non_whitespace(argp);
1396 argp = skip_whitespace(argp);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001397 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001398#endif /* FEATURE_VI_SETOPTS */
1399#endif /* FEATURE_VI_SET */
1400#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001401 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001402 char *F, *R, *flags;
1403 size_t len_F, len_R;
1404 int gflag; // global replace flag
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001405#if ENABLE_FEATURE_VI_UNDO
1406 int dont_chain_first_item = ALLOW_UNDO;
1407#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001408
1409 // F points to the "find" pattern
1410 // R points to the "replace" pattern
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001411 // replace the cmd line delimiters "/" with NULs
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001412 c = orig_buf[1]; // what is the delimiter
1413 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001414 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001415 if (!R)
1416 goto colon_s_fail;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001417 len_F = R - F;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001418 *R++ = '\0'; // terminate "find"
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001419 flags = strchr(R, c);
1420 if (!flags)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001421 goto colon_s_fail;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001422 len_R = flags - R;
1423 *flags++ = '\0'; // terminate "replace"
1424 gflag = *flags;
1425
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001426 q = begin_line(q);
1427 if (b < 0) { // maybe :s/foo/bar/
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001428 q = begin_line(dot); // start with cur line
1429 b = count_lines(text, q); // cur line number
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001430 }
1431 if (e < 0)
1432 e = b; // maybe :.s/foo/bar/
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001433
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001434 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001435 char *ls = q; // orig line start
1436 char *found;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001437 vc4:
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001438 found = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
1439 if (found) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001440 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001441 // we found the "find" pattern - delete it
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001442 // For undo support, the first item should not be chained
1443 text_hole_delete(found, found + len_F - 1, dont_chain_first_item);
1444#if ENABLE_FEATURE_VI_UNDO
1445 dont_chain_first_item = ALLOW_UNDO_CHAIN;
1446#endif
1447 // insert the "replace" patern
1448 bias = string_insert(found, R, ALLOW_UNDO_CHAIN);
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001449 found += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001450 ls += bias;
1451 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001452 // check for "global" :s/foo/bar/g
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001453 if (gflag == 'g') {
1454 if ((found + len_R) < end_line(ls)) {
1455 q = found + len_R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001456 goto vc4; // don't let q move past cur line
1457 }
1458 }
1459 }
1460 q = next_line(ls);
1461 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001462#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001463 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001464 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001465 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1466 || strncmp(cmd, "wq", i) == 0
1467 || strncmp(cmd, "wn", i) == 0
1468 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001469 ) {
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001470 int size;
1471 //int forced = FALSE;
1472
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001473 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001474 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001475 fn = args;
1476 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001477#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001478 if (readonly_mode && !useforce) {
Denys Vlasenko778794d2013-01-22 10:13:52 +01001479 status_line_bold("'%s' is read only", fn);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001480 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001481 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001482#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001483 // how many lines in text[]?
1484 li = count_lines(q, r);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001485 size = r - q + 1;
1486 //if (useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001487 // if "fn" is not write-able, chmod u+w
1488 // sprintf(syscmd, "chmod u+w %s", fn);
1489 // system(syscmd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001490 // forced = TRUE;
1491 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001492 l = file_write(fn, q, r);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001493 //if (useforce && forced) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001494 // chmod u-w
1495 // sprintf(syscmd, "chmod u-w %s", fn);
1496 // system(syscmd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001497 // forced = FALSE;
1498 //}
Paul Fox61e45db2005-10-09 14:43:22 +00001499 if (l < 0) {
1500 if (l == -1)
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01001501 status_line_bold_errno(fn);
Paul Fox61e45db2005-10-09 14:43:22 +00001502 } else {
Denys Vlasenko778794d2013-01-22 10:13:52 +01001503 status_line("'%s' %dL, %dC", fn, li, l);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001504 if (q == text && r == end - 1 && l == size) {
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001505 modified_count = 0;
1506 last_modified_count = -1;
Paul Fox61e45db2005-10-09 14:43:22 +00001507 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001508 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n'
1509 || cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N'
1510 )
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001511 && l == size
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001512 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00001513 editing = 0;
1514 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001515 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001516#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001517 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001518 if (b < 0) { // no addr given- use defaults
1519 q = begin_line(dot); // assume .,. for the range
1520 r = end_line(dot);
1521 }
1522 text_yank(q, r, YDreg);
1523 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001524 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001525 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001526#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001527 } else {
1528 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001529 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001530 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001531 ret:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001532 dot = bound_dot(dot); // make sure "dot" is valid
1533 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001534#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001535 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001536 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001537#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001538#endif /* FEATURE_VI_COLON */
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001539}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001540
1541static void Hit_Return(void)
1542{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001543 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001544
Denis Vlasenkof882f082007-12-23 02:36:51 +00001545 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001546 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001547 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001548 while ((c = get_one_char()) != '\n' && c != '\r')
1549 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001550 redraw(TRUE); // force redraw all
1551}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001552
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001553static int next_tabstop(int col)
1554{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001555 return col + ((tabstop - 1) - (col % tabstop));
1556}
1557
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001558//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001559static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001560{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001561 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001562 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001563 int cnt, ro, co;
1564
1565 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001566
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001567 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001568 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001569 // how many lines do we have to move
1570 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001571 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001572 screenbegin = beg_cur;
1573 if (cnt > (rows - 1) / 2) {
1574 // we moved too many lines. put "dot" in middle of screen
1575 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1576 screenbegin = prev_line(screenbegin);
1577 }
1578 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001579 } else {
1580 char *end_scr; // begin and end of screen
1581 end_scr = end_screen(); // last char of screen
1582 if (beg_cur > end_scr) {
1583 // "d" is after bottom line on screen
1584 // how many lines do we have to move
1585 cnt = count_lines(end_scr, beg_cur);
1586 if (cnt > (rows - 1) / 2)
1587 goto sc1; // too many lines
1588 for (ro = 0; ro < cnt - 1; ro++) {
1589 // move screen begin the same amount
1590 screenbegin = next_line(screenbegin);
1591 // now, move the end of screen
1592 end_scr = next_line(end_scr);
1593 end_scr = end_line(end_scr);
1594 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001595 }
1596 }
1597 // "d" is on screen- find out which row
1598 tp = screenbegin;
1599 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1600 if (tp == beg_cur)
1601 break;
1602 tp = next_line(tp);
1603 }
1604
1605 // find out what col "d" is on
1606 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001607 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001608 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001609 break;
1610 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001611 // handle tabs like real vi
1612 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001613 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001614 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001615 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001616 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1617 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001618 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001619 co++;
1620 tp++;
1621 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001622
1623 // "co" is the column where "dot" is.
1624 // The screen has "columns" columns.
1625 // The currently displayed columns are 0+offset -- columns+ofset
1626 // |-------------------------------------------------------------|
1627 // ^ ^ ^
1628 // offset | |------- columns ----------------|
1629 //
1630 // If "co" is already in this range then we do not have to adjust offset
1631 // but, we do have to subtract the "offset" bias from "co".
1632 // If "co" is outside this range then we have to change "offset".
1633 // If the first char of a line is a tab the cursor will try to stay
1634 // in column 7, but we have to set offset to 0.
1635
1636 if (co < 0 + offset) {
1637 offset = co;
1638 }
1639 if (co >= columns + offset) {
1640 offset = co - columns + 1;
1641 }
1642 // if the first char of the line is a tab, and "dot" is sitting on it
1643 // force offset to 0.
1644 if (d == beg_cur && *d == '\t') {
1645 offset = 0;
1646 }
1647 co -= offset;
1648
1649 *row = ro;
1650 *col = co;
1651}
1652
1653//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001654static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001655{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001656 if (p > text) {
1657 p = memrchr(text, '\n', p - text);
1658 if (!p)
1659 return text;
1660 return p + 1;
1661 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001662 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001663}
1664
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001665static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001666{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001667 if (p < end - 1) {
1668 p = memchr(p, '\n', end - p - 1);
1669 if (!p)
1670 return end - 1;
1671 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001672 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001673}
1674
Denis Vlasenkof882f082007-12-23 02:36:51 +00001675static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001676{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001677 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001678 // Try to stay off of the Newline
1679 if (*p == '\n' && (p - begin_line(p)) > 0)
1680 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001681 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001682}
1683
Denis Vlasenkof882f082007-12-23 02:36:51 +00001684static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001685{
Maninder Singh97c64912015-05-25 13:46:36 +02001686 p = begin_line(p); // goto beginning of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001687 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001688 p--; // step to prev line
Maninder Singh97c64912015-05-25 13:46:36 +02001689 p = begin_line(p); // goto beginning of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001690 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001691}
1692
Denis Vlasenkof882f082007-12-23 02:36:51 +00001693static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001694{
1695 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001696 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001697 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001698 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001699}
1700
1701//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001702static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001703{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001704 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001705 int cnt;
1706
1707 // find new bottom line
1708 q = screenbegin;
1709 for (cnt = 0; cnt < rows - 2; cnt++)
1710 q = next_line(q);
1711 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001712 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001713}
1714
Denis Vlasenkof882f082007-12-23 02:36:51 +00001715// count line from start to stop
1716static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001717{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001718 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001719 int cnt;
1720
Denis Vlasenkof882f082007-12-23 02:36:51 +00001721 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001722 q = start;
1723 start = stop;
1724 stop = q;
1725 }
1726 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001727 stop = end_line(stop);
1728 while (start <= stop && start <= end - 1) {
1729 start = end_line(start);
1730 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001731 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001732 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001733 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001734 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001735}
1736
Maninder Singh97c64912015-05-25 13:46:36 +02001737static char *find_line(int li) // find beginning of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001738{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001739 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001740
1741 for (q = text; li > 1; li--) {
1742 q = next_line(q);
1743 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001744 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001745}
1746
1747//----- Dot Movement Routines ----------------------------------
1748static void dot_left(void)
1749{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001750 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001751 if (dot > text && dot[-1] != '\n')
1752 dot--;
1753}
1754
1755static void dot_right(void)
1756{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001757 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001758 if (dot < end - 1 && *dot != '\n')
1759 dot++;
1760}
1761
1762static void dot_begin(void)
1763{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001764 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001765 dot = begin_line(dot); // return pointer to first char cur line
1766}
1767
1768static void dot_end(void)
1769{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001770 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771 dot = end_line(dot); // return pointer to last char cur line
1772}
1773
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001774static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001775{
1776 int co;
1777
1778 p = begin_line(p);
1779 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001780 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001781 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001782 break;
1783 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001784 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001785 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001786 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001787 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001788 co++;
1789 p++;
1790 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001791 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001792}
1793
1794static void dot_next(void)
1795{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001796 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001797 dot = next_line(dot);
1798}
1799
1800static void dot_prev(void)
1801{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001802 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001803 dot = prev_line(dot);
1804}
1805
1806static void dot_scroll(int cnt, int dir)
1807{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001808 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001809
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001810 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001811 for (; cnt > 0; cnt--) {
1812 if (dir < 0) {
1813 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001814 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001815 screenbegin = prev_line(screenbegin);
1816 } else {
1817 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001818 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001819 screenbegin = next_line(screenbegin);
1820 }
1821 }
1822 // make sure "dot" stays on the screen so we dont scroll off
1823 if (dot < screenbegin)
1824 dot = screenbegin;
1825 q = end_screen(); // find new bottom line
1826 if (dot > q)
1827 dot = begin_line(q); // is dot is below bottom line?
1828 dot_skip_over_ws();
1829}
1830
1831static void dot_skip_over_ws(void)
1832{
1833 // skip WS
1834 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1835 dot++;
1836}
1837
Denis Vlasenkof882f082007-12-23 02:36:51 +00001838static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001839{
1840 if (p >= end && end > text) {
1841 p = end - 1;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02001842 indicate_error();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001843 }
1844 if (p < text) {
1845 p = text;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02001846 indicate_error();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001847 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001848 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001849}
1850
1851//----- Helper Utility Routines --------------------------------
1852
1853//----------------------------------------------------------------
1854//----- Char Routines --------------------------------------------
1855/* Chars that are part of a word-
1856 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1857 * Chars that are Not part of a word (stoppers)
1858 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1859 * Chars that are WhiteSpace
1860 * TAB NEWLINE VT FF RETURN SPACE
1861 * DO NOT COUNT NEWLINE AS WHITESPACE
1862 */
1863
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001864static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001865{
1866 int li;
1867
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001868 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001869 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001870 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001871 // initialize the new screen. assume this will be a empty file.
1872 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001873 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001874 for (li = 1; li < ro - 1; li++) {
1875 screen[(li * co) + 0] = '~';
1876 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001877 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001878}
1879
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001880#if ENABLE_FEATURE_VI_SEARCH
Walter Harmsb9ba5802011-06-27 02:59:37 +02001881
1882# if ENABLE_FEATURE_VI_REGEX_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001883
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001884// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001885static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001886{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001887 struct re_pattern_buffer preg;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001888 const char *err;
1889 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001890 int i;
Walter Harmsb9ba5802011-06-27 02:59:37 +02001891 int size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001892
1893 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001894 if (ignorecase)
1895 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED | RE_ICASE;
1896
1897 memset(&preg, 0, sizeof(preg));
1898 err = re_compile_pattern(pat, strlen(pat), &preg);
1899 if (err != NULL) {
1900 status_line_bold("bad search pattern '%s': %s", pat, err);
1901 return p;
1902 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001903
1904 // assume a LIMITED forward search
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001905 q = end - 1;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001906 if (dir == BACK)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001907 q = text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001908 // RANGE could be negative if we are searching backwards
1909 range = q - p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001910 q = p;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001911 size = range;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001912 if (range < 0) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001913 size = -size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001914 q = p - size;
1915 if (q < text)
1916 q = text;
1917 }
1918 // search for the compiled pattern, preg, in p[]
Denys Vlasenko264f3732013-04-21 15:51:41 +02001919 // range < 0: search backward
1920 // range > 0: search forward
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001921 // 0 < start < size
Denys Vlasenko264f3732013-04-21 15:51:41 +02001922 // re_search() < 0: not found or error
1923 // re_search() >= 0: index of found pattern
1924 // struct pattern char int int int struct reg
1925 // re_search(*pattern_buffer, *string, size, start, range, *regs)
1926 i = re_search(&preg, q, size, /*start:*/ 0, range, /*struct re_registers*:*/ NULL);
1927 regfree(&preg);
1928 if (i < 0)
1929 return NULL;
1930 if (dir == FORWARD)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001931 p = p + i;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001932 else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001933 p = p - i;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001934 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001935}
Walter Harmsb9ba5802011-06-27 02:59:37 +02001936
1937# else
1938
1939# if ENABLE_FEATURE_VI_SETOPTS
1940static int mycmp(const char *s1, const char *s2, int len)
1941{
1942 if (ignorecase) {
1943 return strncasecmp(s1, s2, len);
1944 }
1945 return strncmp(s1, s2, len);
1946}
1947# else
1948# define mycmp strncmp
1949# endif
1950
1951static char *char_search(char *p, const char *pat, int dir, int range)
1952{
1953 char *start, *stop;
1954 int len;
1955
1956 len = strlen(pat);
1957 if (dir == FORWARD) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001958 stop = end - 1; // assume range is p..end-1
Walter Harmsb9ba5802011-06-27 02:59:37 +02001959 if (range == LIMITED)
1960 stop = next_line(p); // range is to next line
1961 for (start = p; start < stop; start++) {
1962 if (mycmp(start, pat, len) == 0) {
1963 return start;
1964 }
1965 }
1966 } else if (dir == BACK) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001967 stop = text; // assume range is text..p
Walter Harmsb9ba5802011-06-27 02:59:37 +02001968 if (range == LIMITED)
1969 stop = prev_line(p); // range is to prev line
1970 for (start = p - len; start >= stop; start--) {
1971 if (mycmp(start, pat, len) == 0) {
1972 return start;
1973 }
1974 }
1975 }
1976 // pattern not found
1977 return NULL;
1978}
1979
1980# endif
1981
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001982#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001983
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001984static char *char_insert(char *p, char c, int undo) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001985{
1986 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001987 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001988 refresh(FALSE); // show the ^
1989 c = get_one_char();
1990 *p = c;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001991#if ENABLE_FEATURE_VI_UNDO
1992 switch (undo) {
1993 case ALLOW_UNDO:
1994 undo_push(p, 1, UNDO_INS);
1995 break;
1996 case ALLOW_UNDO_CHAIN:
1997 undo_push(p, 1, UNDO_INS_CHAIN);
1998 break;
1999# if ENABLE_FEATURE_VI_UNDO_QUEUE
2000 case ALLOW_UNDO_QUEUED:
2001 undo_push(p, 1, UNDO_INS_QUEUED);
2002 break;
2003# endif
2004 }
2005#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002006 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002007#endif /* ENABLE_FEATURE_VI_UNDO */
2008 p++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002009 } else if (c == 27) { // Is this an ESC?
2010 cmd_mode = 0;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002011 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002012 cmdcnt = 0;
2013 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00002014 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002015 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002016 p--;
2017 }
Paul Foxd13b90b2005-07-18 22:17:25 +00002018 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Denys Vlasenko49acc1a2015-03-12 21:15:34 +01002019 if (p > text) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002020 p--;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002021 p = text_hole_delete(p, p, ALLOW_UNDO_QUEUED); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022 }
2023 } else {
2024 // insert a char into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002025 if (c == 13)
2026 c = '\n'; // translate \r to \n
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002027#if ENABLE_FEATURE_VI_UNDO
2028# if ENABLE_FEATURE_VI_UNDO_QUEUE
2029 if (c == '\n')
2030 undo_queue_commit();
2031# endif
2032 switch (undo) {
2033 case ALLOW_UNDO:
2034 undo_push(p, 1, UNDO_INS);
2035 break;
2036 case ALLOW_UNDO_CHAIN:
2037 undo_push(p, 1, UNDO_INS_CHAIN);
2038 break;
2039# if ENABLE_FEATURE_VI_UNDO_QUEUE
2040 case ALLOW_UNDO_QUEUED:
2041 undo_push(p, 1, UNDO_INS_QUEUED);
2042 break;
2043# endif
2044 }
2045#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002046 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002047#endif /* ENABLE_FEATURE_VI_UNDO */
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002048 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002049#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002050 if (showmatch && strchr(")]}", c) != NULL) {
2051 showmatching(p - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002052 }
2053 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002054 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002055 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002056 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00002057 len = strspn(q, " \t"); // space or tab
2058 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00002059 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002060 bias = text_hole_make(p, len);
2061 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002062 q += bias;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002063#if ENABLE_FEATURE_VI_UNDO
2064 undo_push(p, len, UNDO_INS);
2065#endif
Denis Vlasenko00d84172008-11-24 07:34:42 +00002066 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00002067 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002068 }
2069 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002070#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002071 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002072 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002073}
2074
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002075// might reallocate text[]! use p += stupid_insert(p, ...),
2076// and be careful to not use pointers into potentially freed text[]!
2077static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002078{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002079 uintptr_t bias;
2080 bias = text_hole_make(p, 1);
2081 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002082 *p = c;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002083 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002084}
2085
Denis Vlasenko33875382008-06-21 20:31:50 +00002086static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002087{
Paul Foxc51fc7b2008-03-06 01:34:23 +00002088 char *save_dot, *p, *q, *t;
2089 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002090
2091 save_dot = dot;
2092 p = q = dot;
2093
2094 if (strchr("cdy><", c)) {
2095 // these cmds operate on whole lines
2096 p = q = begin_line(p);
2097 for (cnt = 1; cnt < cmdcnt; cnt++) {
2098 q = next_line(q);
2099 }
2100 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00002101 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002102 // These cmds operate on char positions
2103 do_cmd(c); // execute movement cmd
2104 q = dot;
2105 } else if (strchr("wW", c)) {
2106 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002107 // if we are at the next word's first char
2108 // step back one char
2109 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00002110 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002111 || (ispunct(dot[-1]) && !ispunct(dot[0]))
2112 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
2113 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002114 if (dot > text && *dot == '\n')
2115 dot--; // stay off NL
2116 q = dot;
2117 } else if (strchr("H-k{", c)) {
2118 // these operate on multi-lines backwards
2119 q = end_line(dot); // find NL
2120 do_cmd(c); // execute movement cmd
2121 dot_begin();
2122 p = dot;
2123 } else if (strchr("L+j}\r\n", c)) {
2124 // these operate on multi-lines forwards
2125 p = begin_line(dot);
2126 do_cmd(c); // execute movement cmd
2127 dot_end(); // find NL
2128 q = dot;
2129 } else {
Denys Vlasenko6830ade2013-01-15 13:58:01 +01002130 // nothing -- this causes any other values of c to
2131 // represent the one-character range under the
2132 // cursor. this is correct for ' ' and 'l', but
2133 // perhaps no others.
2134 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002135 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00002136 if (q < p) {
2137 t = q;
2138 q = p;
2139 p = t;
2140 }
2141
Denis Vlasenko42cc3042008-03-24 02:05:58 +00002142 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00002143 if (q > p && strchr("^0bBh\b\177", c)) q--;
2144
2145 multiline = 0;
2146 for (t = p; t <= q; t++) {
2147 if (*t == '\n') {
2148 multiline = 1;
2149 break;
2150 }
2151 }
2152
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002153 *start = p;
2154 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002155 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002156 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002157}
2158
Denis Vlasenko33875382008-06-21 20:31:50 +00002159static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002160{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002161 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002162 int test, inc;
2163
2164 inc = dir;
2165 c = c0 = p[0];
2166 ci = p[inc];
2167 test = 0;
2168
2169 if (type == S_BEFORE_WS) {
2170 c = ci;
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_TO_WS) {
2174 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002175 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002176 }
2177 if (type == S_OVER_WS) {
2178 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002179 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002180 }
2181 if (type == S_END_PUNCT) {
2182 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002183 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002184 }
2185 if (type == S_END_ALNUM) {
2186 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002187 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002188 }
2189 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002190 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002191}
2192
Denis Vlasenko33875382008-06-21 20:31:50 +00002193static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002194{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002195 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002196
2197 while (st_test(p, type, dir, &c)) {
2198 // make sure we limit search to correct number of lines
2199 if (c == '\n' && --linecnt < 1)
2200 break;
2201 if (dir >= 0 && p >= end - 1)
2202 break;
2203 if (dir < 0 && p <= text)
2204 break;
2205 p += dir; // move to next char
2206 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002207 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002208}
2209
2210// find matching char of pair () [] {}
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002211// will crash if c is not one of these
Denis Vlasenko33875382008-06-21 20:31:50 +00002212static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002213{
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002214 const char *braces = "()[]{}";
2215 char match;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002216 int dir, level;
2217
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002218 dir = strchr(braces, c) - braces;
2219 dir ^= 1;
2220 match = braces[dir];
2221 dir = ((dir & 1) << 1) - 1; /* 1 for ([{, -1 for )\} */
2222
2223 // look for match, count levels of pairs (( ))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002224 level = 1;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002225 for (;;) {
2226 p += dir;
2227 if (p < text || p >= end)
2228 return NULL;
2229 if (*p == c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002230 level++; // increase pair levels
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002231 if (*p == match) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002232 level--; // reduce pair level
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002233 if (level == 0)
2234 return p; // found matching pair
2235 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002236 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002237}
2238
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002239#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002240// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00002241static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002242{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002243 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002244
2245 // we found half of a pair
2246 q = find_pair(p, *p); // get loc of matching char
2247 if (q == NULL) {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002248 indicate_error(); // no matching char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002249 } else {
2250 // "q" now points to matching pair
2251 save_dot = dot; // remember where we are
2252 dot = q; // go to new loc
2253 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002254 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002255 dot = save_dot; // go back to old loc
2256 refresh(FALSE);
2257 }
2258}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002259#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002260
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002261#if ENABLE_FEATURE_VI_UNDO
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002262static void flush_undo_data(void)
2263{
2264 struct undo_object *undo_entry;
2265
2266 while (undo_stack_tail) {
2267 undo_entry = undo_stack_tail;
2268 undo_stack_tail = undo_entry->prev;
2269 free(undo_entry);
2270 }
2271}
2272
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002273// Undo functions and hooks added by Jody Bruchon (jody@jodybruchon.com)
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002274static void undo_push(char *src, unsigned int length, uint8_t u_type) // Add to the undo stack
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002275{
Denys Vlasenko2c512022014-04-03 01:45:05 +02002276 struct undo_object *undo_entry;
2277
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002278 // "u_type" values
2279 // UNDO_INS: insertion, undo will remove from buffer
2280 // UNDO_DEL: deleted text, undo will restore to buffer
2281 // UNDO_{INS,DEL}_CHAIN: Same as above but also calls undo_pop() when complete
2282 // The CHAIN operations are for handling multiple operations that the user
2283 // performs with a single action, i.e. REPLACE mode or find-and-replace commands
2284 // UNDO_{INS,DEL}_QUEUED: If queuing feature is enabled, allow use of the queue
2285 // for the INS/DEL operation. The raw values should be equal to the values of
2286 // UNDO_{INS,DEL} ORed with UNDO_QUEUED_FLAG
2287
2288#if ENABLE_FEATURE_VI_UNDO_QUEUE
2289 // This undo queuing functionality groups multiple character typing or backspaces
2290 // into a single large undo object. This greatly reduces calls to malloc() for
2291 // single-character operations while typing and has the side benefit of letting
2292 // an undo operation remove chunks of text rather than a single character.
2293 switch (u_type) {
2294 case UNDO_EMPTY: // Just in case this ever happens...
2295 return;
2296 case UNDO_DEL_QUEUED:
2297 if (length != 1)
2298 return; // Only queue single characters
2299 switch (undo_queue_state) {
2300 case UNDO_EMPTY:
2301 undo_queue_state = UNDO_DEL;
2302 case UNDO_DEL:
2303 undo_queue_spos = src;
2304 undo_q++;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002305 undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q] = *src;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002306 // If queue is full, dump it into an object
2307 if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX)
2308 undo_queue_commit();
2309 return;
2310 case UNDO_INS:
2311 // Switch from storing inserted text to deleted text
2312 undo_queue_commit();
2313 undo_push(src, length, UNDO_DEL_QUEUED);
2314 return;
2315 }
2316 break;
2317 case UNDO_INS_QUEUED:
2318 if (length != 1)
2319 return;
2320 switch (undo_queue_state) {
2321 case UNDO_EMPTY:
2322 undo_queue_state = UNDO_INS;
2323 undo_queue_spos = src;
2324 case UNDO_INS:
2325 undo_q++; // Don't need to save any data for insertions
2326 if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX)
2327 undo_queue_commit();
2328 return;
2329 case UNDO_DEL:
2330 // Switch from storing deleted text to inserted text
2331 undo_queue_commit();
2332 undo_push(src, length, UNDO_INS_QUEUED);
2333 return;
2334 }
2335 break;
2336 }
2337#else
2338 // If undo queuing is disabled, ignore the queuing flag entirely
2339 u_type = u_type & ~UNDO_QUEUED_FLAG;
2340#endif
2341
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002342 // Allocate a new undo object
2343 if (u_type == UNDO_DEL || u_type == UNDO_DEL_CHAIN) {
2344 // For UNDO_DEL objects, save deleted text
2345 if ((src + length) == end)
2346 length--;
2347 // If this deletion empties text[], strip the newline. When the buffer becomes
2348 // zero-length, a newline is added back, which requires this to compensate.
2349 undo_entry = xzalloc(offsetof(struct undo_object, undo_text) + length);
2350 memcpy(undo_entry->undo_text, src, length);
2351 } else {
2352 undo_entry = xzalloc(sizeof(*undo_entry));
2353 }
2354 undo_entry->length = length;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002355#if ENABLE_FEATURE_VI_UNDO_QUEUE
2356 if ((u_type & UNDO_USE_SPOS) != 0) {
Denys Vlasenko2c512022014-04-03 01:45:05 +02002357 undo_entry->start = undo_queue_spos - text; // use start position from queue
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002358 } else {
Denys Vlasenko2c512022014-04-03 01:45:05 +02002359 undo_entry->start = src - text; // use offset from start of text buffer
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002360 }
2361 u_type = (u_type & ~UNDO_USE_SPOS);
2362#else
Denys Vlasenko2c512022014-04-03 01:45:05 +02002363 undo_entry->start = src - text;
2364#endif
Denys Vlasenko2c512022014-04-03 01:45:05 +02002365 undo_entry->u_type = u_type;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002366
2367 // Push it on undo stack
2368 undo_entry->prev = undo_stack_tail;
2369 undo_stack_tail = undo_entry;
2370 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002371}
2372
2373static void undo_pop(void) // Undo the last operation
2374{
Denys Vlasenko2c512022014-04-03 01:45:05 +02002375 int repeat;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002376 char *u_start, *u_end;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002377 struct undo_object *undo_entry;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002378
2379 // Commit pending undo queue before popping (should be unnecessary)
2380 undo_queue_commit();
2381
Denys Vlasenko2c512022014-04-03 01:45:05 +02002382 undo_entry = undo_stack_tail;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002383 // Check for an empty undo stack
Denys Vlasenko2c512022014-04-03 01:45:05 +02002384 if (!undo_entry) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002385 status_line("Already at oldest change");
2386 return;
2387 }
2388
Denys Vlasenko2c512022014-04-03 01:45:05 +02002389 switch (undo_entry->u_type) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002390 case UNDO_DEL:
2391 case UNDO_DEL_CHAIN:
2392 // make hole and put in text that was deleted; deallocate text
Denys Vlasenko2c512022014-04-03 01:45:05 +02002393 u_start = text + undo_entry->start;
2394 text_hole_make(u_start, undo_entry->length);
2395 memcpy(u_start, undo_entry->undo_text, undo_entry->length);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002396 status_line("Undo [%d] %s %d chars at position %d",
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002397 modified_count, "restored",
Denys Vlasenko2c512022014-04-03 01:45:05 +02002398 undo_entry->length, undo_entry->start
2399 );
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002400 break;
2401 case UNDO_INS:
2402 case UNDO_INS_CHAIN:
2403 // delete what was inserted
Denys Vlasenko2c512022014-04-03 01:45:05 +02002404 u_start = undo_entry->start + text;
2405 u_end = u_start - 1 + undo_entry->length;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002406 text_hole_delete(u_start, u_end, NO_UNDO);
2407 status_line("Undo [%d] %s %d chars at position %d",
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002408 modified_count, "deleted",
Denys Vlasenko2c512022014-04-03 01:45:05 +02002409 undo_entry->length, undo_entry->start
2410 );
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002411 break;
2412 }
Denys Vlasenko2c512022014-04-03 01:45:05 +02002413 repeat = 0;
2414 switch (undo_entry->u_type) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002415 // If this is the end of a chain, lower modification count and refresh display
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002416 case UNDO_DEL:
2417 case UNDO_INS:
Denys Vlasenko2c512022014-04-03 01:45:05 +02002418 dot = (text + undo_entry->start);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002419 refresh(FALSE);
2420 break;
2421 case UNDO_DEL_CHAIN:
2422 case UNDO_INS_CHAIN:
2423 repeat = 1;
2424 break;
2425 }
2426 // Deallocate the undo object we just processed
Denys Vlasenko2c512022014-04-03 01:45:05 +02002427 undo_stack_tail = undo_entry->prev;
2428 free(undo_entry);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002429 modified_count--;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002430 // For chained operations, continue popping all the way down the chain.
2431 if (repeat) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002432 undo_pop(); // Follow the undo chain if one exists
2433 }
2434}
2435
2436#if ENABLE_FEATURE_VI_UNDO_QUEUE
2437static void undo_queue_commit(void) // Flush any queued objects to the undo stack
2438{
2439 // Pushes the queue object onto the undo stack
2440 if (undo_q > 0) {
2441 // Deleted character undo events grow from the end
Denys Vlasenko2c512022014-04-03 01:45:05 +02002442 undo_push(undo_queue + CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q,
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002443 undo_q,
2444 (undo_queue_state | UNDO_USE_SPOS)
2445 );
2446 undo_queue_state = UNDO_EMPTY;
2447 undo_q = 0;
2448 }
2449}
2450#endif
2451
2452#endif /* ENABLE_FEATURE_VI_UNDO */
2453
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002454// open a hole in text[]
2455// might reallocate text[]! use p += text_hole_make(p, ...),
2456// and be careful to not use pointers into potentially freed text[]!
2457static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002458{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002459 uintptr_t bias = 0;
2460
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002461 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002462 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002463 end += size; // adjust the new END
2464 if (end >= (text + text_size)) {
2465 char *new_text;
2466 text_size += end - (text + text_size) + 10240;
2467 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002468 bias = (new_text - text);
2469 screenbegin += bias;
2470 dot += bias;
2471 end += bias;
2472 p += bias;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01002473#if ENABLE_FEATURE_VI_YANKMARK
2474 {
2475 int i;
2476 for (i = 0; i < ARRAY_SIZE(mark); i++)
2477 if (mark[i])
2478 mark[i] += bias;
2479 }
2480#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +00002481 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002482 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00002483 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002484 memset(p, ' ', size); // clear new hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002485 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002486}
2487
2488// close a hole in text[]
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002489// "undo" value indicates if this operation should be undo-able
2490static char *text_hole_delete(char *p, char *q, int undo) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002491{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002492 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002493 int cnt, hole_size;
2494
2495 // move forwards, from beginning
2496 // assume p <= q
2497 src = q + 1;
2498 dest = p;
2499 if (q < p) { // they are backward- swap them
2500 src = p + 1;
2501 dest = q;
2502 }
2503 hole_size = q - p + 1;
2504 cnt = end - src;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002505#if ENABLE_FEATURE_VI_UNDO
2506 switch (undo) {
2507 case NO_UNDO:
2508 break;
2509 case ALLOW_UNDO:
2510 undo_push(p, hole_size, UNDO_DEL);
2511 break;
2512 case ALLOW_UNDO_CHAIN:
2513 undo_push(p, hole_size, UNDO_DEL_CHAIN);
2514 break;
2515# if ENABLE_FEATURE_VI_UNDO_QUEUE
2516 case ALLOW_UNDO_QUEUED:
2517 undo_push(p, hole_size, UNDO_DEL_QUEUED);
2518 break;
2519# endif
2520 }
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002521 modified_count--;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002522#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002523 if (src < text || src > end)
2524 goto thd0;
2525 if (dest < text || dest >= end)
2526 goto thd0;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002527 modified_count++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002528 if (src >= end)
2529 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00002530 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002531 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002532 end = end - hole_size; // adjust the new END
2533 if (dest >= end)
2534 dest = end - 1; // make sure dest in below end-1
2535 if (end <= text)
2536 dest = end = text; // keep pointers valid
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002537 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002538 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002539}
2540
2541// copy text into register, then delete text.
2542// if dist <= 0, do not include, or go past, a NewLine
2543//
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002544static char *yank_delete(char *start, char *stop, int dist, int yf, int undo)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002545{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002546 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002547
2548 // make sure start <= stop
2549 if (start > stop) {
2550 // they are backwards, reverse them
2551 p = start;
2552 start = stop;
2553 stop = p;
2554 }
2555 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00002556 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002557 p = start;
2558 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002559 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002560 // dont go past a NewLine
2561 for (; p + 1 <= stop; p++) {
2562 if (p[1] == '\n') {
2563 stop = p; // "stop" just before NewLine
2564 break;
2565 }
2566 }
2567 }
2568 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002569#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002570 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002571#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002572 if (yf == YANKDEL) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002573 p = text_hole_delete(start, stop, undo);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002574 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002575 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002576}
2577
2578static void show_help(void)
2579{
2580 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002581#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002582 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002583#endif
2584#if ENABLE_FEATURE_VI_DOT_CMD
Denys Vlasenko605f2642012-06-11 01:53:33 +02002585 "\n\tLast command repeat with ."
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002586#endif
2587#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00002588 "\n\tLine marking with 'x"
2589 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002590#endif
2591#if ENABLE_FEATURE_VI_READONLY
Walter Harmsb9ba5802011-06-27 02:59:37 +02002592 //not implemented: "\n\tReadonly if vi is called as \"view\""
2593 //redundant: usage text says this too: "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002594#endif
2595#if ENABLE_FEATURE_VI_SET
Denys Vlasenko605f2642012-06-11 01:53:33 +02002596 "\n\tSome colon mode commands with :"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002597#endif
2598#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002599 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002600#endif
2601#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002602 "\n\tSignal catching- ^C"
2603 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002604#endif
2605#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002606 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002607#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002608 );
2609}
2610
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002611#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002612static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002613{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002614 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002615 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002616 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002617 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002618 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002619 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002620 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002621 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002622 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002623}
2624
2625static void end_cmd_q(void)
2626{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002627#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002628 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002629#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002630 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002631}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002632#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002633
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002634#if ENABLE_FEATURE_VI_YANKMARK \
2635 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2636 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002637// might reallocate text[]! use p += string_insert(p, ...),
2638// and be careful to not use pointers into potentially freed text[]!
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002639static uintptr_t string_insert(char *p, const char *s, int undo) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002640{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002641 uintptr_t bias;
2642 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002643
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002644 i = strlen(s);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002645#if ENABLE_FEATURE_VI_UNDO
2646 switch (undo) {
2647 case ALLOW_UNDO:
2648 undo_push(p, i, UNDO_INS);
2649 break;
2650 case ALLOW_UNDO_CHAIN:
2651 undo_push(p, i, UNDO_INS_CHAIN);
2652 break;
2653 }
2654#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002655 bias = text_hole_make(p, i);
2656 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002657 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002658#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002659 {
2660 int cnt;
2661 for (cnt = 0; *s != '\0'; s++) {
2662 if (*s == '\n')
2663 cnt++;
2664 }
2665 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2666 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002667#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002668 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002669}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002670#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002671
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002672#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002673static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002674{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002675 int cnt = q - p;
2676 if (cnt < 0) { // they are backwards- reverse them
2677 p = q;
2678 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002679 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002680 free(reg[dest]); // if already a yank register, free it
2681 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002682 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002683}
2684
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002685static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002686{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002687 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002688
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002689 c = 'D'; // default to D-reg
2690 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002691 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002692 if (YDreg == 26)
2693 c = 'D';
2694 if (YDreg == 27)
2695 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002696 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002697}
2698
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002699static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002700{
2701 // A context is defined to be "modifying text"
2702 // Any modifying command establishes a new context.
2703
2704 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002705 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002706 // we are trying to modify text[]- make this the current context
2707 mark[27] = mark[26]; // move cur to prev
2708 mark[26] = dot; // move local to cur
2709 context_start = prev_line(prev_line(dot));
2710 context_end = next_line(next_line(dot));
2711 //loiter= start_loiter= now;
2712 }
2713 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002714}
2715
Denis Vlasenkof882f082007-12-23 02:36:51 +00002716static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002717{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002718 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002719
2720 // the current context is in mark[26]
2721 // the previous context is in mark[27]
2722 // only swap context if other context is valid
2723 if (text <= mark[27] && mark[27] <= end - 1) {
2724 tmp = mark[27];
2725 mark[27] = mark[26];
2726 mark[26] = tmp;
2727 p = mark[26]; // where we are going- previous context
2728 context_start = prev_line(prev_line(prev_line(p)));
2729 context_end = next_line(next_line(next_line(p)));
2730 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002731 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002732}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002733#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002734
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002735//----- Set terminal attributes --------------------------------
2736static void rawmode(void)
2737{
2738 tcgetattr(0, &term_orig);
2739 term_vi = term_orig;
Denys Vlasenko6e8861b2012-01-15 23:00:13 +01002740 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG on - allow intr's
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002741 term_vi.c_iflag &= (~IXON & ~ICRNL);
2742 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002743 term_vi.c_cc[VMIN] = 1;
2744 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002745 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002746 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002747}
2748
2749static void cookmode(void)
2750{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002751 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002752 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002753}
2754
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002755#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002756//----- Come here when we get a window resize signal ---------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002757static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002758{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002759 int save_errno = errno;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002760 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002761 signal(SIGWINCH, winch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002762 query_screen_dimensions();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002763 new_screen(rows, columns); // get memory for virtual screen
2764 redraw(TRUE); // re-draw the screen
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002765 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002766}
2767
2768//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002769static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002770{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002771 int save_errno = errno;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002772 rawmode(); // terminal to "raw"
2773 last_status_cksum = 0; // force status update
2774 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002775
2776 signal(SIGTSTP, suspend_sig);
2777 signal(SIGCONT, SIG_DFL);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002778 //kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
2779 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002780}
2781
2782//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002783static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002784{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002785 int save_errno = errno;
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002786 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002787 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002788
2789 signal(SIGCONT, cont_sig);
2790 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002791 kill(my_pid, SIGTSTP);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002792 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002793}
2794
2795//----- Come here when we get a signal ---------------------------
2796static void catch_sig(int sig)
2797{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002798 signal(SIGINT, catch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002799 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002800}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002801#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002802
Denys Vlasenko606291b2009-09-23 23:15:43 +02002803static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002804{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002805 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002806
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002807 if (hund != 0)
2808 fflush_all();
2809
Denys Vlasenko606291b2009-09-23 23:15:43 +02002810 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002811 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002812 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002813}
2814
2815//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002816static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002817{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002818 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002819
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002820 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002821 c = read_key(STDIN_FILENO, readbuffer, /*timeout off:*/ -2);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002822 if (c == -1) { // EOF/error
2823 go_bottom_and_clear_to_eol();
2824 cookmode(); // terminal to "cooked"
2825 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002826 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002827 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002828}
2829
2830//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002831static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002832{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002833 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002834
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002835#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002836 if (!adding2q) {
2837 // we are not adding to the q.
2838 // but, we may be reading from a q
2839 if (ioq == 0) {
2840 // there is no current q, read from STDIN
2841 c = readit(); // get the users input
2842 } else {
2843 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002844 // careful with correct sign expansion!
2845 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002846 if (c == '\0') {
2847 // the end of the q, read from STDIN
2848 free(ioq_start);
2849 ioq_start = ioq = 0;
2850 c = readit(); // get the users input
2851 }
2852 }
2853 } else {
2854 // adding STDIN chars to q
2855 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002856 if (lmc_len >= MAX_INPUT_LEN - 1) {
2857 status_line_bold("last_modifying_cmd overrun");
2858 } else {
2859 // add new char to q
2860 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002861 }
2862 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002863#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002864 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002865#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002866 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002867}
2868
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002869// Get input line (uses "status line" area)
2870static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002871{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002872 // char [MAX_INPUT_LEN]
2873#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002874
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002875 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002876 int i;
2877
2878 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002879 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002880 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002881 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002882
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002883 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002884 while (i < MAX_INPUT_LEN) {
2885 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002886 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002887 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002888 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002889 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002890 buf[--i] = '\0';
2891 write1("\b \b"); // erase char on screen
2892 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002893 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002894 } else if (c > 0 && c < 256) { // exclude Unicode
2895 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002896 buf[i] = c;
2897 buf[++i] = '\0';
2898 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002899 }
2900 }
2901 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002902 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002903#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002904}
2905
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002906// might reallocate text[]!
Ron Yorstone5213ce2014-11-30 20:39:25 +00002907static int file_insert(const char *fn, char *p, int initial)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002908{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002909 int cnt = -1;
2910 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002911 struct stat statbuf;
2912
Denys Vlasenko7f3a2a22015-10-08 11:24:44 +02002913 if (p < text)
2914 p = text;
2915 if (p > end)
2916 p = end;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002917
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002918 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002919 if (fd < 0) {
Ron Yorstone5213ce2014-11-30 20:39:25 +00002920 if (!initial)
2921 status_line_bold_errno(fn);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002922 return cnt;
2923 }
2924
2925 /* Validate file */
2926 if (fstat(fd, &statbuf) < 0) {
2927 status_line_bold_errno(fn);
2928 goto fi;
2929 }
2930 if (!S_ISREG(statbuf.st_mode)) {
2931 status_line_bold("'%s' is not a regular file", fn);
2932 goto fi;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002933 }
Denys Vlasenko778794d2013-01-22 10:13:52 +01002934 size = (statbuf.st_size < INT_MAX ? (int)statbuf.st_size : INT_MAX);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002935 p += text_hole_make(p, size);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002936 cnt = full_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002937 if (cnt < 0) {
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01002938 status_line_bold_errno(fn);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002939 p = text_hole_delete(p, p + size - 1, NO_UNDO); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002940 } else if (cnt < size) {
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002941 // There was a partial read, shrink unused space
2942 p = text_hole_delete(p + cnt, p + size - 1, NO_UNDO);
Denys Vlasenko778794d2013-01-22 10:13:52 +01002943 status_line_bold("can't read '%s'", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002944 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002945 fi:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002946 close(fd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002947
Denis Vlasenko856be772007-08-17 08:29:48 +00002948#if ENABLE_FEATURE_VI_READONLY
Ron Yorstone5213ce2014-11-30 20:39:25 +00002949 if (initial
Denis Vlasenko856be772007-08-17 08:29:48 +00002950 && ((access(fn, W_OK) < 0) ||
2951 /* root will always have access()
2952 * so we check fileperms too */
2953 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2954 )
2955 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002956 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002957 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002958#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002959 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002960}
2961
Denis Vlasenko33875382008-06-21 20:31:50 +00002962static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002963{
2964 int fd, cnt, charcnt;
2965
2966 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002967 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002968 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002969 }
Denis Vlasenko8abae882008-05-03 11:35:59 +00002970 /* By popular request we do not open file with O_TRUNC,
2971 * but instead ftruncate() it _after_ successful write.
2972 * Might reduce amount of data lost on power fail etc.
2973 */
2974 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002975 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002976 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002977 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002978 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002979 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002980 if (charcnt == cnt) {
2981 // good write
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002982 //modified_count = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002983 } else {
2984 charcnt = 0;
2985 }
2986 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002987 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002988}
2989
2990//----- Terminal Drawing ---------------------------------------
2991// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002992// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002993// screen coordinates
2994// 0,0 ... 0,79
2995// 1,0 ... 1,79
2996// . ... .
2997// . ... .
2998// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002999// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003000
3001//----- Move the cursor to row x col (count from 0, not 1) -------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003002static void place_cursor(int row, int col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003003{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003004 char cm1[sizeof(ESC_SET_CURSOR_POS) + sizeof(int)*3 * 2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003005
3006 if (row < 0) row = 0;
3007 if (row >= rows) row = rows - 1;
3008 if (col < 0) col = 0;
3009 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003010
Denys Vlasenko04b52892012-06-11 13:51:38 +02003011 sprintf(cm1, ESC_SET_CURSOR_POS, row + 1, col + 1);
3012 write1(cm1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003013}
3014
3015//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003016static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003017{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003018 write1(ESC_CLEAR2EOL);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003019}
3020
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003021static void go_bottom_and_clear_to_eol(void)
3022{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003023 place_cursor(rows - 1, 0);
3024 clear_to_eol();
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003025}
3026
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003027//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003028static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003029{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003030 write1(ESC_CLEAR2EOS);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003031}
3032
3033//----- Start standout mode ------------------------------------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003034static void standout_start(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003035{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003036 write1(ESC_BOLD_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003037}
3038
3039//----- End standout mode --------------------------------------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003040static void standout_end(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003041{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003042 write1(ESC_NORM_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003043}
3044
3045//----- Flash the screen --------------------------------------
3046static void flash(int h)
3047{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003048 standout_start();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003049 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003050 mysleep(h);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003051 standout_end();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003052 redraw(TRUE);
3053}
3054
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003055static void indicate_error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003056{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003057#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003058 if (crashme > 0)
3059 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003060#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003061 if (!err_method) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003062 write1(ESC_BELL);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003063 } else {
3064 flash(10);
3065 }
3066}
3067
3068//----- Screen[] Routines --------------------------------------
3069//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003070static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003071{
3072 memset(screen, ' ', screensize); // clear new screen
3073}
3074
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003075static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00003076{
3077 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003078 char *e = buf + count;
3079
Paul Fox8552aec2005-09-16 12:20:05 +00003080 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003081 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00003082 return sum;
3083}
3084
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003085//----- Draw the status line at bottom of the screen -------------
3086static void show_status_line(void)
3087{
Paul Foxc3504852005-09-16 12:48:18 +00003088 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003089
Paul Fox8552aec2005-09-16 12:20:05 +00003090 // either we already have an error or status message, or we
3091 // create one.
3092 if (!have_status_msg) {
3093 cnt = format_edit_status();
3094 cksum = bufsum(status_buffer, cnt);
3095 }
3096 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003097 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003098 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003099 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00003100 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003101 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00003102 (columns - 1) ) {
3103 have_status_msg = 0;
3104 Hit_Return();
3105 }
3106 have_status_msg = 0;
3107 }
Denys Vlasenko04b52892012-06-11 13:51:38 +02003108 place_cursor(crow, ccol); // put cursor back in correct place
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003109 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003110 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003111}
3112
3113//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00003114// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003115static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003116{
3117 va_list args;
3118
3119 va_start(args, format);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003120 strcpy(status_buffer, ESC_BOLD_TEXT);
3121 vsprintf(status_buffer + sizeof(ESC_BOLD_TEXT)-1, format, args);
3122 strcat(status_buffer, ESC_NORM_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003123 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00003124
Denys Vlasenko04b52892012-06-11 13:51:38 +02003125 have_status_msg = 1 + sizeof(ESC_BOLD_TEXT) + sizeof(ESC_NORM_TEXT) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003126}
3127
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01003128static void status_line_bold_errno(const char *fn)
3129{
3130 status_line_bold("'%s' %s", fn, strerror(errno));
3131}
3132
Paul Fox8552aec2005-09-16 12:20:05 +00003133// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003134static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003135{
3136 va_list args;
3137
3138 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003139 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003140 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00003141
3142 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003143}
3144
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003145// copy s to buf, convert unprintable
3146static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003147{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003148 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003149 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003150
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003151 buf[0] = '\0';
3152 if (!s[0])
3153 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003154
3155 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003156 for (; *s; s++) {
3157 int c_is_no_print;
3158
3159 c = *s;
3160 c_is_no_print = (c & 0x80) && !Isprint(c);
3161 if (c_is_no_print) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003162 strcpy(d, ESC_NORM_TEXT);
3163 d += sizeof(ESC_NORM_TEXT)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003164 c = '.';
3165 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003166 if (c < ' ' || c == 0x7f) {
3167 *d++ = '^';
3168 c |= '@'; /* 0x40 */
3169 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003170 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003171 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003172 *d++ = c;
3173 *d = '\0';
3174 if (c_is_no_print) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003175 strcpy(d, ESC_BOLD_TEXT);
3176 d += sizeof(ESC_BOLD_TEXT)-1;
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003177 }
3178 if (*s == '\n') {
3179 *d++ = '$';
3180 *d = '\0';
3181 }
3182 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003183 break;
3184 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003185}
3186
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003187static void not_implemented(const char *s)
3188{
3189 char buf[MAX_INPUT_LEN];
3190
3191 print_literal(buf, s);
3192 status_line_bold("\'%s\' is not implemented", buf);
3193}
3194
3195// show file status on status line
3196static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003197{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00003198 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00003199
3200#define tot format_edit_status__tot
3201
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003202 int cur, percent, ret, trunc_at;
3203
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003204 // modified_count is now a counter rather than a flag. this
Paul Fox8552aec2005-09-16 12:20:05 +00003205 // helps reduce the amount of line counting we need to do.
3206 // (this will cause a mis-reporting of modified status
3207 // once every MAXINT editing operations.)
3208
3209 // it would be nice to do a similar optimization here -- if
3210 // we haven't done a motion that could have changed which line
3211 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003212 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003213
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003214 // count_lines() is expensive.
3215 // Call it only if something was changed since last time
3216 // we were here:
3217 if (modified_count != last_modified_count) {
Paul Fox8552aec2005-09-16 12:20:05 +00003218 tot = cur + count_lines(dot, end - 1) - 1;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003219 last_modified_count = modified_count;
Paul Fox8552aec2005-09-16 12:20:05 +00003220 }
3221
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003222 // current line percent
3223 // ------------- ~~ ----------
3224 // total lines 100
3225 if (tot > 0) {
3226 percent = (100 * cur) / tot;
3227 } else {
3228 cur = tot = 0;
3229 percent = 100;
3230 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00003231
Paul Fox8552aec2005-09-16 12:20:05 +00003232 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
3233 columns : STATUS_BUFFER_LEN-1;
3234
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003235 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003236#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00003237 "%c %s%s%s %d/%d %d%%",
3238#else
3239 "%c %s%s %d/%d %d%%",
3240#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003241 cmd_mode_indicator[cmd_mode & 3],
3242 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003243#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003244 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00003245#endif
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003246 (modified_count ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00003247 cur, tot, percent);
3248
3249 if (ret >= 0 && ret < trunc_at)
3250 return ret; /* it all fit */
3251
3252 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00003253#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003254}
3255
3256//----- Force refresh of all Lines -----------------------------
3257static void redraw(int full_screen)
3258{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003259 place_cursor(0, 0);
3260 clear_to_eos();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003261 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003262 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003263 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00003264 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003265}
3266
3267//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00003268static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003269{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003270 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003271 int co;
3272 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003273 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003274
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003275 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003276 co = 0;
3277 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003278 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003279 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003280 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003281 if (c == '\n')
3282 break;
3283 if ((c & 0x80) && !Isprint(c)) {
3284 c = '.';
3285 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003286 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003287 if (c == '\t') {
3288 c = ' ';
3289 // co % 8 != 7
3290 while ((co % tabstop) != (tabstop - 1)) {
3291 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003292 }
3293 } else {
3294 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003295 if (c == 0x7f)
3296 c = '?';
3297 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003298 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003299 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003300 }
3301 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003302 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003303 // discard scrolled-off-to-the-left portion,
3304 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003305 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003306 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003307 co -= tabstop;
3308 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003309 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003310 if (src >= end)
3311 break;
3312 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003313 // check "short line, gigantic offset" case
3314 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003315 ofs = co;
3316 // discard last scrolled off part
3317 co -= ofs;
3318 dest += ofs;
3319 // fill the rest with spaces
3320 if (co < columns)
3321 memset(&dest[co], ' ', columns - co);
3322 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003323}
3324
3325//----- Refresh the changed screen lines -----------------------
3326// Copy the source line from text[] into the buffer and note
3327// if the current screenline is different from the new buffer.
3328// If they differ then that line needs redrawing on the terminal.
3329//
3330static void refresh(int full_screen)
3331{
Denis Vlasenkob1759462008-06-20 20:20:54 +00003332#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003333
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003334 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003335 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003336
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +02003337 if (ENABLE_FEATURE_VI_WIN_RESIZE IF_FEATURE_VI_ASK_TERMINAL(&& !G.get_rowcol_error) ) {
Denis Vlasenko55995022008-05-18 22:28:26 +00003338 unsigned c = columns, r = rows;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07003339 query_screen_dimensions();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003340 full_screen |= (c - columns) | (r - rows);
3341 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003342 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
3343 tp = screenbegin; // index into text[] of top line
3344
3345 // compare text[] to screen[] and mark screen[] lines that need updating
3346 for (li = 0; li < rows - 1; li++) {
3347 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00003348 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003349 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00003350 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003351
3352 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00003353 if (tp < end) {
3354 char *t = memchr(tp, '\n', end - tp);
3355 if (!t) t = end - 1;
3356 tp = t + 1;
3357 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003358
Maninder Singh97c64912015-05-25 13:46:36 +02003359 // see if there are any changes between virtual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003360 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003361 cs = 0;
3362 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003363 sp = &screen[li * columns]; // start of screen line
3364 if (full_screen) {
3365 // force re-draw of every single column from 0 - columns-1
3366 goto re0;
3367 }
3368 // compare newly formatted buffer with virtual screen
3369 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003370 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003371 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003372 changed = TRUE; // mark for redraw
3373 break;
3374 }
3375 }
3376
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003377 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003378 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003379 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003380 changed = TRUE; // mark for redraw
3381 break;
3382 }
3383 }
3384 // now, cs is index of first diff, and ce is index of last diff
3385
3386 // if horz offset has changed, force a redraw
3387 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003388 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003389 changed = TRUE;
3390 }
3391
3392 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003393 if (cs < 0) cs = 0;
3394 if (ce > columns - 1) ce = columns - 1;
3395 if (cs > ce) { cs = 0; ce = columns - 1; }
Maninder Singh97c64912015-05-25 13:46:36 +02003396 // is there a change between virtual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003397 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003398 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003399 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003400 place_cursor(li, cs);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003401 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003402 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003403 }
3404 }
3405
Denys Vlasenko04b52892012-06-11 13:51:38 +02003406 place_cursor(crow, ccol);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003407
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003408 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003409#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003410}
3411
Eric Andersen3f980402001-04-04 17:31:15 +00003412//---------------------------------------------------------------------
3413//----- the Ascii Chart -----------------------------------------------
3414//
3415// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
3416// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
3417// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
3418// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
3419// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
3420// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
3421// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
3422// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
3423// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
3424// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
3425// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
3426// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
3427// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
3428// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
3429// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
3430// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
3431//---------------------------------------------------------------------
3432
3433//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003434static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00003435{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003436 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003437 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003438 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00003439 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003440 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003441
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003442// c1 = c; // quiet the compiler
3443// cnt = yf = 0; // quiet the compiler
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003444// p = q = save_dot = buf; // quiet the compiler
3445 memset(buf, '\0', sizeof(buf));
Eric Andersenbff7a602001-11-17 07:15:43 +00003446
Paul Fox8552aec2005-09-16 12:20:05 +00003447 show_status_line();
3448
Eric Andersenbff7a602001-11-17 07:15:43 +00003449 /* if this is a cursor key, skip these checks */
3450 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003451 case KEYCODE_UP:
3452 case KEYCODE_DOWN:
3453 case KEYCODE_LEFT:
3454 case KEYCODE_RIGHT:
3455 case KEYCODE_HOME:
3456 case KEYCODE_END:
3457 case KEYCODE_PAGEUP:
3458 case KEYCODE_PAGEDOWN:
3459 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00003460 goto key_cmd_mode;
3461 }
3462
Eric Andersen3f980402001-04-04 17:31:15 +00003463 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003464 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003465 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003466 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00003467 // we are 'R'eplacing the current *dot with new char
3468 if (*dot == '\n') {
3469 // don't Replace past E-o-l
3470 cmd_mode = 1; // convert to insert
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003471 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00003472 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003473 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003474 if (c != 27)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003475 dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char
3476 dot = char_insert(dot, c, ALLOW_UNDO_CHAIN); // insert new char
Eric Andersen3f980402001-04-04 17:31:15 +00003477 }
3478 goto dc1;
3479 }
3480 }
3481 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003482 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003483 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00003484 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003485 if (1 <= c || Isprint(c)) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003486 dot = char_insert(dot, c, ALLOW_UNDO_QUEUED);
Eric Andersen3f980402001-04-04 17:31:15 +00003487 }
3488 goto dc1;
3489 }
3490
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003491 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003492 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003493 //case 0x01: // soh
3494 //case 0x09: // ht
3495 //case 0x0b: // vt
3496 //case 0x0e: // so
3497 //case 0x0f: // si
3498 //case 0x10: // dle
3499 //case 0x11: // dc1
3500 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003501#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003502 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003503 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003504 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003505#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003506 //case 0x16: // syn
3507 //case 0x17: // etb
3508 //case 0x18: // can
3509 //case 0x1c: // fs
3510 //case 0x1d: // gs
3511 //case 0x1e: // rs
3512 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003513 //case '!': // !-
3514 //case '#': // #-
3515 //case '&': // &-
3516 //case '(': // (-
3517 //case ')': // )-
3518 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003519 //case '=': // =-
3520 //case '@': // @-
3521 //case 'F': // F-
3522 //case 'K': // K-
3523 //case 'Q': // Q-
3524 //case 'S': // S-
3525 //case 'T': // T-
3526 //case 'V': // V-
3527 //case '[': // [-
3528 //case '\\': // \-
3529 //case ']': // ]-
3530 //case '_': // _-
3531 //case '`': // `-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003532 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003533 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00003534 buf[0] = c;
3535 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003536 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003537 end_cmd_q(); // stop adding to q
3538 case 0x00: // nul- ignore
3539 break;
3540 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003541 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00003542 dot_scroll(rows - 2, -1);
3543 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003544 case 4: // ctrl-D scroll down half screen
3545 dot_scroll((rows - 2) / 2, 1);
3546 break;
3547 case 5: // ctrl-E scroll down one line
3548 dot_scroll(1, 1);
3549 break;
3550 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003551 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003552 dot_scroll(rows - 2, 1);
3553 break;
3554 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003555 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003556 break;
3557 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003558 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003559 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003560 case 0x7f: // DEL- move left (This may be ERASE char)
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003561 do {
3562 dot_left();
3563 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003564 break;
3565 case 10: // Newline ^J
3566 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003567 case KEYCODE_DOWN: // cursor key Down
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003568 do {
3569 dot_next(); // go to next B-o-l
3570 // try stay in same col
3571 dot = move_to_col(dot, ccol + offset);
3572 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003573 break;
3574 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003575 case 18: // ctrl-R force redraw
Denys Vlasenko04b52892012-06-11 13:51:38 +02003576 place_cursor(0, 0);
3577 clear_to_eos();
3578 //mysleep(10); // why???
Eric Andersen3f980402001-04-04 17:31:15 +00003579 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003580 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003581 refresh(TRUE); // this will redraw the entire display
3582 break;
3583 case 13: // Carriage Return ^M
3584 case '+': // +- goto next line
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003585 do {
3586 dot_next();
3587 dot_skip_over_ws();
3588 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003589 break;
3590 case 21: // ctrl-U scroll up half screen
3591 dot_scroll((rows - 2) / 2, -1);
3592 break;
3593 case 25: // ctrl-Y scroll up one line
3594 dot_scroll(1, -1);
3595 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003596 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003597 if (cmd_mode == 0)
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003598 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003599 cmd_mode = 0; // stop insrting
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003600 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00003601 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003602 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003603 break;
3604 case ' ': // move right
3605 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003606 case KEYCODE_RIGHT: // Cursor Key Right
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003607 do {
3608 dot_right();
3609 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003610 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003611#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003612 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003613 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3614 if ((unsigned)c1 <= 25) { // a-z?
3615 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003616 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003617 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003618 }
3619 break;
3620 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003621 c1 = (get_one_char() | 0x20) - 'a';
3622 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003623 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003624 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003625 if (text <= q && q < end) {
3626 dot = q;
3627 dot_begin(); // go to B-o-l
3628 dot_skip_over_ws();
3629 }
3630 } else if (c1 == '\'') { // goto previous context
3631 dot = swap_context(dot); // swap current and previous context
3632 dot_begin(); // go to B-o-l
3633 dot_skip_over_ws();
3634 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003635 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003636 }
3637 break;
3638 case 'm': // m- Mark a line
3639 // this is really stupid. If there are any inserts or deletes
3640 // between text[0] and dot then this mark will not point to the
3641 // correct location! It could be off by many lines!
3642 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003643 c1 = (get_one_char() | 0x20) - 'a';
3644 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003645 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003646 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003647 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003648 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003649 }
3650 break;
3651 case 'P': // P- Put register before
3652 case 'p': // p- put register after
3653 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003654 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003655 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003656 break;
3657 }
3658 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003659 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003660 if (c == 'P') {
3661 dot_begin(); // putting lines- Put above
3662 }
3663 if (c == 'p') {
3664 // are we putting after very last line?
3665 if (end_line(dot) == (end - 1)) {
3666 dot = end; // force dot to end of text[]
3667 } else {
3668 dot_next(); // next line, then put before
3669 }
3670 }
3671 } else {
3672 if (c == 'p')
3673 dot_right(); // move to right, can move to NL
3674 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003675 string_insert(dot, p, ALLOW_UNDO); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003676 end_cmd_q(); // stop adding to q
3677 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003678 case 'U': // U- Undo; replace current line with original version
Denys Vlasenko800a9a02012-01-31 14:10:26 +01003679 if (reg[Ureg] != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003680 p = begin_line(dot);
3681 q = end_line(dot);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003682 p = text_hole_delete(p, q, ALLOW_UNDO); // delete cur line
3683 p += string_insert(p, reg[Ureg], ALLOW_UNDO_CHAIN); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003684 dot = p;
3685 dot_skip_over_ws();
3686 }
3687 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003688#endif /* FEATURE_VI_YANKMARK */
Andrew Fuller4d8ddb82015-05-03 18:18:25 +02003689#if ENABLE_FEATURE_VI_UNDO
3690 case 'u': // u- undo last operation
3691 undo_pop();
3692 break;
3693#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003694 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003695 case KEYCODE_END: // Cursor Key End
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003696 for (;;) {
3697 dot = end_line(dot);
Denys Vlasenko1fd71292011-11-28 04:55:48 +01003698 if (--cmdcnt <= 0)
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003699 break;
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003700 dot_next();
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003701 }
Eric Andersen3f980402001-04-04 17:31:15 +00003702 break;
3703 case '%': // %- find matching char of pair () [] {}
3704 for (q = dot; q < end && *q != '\n'; q++) {
3705 if (strchr("()[]{}", *q) != NULL) {
3706 // we found half of a pair
3707 p = find_pair(q, *q);
3708 if (p == NULL) {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003709 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003710 } else {
3711 dot = p;
3712 }
3713 break;
3714 }
3715 }
3716 if (*q == '\n')
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003717 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003718 break;
3719 case 'f': // f- forward to a user specified char
3720 last_forward_char = get_one_char(); // get the search char
3721 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003722 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003723 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003724 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003725 case ';': // ;- look at rest of line for last forward char
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003726 do {
3727 if (last_forward_char == 0)
3728 break;
3729 q = dot + 1;
3730 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3731 q++;
3732 }
3733 if (*q == last_forward_char)
3734 dot = q;
3735 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003736 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003737 case ',': // repeat latest 'f' in opposite direction
Paul Foxb5ee8db2008-02-14 01:17:01 +00003738 if (last_forward_char == 0)
3739 break;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003740 do {
3741 q = dot - 1;
3742 while (q >= text && *q != '\n' && *q != last_forward_char) {
3743 q--;
3744 }
3745 if (q >= text && *q == last_forward_char)
3746 dot = q;
3747 } while (--cmdcnt > 0);
Paul Foxb5ee8db2008-02-14 01:17:01 +00003748 break;
3749
Eric Andersen3f980402001-04-04 17:31:15 +00003750 case '-': // -- goto prev line
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003751 do {
3752 dot_prev();
3753 dot_skip_over_ws();
3754 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003755 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003756#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003757 case '.': // .- repeat the last modifying command
3758 // Stuff the last_modifying_cmd back into stdin
3759 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003760 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003761 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003762 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003763 }
3764 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003765#endif
3766#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003767 case '?': // /- search for a pattern
3768 case '/': // /- search for a pattern
3769 buf[0] = c;
3770 buf[1] = '\0';
3771 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003772 if (q[0] && !q[1]) {
3773 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003774 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003775 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003776 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003777 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003778 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003779 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003780 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003781 goto dc3; // now find the pattern
3782 }
3783 // user changed mind and erased the "/"- do nothing
3784 break;
3785 case 'N': // N- backward search for last pattern
Eric Andersen3f980402001-04-04 17:31:15 +00003786 dir = BACK; // assume BACKWARD search
3787 p = dot - 1;
3788 if (last_search_pattern[0] == '?') {
3789 dir = FORWARD;
3790 p = dot + 1;
3791 }
3792 goto dc4; // now search for pattern
3793 break;
3794 case 'n': // n- repeat search for last pattern
3795 // search rest of text[] starting at next char
3796 // if search fails return orignal "p" not the "p+1" address
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003797 do {
3798 const char *msg;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003799 dc3:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003800 dir = FORWARD; // assume FORWARD search
3801 p = dot + 1;
3802 if (last_search_pattern[0] == '?') {
3803 dir = BACK;
3804 p = dot - 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003805 }
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003806 dc4:
3807 q = char_search(p, last_search_pattern + 1, dir, FULL);
3808 if (q != NULL) {
3809 dot = q; // good search, update "dot"
3810 msg = NULL;
3811 goto dc2;
3812 }
3813 // no pattern found between "dot" and "end"- continue at top
3814 p = text;
3815 if (dir == BACK) {
3816 p = end - 1;
3817 }
3818 q = char_search(p, last_search_pattern + 1, dir, FULL);
3819 if (q != NULL) { // found something
3820 dot = q; // found new pattern- goto it
3821 msg = "search hit BOTTOM, continuing at TOP";
3822 if (dir == BACK) {
3823 msg = "search hit TOP, continuing at BOTTOM";
3824 }
3825 } else {
3826 msg = "Pattern not found";
3827 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003828 dc2:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003829 if (msg)
3830 status_line_bold("%s", msg);
3831 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003832 break;
3833 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003834 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003835 if (q != NULL) { // found blank line
3836 dot = next_line(q); // move to next blank line
3837 }
3838 break;
3839 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003840 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003841 if (q != NULL) { // found blank line
3842 dot = next_line(q); // move to next blank line
3843 }
3844 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003845#endif /* FEATURE_VI_SEARCH */
Maninder Singh97c64912015-05-25 13:46:36 +02003846 case '0': // 0- goto beginning of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003847 case '1': // 1-
3848 case '2': // 2-
3849 case '3': // 3-
3850 case '4': // 4-
3851 case '5': // 5-
3852 case '6': // 6-
3853 case '7': // 7-
3854 case '8': // 8-
3855 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003856 if (c == '0' && cmdcnt < 1) {
3857 dot_begin(); // this was a standalone zero
3858 } else {
3859 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3860 }
3861 break;
3862 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003863 p = get_input_line(":"); // get input line- use "status line"
Eric Andersen3f980402001-04-04 17:31:15 +00003864 colon(p); // execute the command
Eric Andersen3f980402001-04-04 17:31:15 +00003865 break;
3866 case '<': // <- Left shift something
3867 case '>': // >- Right shift something
3868 cnt = count_lines(text, dot); // remember what line we are on
3869 c1 = get_one_char(); // get the type of thing to delete
3870 find_range(&p, &q, c1);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003871 yank_delete(p, q, 1, YANKONLY, NO_UNDO); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003872 p = begin_line(p);
3873 q = end_line(q);
3874 i = count_lines(p, q); // # of lines we are shifting
3875 for ( ; i > 0; i--, p = next_line(p)) {
3876 if (c == '<') {
3877 // shift left- remove tab or 8 spaces
3878 if (*p == '\t') {
3879 // shrink buffer 1 char
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003880 text_hole_delete(p, p, NO_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003881 } else if (*p == ' ') {
3882 // we should be calculating columns, not just SPACE
3883 for (j = 0; *p == ' ' && j < tabstop; j++) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003884 text_hole_delete(p, p, NO_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003885 }
3886 }
3887 } else if (c == '>') {
3888 // shift right -- add tab or 8 spaces
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003889 char_insert(p, '\t', ALLOW_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003890 }
3891 }
3892 dot = find_line(cnt); // what line were we on
3893 dot_skip_over_ws();
3894 end_cmd_q(); // stop adding to q
3895 break;
3896 case 'A': // A- append at e-o-l
3897 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003898 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003899 case 'a': // a- append after current char
3900 if (*dot != '\n')
3901 dot++;
3902 goto dc_i;
3903 break;
3904 case 'B': // B- back a blank-delimited Word
3905 case 'E': // E- end of a blank-delimited word
3906 case 'W': // W- forward a blank-delimited word
Eric Andersen3f980402001-04-04 17:31:15 +00003907 dir = FORWARD;
3908 if (c == 'B')
3909 dir = BACK;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003910 do {
3911 if (c == 'W' || isspace(dot[dir])) {
3912 dot = skip_thing(dot, 1, dir, S_TO_WS);
3913 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3914 }
3915 if (c != 'W')
3916 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3917 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003918 break;
3919 case 'C': // C- Change to e-o-l
3920 case 'D': // D- delete to e-o-l
3921 save_dot = dot;
3922 dot = dollar_line(dot); // move to before NL
3923 // copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003924 dot = yank_delete(save_dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete to e-o-l
Eric Andersen3f980402001-04-04 17:31:15 +00003925 if (c == 'C')
3926 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003927#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003928 if (c == 'D')
3929 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003930#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003931 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003932 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003933 c1 = get_one_char();
3934 if (c1 != 'g') {
3935 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003936 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003937 buf[2] = '\0';
3938 not_implemented(buf);
3939 break;
3940 }
3941 if (cmdcnt == 0)
3942 cmdcnt = 1;
3943 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003944 case 'G': // G- goto to a line number (default= E-O-F)
3945 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003946 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003947 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003948 }
3949 dot_skip_over_ws();
3950 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003951 case 'H': // H- goto top line on screen
3952 dot = screenbegin;
3953 if (cmdcnt > (rows - 1)) {
3954 cmdcnt = (rows - 1);
3955 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003956 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003957 do_cmd('+');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003958 }
Eric Andersen3f980402001-04-04 17:31:15 +00003959 dot_skip_over_ws();
3960 break;
3961 case 'I': // I- insert before first non-blank
3962 dot_begin(); // 0
3963 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003964 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003965 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003966 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003967 dc_i:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003968 cmd_mode = 1; // start inserting
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003969 undo_queue_commit(); // commit queue when cmd_mode changes
Eric Andersen3f980402001-04-04 17:31:15 +00003970 break;
3971 case 'J': // J- join current and next lines together
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003972 do {
3973 dot_end(); // move to NL
3974 if (dot < end - 1) { // make sure not last char in text[]
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003975#if ENABLE_FEATURE_VI_UNDO
3976 undo_push(dot, 1, UNDO_DEL);
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003977 *dot++ = ' '; // replace NL with space
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003978 undo_push((dot - 1), 1, UNDO_INS_CHAIN);
3979#else
3980 *dot++ = ' ';
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003981 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003982#endif
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003983 while (isblank(*dot)) { // delete leading WS
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003984 text_hole_delete(dot, dot, ALLOW_UNDO_CHAIN);
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003985 }
Eric Andersen3f980402001-04-04 17:31:15 +00003986 }
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003987 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003988 end_cmd_q(); // stop adding to q
3989 break;
3990 case 'L': // L- goto bottom line on screen
3991 dot = end_screen();
3992 if (cmdcnt > (rows - 1)) {
3993 cmdcnt = (rows - 1);
3994 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003995 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003996 do_cmd('-');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003997 }
Eric Andersen3f980402001-04-04 17:31:15 +00003998 dot_begin();
3999 dot_skip_over_ws();
4000 break;
Eric Andersen822c3832001-05-07 17:37:43 +00004001 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00004002 dot = screenbegin;
4003 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
4004 dot = next_line(dot);
4005 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004006 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00004007 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00004008 p = begin_line(dot);
4009 if (p[-1] == '\n') {
4010 dot_prev();
4011 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
4012 dot_end();
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004013 dot = char_insert(dot, '\n', ALLOW_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00004014 } else {
4015 dot_begin(); // 0
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004016 dot = char_insert(dot, '\n', ALLOW_UNDO); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00004017 dot_prev(); // -
4018 }
4019 goto dc_i;
4020 break;
4021 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004022 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00004023 cmd_mode = 2;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004024 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00004025 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004026 case KEYCODE_DELETE:
Denys Vlasenko49acc1a2015-03-12 21:15:34 +01004027 if (dot < end - 1)
4028 dot = yank_delete(dot, dot, 1, YANKDEL, ALLOW_UNDO);
4029 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004030 case 'X': // X- delete char before dot
4031 case 'x': // x- delete the current char
4032 case 's': // s- substitute the current char
Eric Andersen3f980402001-04-04 17:31:15 +00004033 dir = 0;
4034 if (c == 'X')
4035 dir = -1;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004036 do {
4037 if (dot[dir] != '\n') {
4038 if (c == 'X')
4039 dot--; // delete prev char
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004040 dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004041 }
4042 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004043 end_cmd_q(); // stop adding to q
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004044 if (c == 's')
4045 goto dc_i; // start inserting
Eric Andersen3f980402001-04-04 17:31:15 +00004046 break;
4047 case 'Z': // Z- if modified, {write}; exit
4048 // ZZ means to save file (if necessary), then exit
4049 c1 = get_one_char();
4050 if (c1 != 'Z') {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02004051 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00004052 break;
4053 }
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004054 if (modified_count) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004055 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denys Vlasenko778794d2013-01-22 10:13:52 +01004056 status_line_bold("'%s' is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00004057 break;
Paul Foxf0305b72006-03-28 14:18:21 +00004058 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004059 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00004060 if (cnt < 0) {
4061 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004062 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00004063 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00004064 editing = 0;
4065 }
4066 } else {
4067 editing = 0;
4068 }
4069 break;
4070 case '^': // ^- move to first non-blank on line
4071 dot_begin();
4072 dot_skip_over_ws();
4073 break;
4074 case 'b': // b- back a word
4075 case 'e': // e- end of word
Eric Andersen3f980402001-04-04 17:31:15 +00004076 dir = FORWARD;
4077 if (c == 'b')
4078 dir = BACK;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004079 do {
4080 if ((dot + dir) < text || (dot + dir) > end - 1)
4081 break;
4082 dot += dir;
4083 if (isspace(*dot)) {
4084 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
4085 }
4086 if (isalnum(*dot) || *dot == '_') {
4087 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
4088 } else if (ispunct(*dot)) {
4089 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
4090 }
4091 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004092 break;
4093 case 'c': // c- change something
4094 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004095#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004096 case 'y': // y- yank something
4097 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004098#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00004099 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00004100 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00004101 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004102#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004103 if (c == 'y' || c == 'Y')
4104 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004105#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004106 c1 = 'y';
4107 if (c != 'Y')
4108 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00004109 // determine range, and whether it spans lines
4110 ml = find_range(&p, &q, c1);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004111 place_cursor(0, 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004112 if (c1 == 27) { // ESC- user changed mind and wants out
4113 c = c1 = 27; // Escape- do nothing
4114 } else if (strchr("wW", c1)) {
4115 if (c == 'c') {
4116 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004117 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00004118 if (q <= text || q[-1] == '\n')
4119 break;
4120 q--;
4121 }
4122 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004123 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word
Paul Foxc51fc7b2008-03-06 01:34:23 +00004124 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
4125 // partial line copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004126 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word
Paul Foxc51fc7b2008-03-06 01:34:23 +00004127 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
4128 // whole line copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004129 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete lines
Paul Foxc51fc7b2008-03-06 01:34:23 +00004130 whole = 1;
4131 } else {
4132 // could not recognize object
4133 c = c1 = 27; // error-
4134 ml = 0;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02004135 indicate_error();
Paul Foxc51fc7b2008-03-06 01:34:23 +00004136 }
4137 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00004138 if (c == 'c') {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004139 dot = char_insert(dot, '\n', ALLOW_UNDO_CHAIN);
Eric Andersen1c0d3112001-04-16 15:46:44 +00004140 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00004141 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00004142 dot_prev();
4143 }
4144 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00004145 dot_begin();
4146 dot_skip_over_ws();
4147 }
Eric Andersen3f980402001-04-04 17:31:15 +00004148 }
4149 if (c1 != 27) {
4150 // if CHANGING, not deleting, start inserting after the delete
4151 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004152 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00004153 goto dc_i; // start inserting
4154 }
4155 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004156 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00004157 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004158#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004159 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004160 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00004161 }
4162 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004163 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00004164 for (cnt = 0; p <= q; p++) {
4165 if (*p == '\n')
4166 cnt++;
4167 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004168 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004169 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004170#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004171 end_cmd_q(); // stop adding to q
4172 }
4173 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00004174 }
Eric Andersen3f980402001-04-04 17:31:15 +00004175 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004176 case KEYCODE_UP: // cursor key Up
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004177 do {
4178 dot_prev();
4179 dot = move_to_col(dot, ccol + offset); // try stay in same col
4180 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004181 break;
4182 case 'r': // r- replace the current char with user input
4183 c1 = get_one_char(); // get the replacement char
4184 if (*dot != '\n') {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004185#if ENABLE_FEATURE_VI_UNDO
4186 undo_push(dot, 1, UNDO_DEL);
4187 *dot = c1;
4188 undo_push(dot, 1, UNDO_INS_CHAIN);
4189#else
Eric Andersen3f980402001-04-04 17:31:15 +00004190 *dot = c1;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004191 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004192#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004193 }
4194 end_cmd_q(); // stop adding to q
4195 break;
Eric Andersen822c3832001-05-07 17:37:43 +00004196 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00004197 last_forward_char = get_one_char();
4198 do_cmd(';');
4199 if (*dot == last_forward_char)
4200 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00004201 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00004202 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004203 case 'w': // w- forward a word
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004204 do {
4205 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
4206 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
4207 } else if (ispunct(*dot)) { // we are on PUNCT
4208 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
4209 }
4210 if (dot < end - 1)
4211 dot++; // move over word
4212 if (isspace(*dot)) {
4213 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
4214 }
4215 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004216 break;
4217 case 'z': // z-
4218 c1 = get_one_char(); // get the replacement char
4219 cnt = 0;
4220 if (c1 == '.')
4221 cnt = (rows - 2) / 2; // put dot at center
4222 if (c1 == '-')
4223 cnt = rows - 2; // put dot at bottom
4224 screenbegin = begin_line(dot); // start dot at top
4225 dot_scroll(cnt, -1);
4226 break;
4227 case '|': // |- move to column "cmdcnt"
4228 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
4229 break;
4230 case '~': // ~- flip the case of letters a-z -> A-Z
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004231 do {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004232#if ENABLE_FEATURE_VI_UNDO
4233 if (islower(*dot)) {
4234 undo_push(dot, 1, UNDO_DEL);
4235 *dot = toupper(*dot);
4236 undo_push(dot, 1, UNDO_INS_CHAIN);
4237 } else if (isupper(*dot)) {
4238 undo_push(dot, 1, UNDO_DEL);
4239 *dot = tolower(*dot);
4240 undo_push(dot, 1, UNDO_INS_CHAIN);
4241 }
4242#else
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004243 if (islower(*dot)) {
4244 *dot = toupper(*dot);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004245 modified_count++;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004246 } else if (isupper(*dot)) {
4247 *dot = tolower(*dot);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004248 modified_count++;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004249 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004250#endif
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004251 dot_right();
4252 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004253 end_cmd_q(); // stop adding to q
4254 break;
4255 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004256 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00004257 dot_begin();
4258 break;
4259 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004260#if 0
4261 case KEYCODE_FUN1: // Function Key F1
4262 case KEYCODE_FUN2: // Function Key F2
4263 case KEYCODE_FUN3: // Function Key F3
4264 case KEYCODE_FUN4: // Function Key F4
4265 case KEYCODE_FUN5: // Function Key F5
4266 case KEYCODE_FUN6: // Function Key F6
4267 case KEYCODE_FUN7: // Function Key F7
4268 case KEYCODE_FUN8: // Function Key F8
4269 case KEYCODE_FUN9: // Function Key F9
4270 case KEYCODE_FUN10: // Function Key F10
4271 case KEYCODE_FUN11: // Function Key F11
4272 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00004273 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004274#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004275 }
4276
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004277 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00004278 // if text[] just became empty, add back an empty line
4279 if (end == text) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004280 char_insert(text, '\n', NO_UNDO); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00004281 dot = text;
4282 }
4283 // it is OK for dot to exactly equal to end, otherwise check dot validity
4284 if (dot != end) {
4285 dot = bound_dot(dot); // make sure "dot" is valid
4286 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004287#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004288 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004289#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004290
4291 if (!isdigit(c))
4292 cmdcnt = 0; // cmd was not a number, reset cmdcnt
4293 cnt = dot - begin_line(dot);
4294 // Try to stay off of the Newline
4295 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
4296 dot--;
4297}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004298
Paul Fox35e9c5d2008-03-06 16:26:12 +00004299/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004300#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004301static int totalcmds = 0;
4302static int Mp = 85; // Movement command Probability
4303static int Np = 90; // Non-movement command Probability
4304static int Dp = 96; // Delete command Probability
4305static int Ip = 97; // Insert command Probability
4306static int Yp = 98; // Yank command Probability
4307static int Pp = 99; // Put command Probability
4308static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004309static const char chars[20] = "\t012345 abcdABCD-=.$";
4310static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004311 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004312 "broadcast", "the", "emergency", "of",
4313 "system", "quick", "brown", "fox",
4314 "jumped", "over", "lazy", "dogs",
4315 "back", "January", "Febuary", "March"
4316};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004317static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004318 "You should have received a copy of the GNU General Public License\n",
4319 "char c, cm, *cmd, *cmd1;\n",
4320 "generate a command by percentages\n",
4321 "Numbers may be typed as a prefix to some commands.\n",
4322 "Quit, discarding changes!\n",
4323 "Forced write, if permission originally not valid.\n",
4324 "In general, any ex or ed command (such as substitute or delete).\n",
4325 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
4326 "Please get w/ me and I will go over it with you.\n",
4327 "The following is a list of scheduled, committed changes.\n",
4328 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
4329 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
4330 "Any question about transactions please contact Sterling Huxley.\n",
4331 "I will try to get back to you by Friday, December 31.\n",
4332 "This Change will be implemented on Friday.\n",
4333 "Let me know if you have problems accessing this;\n",
4334 "Sterling Huxley recently added you to the access list.\n",
4335 "Would you like to go to lunch?\n",
4336 "The last command will be automatically run.\n",
4337 "This is too much english for a computer geek.\n",
4338};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004339static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004340 "You should have received a copy of the GNU General Public License\n",
4341 "char c, cm, *cmd, *cmd1;\n",
4342 "generate a command by percentages\n",
4343 "Numbers may be typed as a prefix to some commands.\n",
4344 "Quit, discarding changes!\n",
4345 "Forced write, if permission originally not valid.\n",
4346 "In general, any ex or ed command (such as substitute or delete).\n",
4347 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
4348 "Please get w/ me and I will go over it with you.\n",
4349 "The following is a list of scheduled, committed changes.\n",
4350 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
4351 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
4352 "Any question about transactions please contact Sterling Huxley.\n",
4353 "I will try to get back to you by Friday, December 31.\n",
4354 "This Change will be implemented on Friday.\n",
4355 "Let me know if you have problems accessing this;\n",
4356 "Sterling Huxley recently added you to the access list.\n",
4357 "Would you like to go to lunch?\n",
4358 "The last command will be automatically run.\n",
4359 "This is too much english for a computer geek.\n",
4360};
4361
4362// create a random command to execute
4363static void crash_dummy()
4364{
4365 static int sleeptime; // how long to pause between commands
4366 char c, cm, *cmd, *cmd1;
4367 int i, cnt, thing, rbi, startrbi, percent;
4368
4369 // "dot" movement commands
4370 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
4371
4372 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02004373 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004374 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004375 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02004376 readbuffer[0] = 'X';
4377 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004378 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004379 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004380 // generate a command by percentages
4381 percent = (int) lrand48() % 100; // get a number from 0-99
4382 if (percent < Mp) { // Movement commands
4383 // available commands
4384 cmd = cmd1;
4385 M++;
4386 } else if (percent < Np) { // non-movement commands
4387 cmd = "mz<>\'\""; // available commands
4388 N++;
4389 } else if (percent < Dp) { // Delete commands
4390 cmd = "dx"; // available commands
4391 D++;
4392 } else if (percent < Ip) { // Inset commands
4393 cmd = "iIaAsrJ"; // available commands
4394 I++;
4395 } else if (percent < Yp) { // Yank commands
4396 cmd = "yY"; // available commands
4397 Y++;
4398 } else if (percent < Pp) { // Put commands
4399 cmd = "pP"; // available commands
4400 P++;
4401 } else {
4402 // We do not know how to handle this command, try again
4403 U++;
4404 goto cd0;
4405 }
4406 // randomly pick one of the available cmds from "cmd[]"
4407 i = (int) lrand48() % strlen(cmd);
4408 cm = cmd[i];
4409 if (strchr(":\024", cm))
4410 goto cd0; // dont allow colon or ctrl-T commands
4411 readbuffer[rbi++] = cm; // put cmd into input buffer
4412
4413 // now we have the command-
4414 // there are 1, 2, and multi char commands
4415 // find out which and generate the rest of command as necessary
4416 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
4417 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
4418 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
4419 cmd1 = "abcdefghijklmnopqrstuvwxyz";
4420 }
4421 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4422 c = cmd1[thing];
4423 readbuffer[rbi++] = c; // add movement to input buffer
4424 }
4425 if (strchr("iIaAsc", cm)) { // multi-char commands
4426 if (cm == 'c') {
4427 // change some thing
4428 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4429 c = cmd1[thing];
4430 readbuffer[rbi++] = c; // add movement to input buffer
4431 }
4432 thing = (int) lrand48() % 4; // what thing to insert
4433 cnt = (int) lrand48() % 10; // how many to insert
4434 for (i = 0; i < cnt; i++) {
4435 if (thing == 0) { // insert chars
4436 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
4437 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004438 strcat(readbuffer, words[(int) lrand48() % 20]);
4439 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004440 sleeptime = 0; // how fast to type
4441 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004442 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004443 sleeptime = 0; // how fast to type
4444 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004445 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004446 sleeptime = 0; // how fast to type
4447 }
4448 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004449 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004450 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02004451 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004452 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004453 totalcmds++;
4454 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004455 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004456}
4457
4458// test to see if there are any errors
4459static void crash_test()
4460{
4461 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004462
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004463 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004464 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004465
4466 msg[0] = '\0';
4467 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004468 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004469 }
4470 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004471 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004472 }
4473 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004474 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004475 }
4476 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004477 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004478 }
4479 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004480 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004481 }
4482 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004483 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004484 }
4485
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004486 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00004487 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Denys Vlasenko04b52892012-06-11 13:51:38 +02004488 totalcmds, last_input_char, msg, ESC_BOLD_TEXT, ESC_NORM_TEXT);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01004489 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004490 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004491 if (d[0] == '\n' || d[0] == '\r')
4492 break;
4493 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004494 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004495 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004496 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004497 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004498 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4499 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4500 oldtim = tim;
4501 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004502}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004503#endif