blob: 77535be92bc0ddedac535478618dedbcd7d9bc69 [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 */
414
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000415};
416#define G (*ptr_to_globals)
417#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000418#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000419#define end (G.end )
420#define dot (G.dot )
421#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000422
423#define vi_setops (G.vi_setops )
424#define editing (G.editing )
425#define cmd_mode (G.cmd_mode )
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200426#define modified_count (G.modified_count )
427#define last_modified_count (G.last_modified_count)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000428#define save_argc (G.save_argc )
429#define cmdcnt (G.cmdcnt )
430#define rows (G.rows )
431#define columns (G.columns )
432#define crow (G.crow )
433#define ccol (G.ccol )
434#define offset (G.offset )
435#define status_buffer (G.status_buffer )
436#define have_status_msg (G.have_status_msg )
437#define last_status_cksum (G.last_status_cksum )
438#define current_filename (G.current_filename )
439#define screen (G.screen )
440#define screensize (G.screensize )
441#define screenbegin (G.screenbegin )
442#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000443#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000444#define erase_char (G.erase_char )
445#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000446#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000447#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000448#else
449#define readonly_mode 0
450#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000451#define adding2q (G.adding2q )
452#define lmc_len (G.lmc_len )
453#define ioq (G.ioq )
454#define ioq_start (G.ioq_start )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000455#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000456#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000457
Denis Vlasenkob1759462008-06-20 20:20:54 +0000458#define edit_file__cur_line (G.edit_file__cur_line)
459#define refresh__old_offset (G.refresh__old_offset)
460#define format_edit_status__tot (G.format_edit_status__tot)
461
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000462#define YDreg (G.YDreg )
463#define Ureg (G.Ureg )
464#define mark (G.mark )
465#define context_start (G.context_start )
466#define context_end (G.context_end )
467#define restart (G.restart )
468#define term_orig (G.term_orig )
469#define term_vi (G.term_vi )
470#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000471#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000472#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000473#define last_modifying_cmd (G.last_modifying_cmd )
474#define get_input_line__buf (G.get_input_line__buf)
475
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200476#if ENABLE_FEATURE_VI_UNDO
477#define undo_stack_tail (G.undo_stack_tail )
478# if ENABLE_FEATURE_VI_UNDO_QUEUE
479#define undo_queue_state (G.undo_queue_state)
480#define undo_q (G.undo_q )
481#define undo_queue (G.undo_queue )
482#define undo_queue_spos (G.undo_queue_spos )
483# endif
484#endif
485
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000486#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000487 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200488 last_modified_count = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000489 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000490 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000491} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000492
Denis Vlasenkob1759462008-06-20 20:20:54 +0000493
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000494static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000495static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000496static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000497static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
498static char *begin_line(char *); // return pointer to cur line B-o-l
499static char *end_line(char *); // return pointer to cur line E-o-l
500static char *prev_line(char *); // return pointer to prev line B-o-l
501static char *next_line(char *); // return pointer to next line B-o-l
502static char *end_screen(void); // get pointer to last char on screen
503static int count_lines(char *, char *); // count line from start to stop
504static char *find_line(int); // find begining of line #li
505static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000506static void dot_left(void); // move dot left- dont leave line
507static void dot_right(void); // move dot right- dont leave line
508static void dot_begin(void); // move dot to B-o-l
509static void dot_end(void); // move dot to E-o-l
510static void dot_next(void); // move dot to next line B-o-l
511static void dot_prev(void); // move dot to prev line B-o-l
512static void dot_scroll(int, int); // move the screen up or down
513static void dot_skip_over_ws(void); // move dot pat WS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000514static char *bound_dot(char *); // make sure text[0] <= P < "end"
515static char *new_screen(int, int); // malloc virtual screen memory
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200516#if !ENABLE_FEATURE_VI_UNDO
517#define char_insert(a,b,c) char_insert(a,b)
518#endif
519static char *char_insert(char *, char, int); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000520// might reallocate text[]! use p += stupid_insert(p, ...),
521// and be careful to not use pointers into potentially freed text[]!
522static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000523static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000524static int st_test(char *, int, int, char *); // helper for skip_thing()
525static char *skip_thing(char *, int, int, int); // skip some object
526static char *find_pair(char *, char); // find matching pair () [] {}
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200527#if !ENABLE_FEATURE_VI_UNDO
528#define text_hole_delete(a,b,c) text_hole_delete(a,b)
529#endif
530static char *text_hole_delete(char *, char *, int); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000531// might reallocate text[]! use p += text_hole_make(p, ...),
532// and be careful to not use pointers into potentially freed text[]!
533static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200534#if !ENABLE_FEATURE_VI_UNDO
535#define yank_delete(a,b,c,d,e) yank_delete(a,b,c,d)
536#endif
537static char *yank_delete(char *, char *, int, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000538static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000539static void rawmode(void); // set "raw" mode on tty
540static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000541// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
542static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000543static int readit(void); // read (maybe cursor) key from stdin
544static int get_one_char(void); // read 1 char from stdin
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000545// file_insert might reallocate text[]!
546static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000547static int file_write(char *, char *, char *);
Denys Vlasenko04b52892012-06-11 13:51:38 +0200548static void place_cursor(int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000549static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000550static void clear_to_eol(void);
551static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000552static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000553static void standout_start(void); // send "start reverse video" sequence
554static void standout_end(void); // send "end reverse video" sequence
555static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000556static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000557static void status_line(const char *, ...); // print to status buf
558static void status_line_bold(const char *, ...);
Denys Vlasenko9e7c0022013-03-15 02:17:29 +0100559static void status_line_bold_errno(const char *fn);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000560static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000561static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000562static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000563static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000564static void refresh(int); // update the terminal from screen[]
565
Denys Vlasenko05399fc2014-09-15 17:06:10 +0200566static void indicate_error(void); // use flash or beep to indicate error
Paul Fox90372ed2005-10-09 14:26:26 +0000567static void Hit_Return(void);
568
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000569#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000570static char *char_search(char *, const char *, int, int); // search for pattern starting at p
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000571#endif
572#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000573static char *get_one_address(char *, int *); // get colon addr, if present
574static char *get_address(char *, int *, int *); // get two colon addrs, if present
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000575#endif
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200576static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000577#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000578static void winch_sig(int); // catch window size changes
579static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000580static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000581#endif
582#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000583static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000584static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000585#else
586#define end_cmd_q() ((void)0)
587#endif
588#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000589static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000590#endif
591#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000592// might reallocate text[]! use p += string_insert(p, ...),
593// and be careful to not use pointers into potentially freed text[]!
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200594# if !ENABLE_FEATURE_VI_UNDO
595#define string_insert(a,b,c) string_insert(a,b)
596# endif
597static uintptr_t string_insert(char *, const char *, int); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000598#endif
599#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000600static char *text_yank(char *, char *, int); // save copy of "p" into a register
601static char what_reg(void); // what is letter of current YDreg
602static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000603#endif
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200604#if ENABLE_FEATURE_VI_UNDO
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200605static void flush_undo_data(void);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200606static void undo_push(char *, unsigned int, unsigned char); // Push an operation on the undo stack
607static void undo_pop(void); // Undo the last operation
608# if ENABLE_FEATURE_VI_UNDO_QUEUE
609static void undo_queue_commit(void); // Flush any queued objects to the undo stack
610# else
611# define undo_queue_commit() ((void)0)
612# endif
613#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200614#define flush_undo_data() ((void)0)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200615#define undo_queue_commit() ((void)0)
616#endif
617
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000618#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000619static void crash_dummy();
620static void crash_test();
621static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000622#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000623
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000624static void write1(const char *out)
625{
626 fputs(out, stdout);
627}
628
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000629int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000630int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000631{
Eric Andersend402edf2001-04-04 19:29:48 +0000632 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000633
634 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000635
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200636#if ENABLE_FEATURE_VI_UNDO
637 /* undo_stack_tail = NULL; - already is */
638#if ENABLE_FEATURE_VI_UNDO_QUEUE
639 undo_queue_state = UNDO_EMPTY;
640 /* undo_q = 0; - already is */
641#endif
642#endif
643
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000644#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000645 my_pid = getpid();
646#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000647#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000648 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000649#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000650#ifdef NO_SUCH_APPLET_YET
651 /* If we aren't "vi", we are "view" */
652 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000653 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000654 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000655#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000656
Denys Vlasenko605f2642012-06-11 01:53:33 +0200657 // autoindent is not default in vim 7.3
658 vi_setops = /*VI_AUTOINDENT |*/ VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000659 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000660 // 2- process EXINIT variable from environment
661 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000662#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000663 {
664 char *p = getenv("EXINIT");
665 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000666 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000667 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000668#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000669 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000670 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000671#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000672 case 'C':
673 crashme = 1;
674 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000675#endif
676#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000677 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000678 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000679 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000680#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000681#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000682 case 'c': // cmd line vi command
683 if (*optarg)
Denys Vlasenko605f2642012-06-11 01:53:33 +0200684 initial_cmds[initial_cmds[0] != NULL] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000685 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000686#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000687 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000688 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000689 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000690 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000691 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000692 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000693 }
694 }
695
696 // The argv array can be used by the ":next" and ":rewind" commands
Dennis Groenenc0657e02012-01-31 14:12:38 +0100697 argv += optind;
698 argc -= optind;
Eric Andersen3f980402001-04-04 17:31:15 +0000699
700 //----- This is the main file handling loop --------------
Denys Vlasenko04b52892012-06-11 13:51:38 +0200701 save_argc = argc;
702 optind = 0;
Denys Vlasenkod3dff872012-06-11 13:53:26 +0200703 // "Save cursor, use alternate screen buffer, clear screen"
704 write1("\033[?1049h");
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700705 while (1) {
706 edit_file(argv[optind]); /* param might be NULL */
707 if (++optind >= argc)
708 break;
Eric Andersen3f980402001-04-04 17:31:15 +0000709 }
Denys Vlasenkod3dff872012-06-11 13:53:26 +0200710 // "Use normal screen buffer, restore cursor"
711 write1("\033[?1049l");
Eric Andersen3f980402001-04-04 17:31:15 +0000712 //-----------------------------------------------------------
713
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000714 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000715}
716
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000717/* read text from file or create an empty buf */
718/* will also update current_filename */
719static int init_text_buffer(char *fn)
720{
721 int rc;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000722
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200723 flush_undo_data();
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200724 modified_count = 0;
725 last_modified_count = -1;
726#if ENABLE_FEATURE_VI_YANKMARK
727 /* init the marks */
728 memset(mark, 0, sizeof(mark));
729#endif
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200730
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000731 /* allocate/reallocate text buffer */
732 free(text);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200733 text_size = 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000734 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000735
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000736 if (fn != current_filename) {
737 free(current_filename);
738 current_filename = xstrdup(fn);
739 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +0200740 rc = file_insert(fn, text, 1);
741 if (rc < 0) {
Denys Vlasenkoe7430862014-04-03 12:47:48 +0200742 // file doesnt exist. Start empty buf with dummy line
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200743 char_insert(text, '\n', NO_UNDO);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000744 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000745 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000746}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000747
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700748#if ENABLE_FEATURE_VI_WIN_RESIZE
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200749static int query_screen_dimensions(void)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700750{
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200751 int err = get_terminal_width_height(STDIN_FILENO, &columns, &rows);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700752 if (rows > MAX_SCR_ROWS)
753 rows = MAX_SCR_ROWS;
754 if (columns > MAX_SCR_COLS)
755 columns = MAX_SCR_COLS;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200756 return err;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700757}
758#else
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200759# define query_screen_dimensions() (0)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700760#endif
761
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000762static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000763{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000764#if ENABLE_FEATURE_VI_YANKMARK
765#define cur_line edit_file__cur_line
766#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000767 int c;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000768#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000769 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000770#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000771
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000772 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000773 rawmode();
774 rows = 24;
775 columns = 80;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200776 IF_FEATURE_VI_ASK_TERMINAL(G.get_rowcol_error =) query_screen_dimensions();
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700777#if ENABLE_FEATURE_VI_ASK_TERMINAL
778 if (G.get_rowcol_error /* TODO? && no input on stdin */) {
779 uint64_t k;
780 write1("\033[999;999H" "\033[6n");
781 fflush_all();
782 k = read_key(STDIN_FILENO, readbuffer, /*timeout_ms:*/ 100);
783 if ((int32_t)k == KEYCODE_CURSOR_POS) {
784 uint32_t rc = (k >> 32);
785 columns = (rc & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200786 if (columns > MAX_SCR_COLS)
787 columns = MAX_SCR_COLS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700788 rows = ((rc >> 16) & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200789 if (rows > MAX_SCR_ROWS)
790 rows = MAX_SCR_ROWS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700791 }
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700792 }
793#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000794 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000795 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000796
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000797#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000798 YDreg = 26; // default Yank/Delete reg
799 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000800 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000801#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000802
Eric Andersen3f980402001-04-04 17:31:15 +0000803 last_forward_char = last_input_char = '\0';
804 crow = 0;
805 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000806
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000807#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700808 signal(SIGINT, catch_sig);
Eric Andersen3f980402001-04-04 17:31:15 +0000809 signal(SIGWINCH, winch_sig);
810 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000811 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000812 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000813 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000814 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000815#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000816
Eric Andersen3f980402001-04-04 17:31:15 +0000817 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
818 cmdcnt = 0;
819 tabstop = 8;
820 offset = 0; // no horizontal offset
821 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000822#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000823 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000824 ioq = ioq_start = NULL;
825 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000826 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000827#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000828
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000829#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000830 {
831 char *p, *q;
832 int n = 0;
833
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700834 while ((p = initial_cmds[n]) != NULL) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000835 do {
836 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000837 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000838 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000839 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000840 *p++ = '\0';
841 if (*q)
842 colon(q);
843 } while (p);
844 free(initial_cmds[n]);
845 initial_cmds[n] = NULL;
846 n++;
847 }
848 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000849#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000850 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000851 //------This is the main Vi cmd handling loop -----------------------
852 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000853#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000854 if (crashme > 0) {
855 if ((end - text) > 1) {
856 crash_dummy(); // generate a random command
857 } else {
858 crashme = 0;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +0200859 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 +0000860 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000861 refresh(FALSE);
862 }
863 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000864#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000865 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000866#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000867 // save a copy of the current line- for the 'U" command
868 if (begin_line(dot) != cur_line) {
869 cur_line = begin_line(dot);
870 text_yank(begin_line(dot), end_line(dot), Ureg);
871 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000872#endif
873#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000874 // These are commands that change text[].
875 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000876 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000877 && cmd_mode == 0 // command mode
878 && c > '\0' // exclude NUL and non-ASCII chars
879 && c < 0x7f // (Unicode and such)
880 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000881 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000882 start_new_cmd_q(c);
883 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000884#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000885 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000886
Eric Andersen3f980402001-04-04 17:31:15 +0000887 // poll to see if there is input already waiting. if we are
888 // not able to display output fast enough to keep up, skip
889 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200890 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000891 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000892 refresh(FALSE);
893 show_status_line();
894 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000895#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000896 if (crashme > 0)
897 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000898#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000899 }
900 //-------------------------------------------------------------------
901
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000902 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000903 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000904#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000905}
906
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000907//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000908#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000909static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000910{
911 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000912 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000913 IF_FEATURE_VI_YANKMARK(char c;)
914 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000915
916 *addr = -1; // assume no addr
917 if (*p == '.') { // the current line
918 p++;
919 q = begin_line(dot);
920 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000921 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000922#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000923 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000924 p++;
925 c = tolower(*p);
926 p++;
927 if (c >= 'a' && c <= 'z') {
928 // we have a mark
929 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000930 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000931 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000932 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000933 }
934 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000935 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000936#endif
937#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000938 else if (*p == '/') { // a search pattern
939 q = strchrnul(++p, '/');
940 pat = xstrndup(p, q - p); // save copy of pattern
941 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000942 if (*p == '/')
943 p++;
944 q = char_search(dot, pat, FORWARD, FULL);
945 if (q != NULL) {
946 *addr = count_lines(text, q);
947 }
948 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000949 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000950#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000951 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000952 p++;
953 q = begin_line(end - 1);
954 *addr = count_lines(text, q);
955 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000956 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000957 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000958 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200959 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000960 *addr = -1;
961 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000962 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000963}
964
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000965static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000966{
967 //----- get the address' i.e., 1,3 'a,'b -----
968 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000969 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000970 p++; // skip over leading spaces
971 if (*p == '%') { // alias for 1,$
972 p++;
973 *b = 1;
974 *e = count_lines(text, end-1);
975 goto ga0;
976 }
977 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000978 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000979 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000980 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000981 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000982 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000983 p++;
984 // get SECOND addr, if present
985 p = get_one_address(p, e);
986 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000987 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000988 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000989 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000990 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000991}
992
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000993#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000994static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000995 const char *short_opname, int opt)
996{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000997 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000998 int l = strlen(opname) - 1; /* opname have + ' ' */
999
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001000 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001001 if (strncasecmp(a, opname, l) == 0
1002 || strncasecmp(a, short_opname, 2) == 0
1003 ) {
1004 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001005 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001006 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001007 vi_setops |= opt;
1008 }
1009}
1010#endif
1011
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001012#endif /* FEATURE_VI_COLON */
1013
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001014// buf must be no longer than MAX_INPUT_LEN!
1015static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001016{
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001017#if !ENABLE_FEATURE_VI_COLON
1018 /* Simple ":cmd" handler with minimal set of commands */
1019 char *p = buf;
1020 int cnt;
1021
1022 if (*p == ':')
1023 p++;
1024 cnt = strlen(p);
1025 if (cnt == 0)
1026 return;
1027 if (strncmp(p, "quit", cnt) == 0
1028 || strncmp(p, "q!", cnt) == 0
1029 ) {
1030 if (modified_count && p[1] != '!') {
1031 status_line_bold("No write since last change (:%s! overrides)", p);
1032 } else {
1033 editing = 0;
1034 }
1035 return;
1036 }
1037 if (strncmp(p, "write", cnt) == 0
1038 || strncmp(p, "wq", cnt) == 0
1039 || strncmp(p, "wn", cnt) == 0
1040 || (p[0] == 'x' && !p[1])
1041 ) {
1042 cnt = file_write(current_filename, text, end - 1);
1043 if (cnt < 0) {
1044 if (cnt == -1)
1045 status_line_bold("Write error: %s", strerror(errno));
1046 } else {
1047 modified_count = 0;
1048 last_modified_count = -1;
1049 status_line("'%s' %dL, %dC",
1050 current_filename,
1051 count_lines(text, end - 1), cnt
1052 );
1053 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
1054 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
1055 ) {
1056 editing = 0;
1057 }
1058 }
1059 return;
1060 }
1061 if (strncmp(p, "file", cnt) == 0) {
1062 last_status_cksum = 0; // force status update
1063 return;
1064 }
1065 if (sscanf(p, "%d", &cnt) > 0) {
1066 dot = find_line(cnt);
1067 dot_skip_over_ws();
1068 return;
1069 }
1070 not_implemented(p);
1071#else
1072
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001073 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001074 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001075 int i, l, li, b, e;
1076 int useforce;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001077
1078 // :3154 // if (-e line 3154) goto it else stay put
1079 // :4,33w! foo // write a portion of buffer to file "foo"
1080 // :w // write all of buffer to current file
1081 // :q // quit
1082 // :q! // quit- dont care about modified file
1083 // :'a,'z!sort -u // filter block through sort
1084 // :'f // goto mark "f"
1085 // :'fl // list literal the mark "f" line
1086 // :.r bar // read file "bar" into buffer before dot
1087 // :/123/,/abc/d // delete lines from "123" line to "abc" line
1088 // :/xyz/ // goto the "xyz" line
1089 // :s/find/replace/ // substitute pattern "find" with "replace"
1090 // :!<cmd> // run <cmd> then return
1091 //
Eric Andersen165e8cb2004-07-20 06:44:46 +00001092
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001093 if (!buf[0])
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001094 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001095 if (*buf == ':')
1096 buf++; // move past the ':'
1097
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001098 li = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001099 b = e = -1;
1100 q = text; // assume 1,$ for the range
1101 r = end - 1;
1102 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001103 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001104
1105 // look for optional address(es) :. :1 :1,9 :'q,'a :%
1106 buf = get_address(buf, &b, &e);
1107
1108 // remember orig command line
1109 orig_buf = buf;
1110
1111 // get the COMMAND into cmd[]
1112 buf1 = cmd;
1113 while (*buf != '\0') {
1114 if (isspace(*buf))
1115 break;
1116 *buf1++ = *buf++;
1117 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001118 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001119 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001120 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001121 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001122 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001123 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001124 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001125 if (buf1) {
1126 useforce = TRUE;
1127 *buf1 = '\0'; // get rid of !
1128 }
1129 if (b >= 0) {
1130 // if there is only one addr, then the addr
1131 // is the line number of the single line the
1132 // user wants. So, reset the end
1133 // pointer to point at end of the "b" line
1134 q = find_line(b); // what line is #b
1135 r = end_line(q);
1136 li = 1;
1137 }
1138 if (e >= 0) {
1139 // we were given two addrs. change the
1140 // end pointer to the addr given by user.
1141 r = find_line(e); // what line is #e
1142 r = end_line(r);
1143 li = e - b + 1;
1144 }
1145 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001146 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001147 if (i == 0) { // :123CR goto line #123
1148 if (b >= 0) {
1149 dot = find_line(b); // what line is #b
1150 dot_skip_over_ws();
1151 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +00001152 }
1153#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001154 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001155 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001156 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001157 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001158 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001159 retcode = system(orig_buf + 1); // run the cmd
1160 if (retcode)
1161 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001162 rawmode();
1163 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +00001164 }
1165#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001166 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001167 if (b < 0) { // no addr given- use defaults
1168 b = e = count_lines(text, dot);
1169 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001170 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001171 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001172 if (b < 0) { // no addr given- use defaults
1173 q = begin_line(dot); // assume .,. for the range
1174 r = end_line(dot);
1175 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001176 dot = yank_delete(q, r, 1, YANKDEL, ALLOW_UNDO); // save, then delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001177 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001178 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001179 int size;
1180
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001181 // don't edit, if the current file has been modified
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001182 if (modified_count && !useforce) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001183 status_line_bold("No write since last change (:%s! overrides)", cmd);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001184 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001185 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001186 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001187 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001188 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001189 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001190 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001191 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001192 } else {
1193 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001194 status_line_bold("No current filename");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001195 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001196 }
1197
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001198 size = init_text_buffer(fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001199
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001200#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001201 if (Ureg >= 0 && Ureg < 28) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001202 free(reg[Ureg]); // free orig line reg- for 'U'
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001203 reg[Ureg] = NULL;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001204 }
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001205 if (YDreg >= 0 && YDreg < 28) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001206 free(reg[YDreg]); // free default yank/delete register
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001207 reg[YDreg] = NULL;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001208 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001209#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001210 // how many lines in text[]?
1211 li = count_lines(text, end - 1);
Denys Vlasenko778794d2013-01-22 10:13:52 +01001212 status_line("'%s'%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001213 IF_FEATURE_VI_READONLY("%s")
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001214 " %dL, %dC",
1215 current_filename,
1216 (size < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001217 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001218 ((readonly_mode) ? " [Readonly]" : ""),
1219 )
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001220 li, (int)(end - text)
1221 );
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001222 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001223 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01001224 status_line_bold("No address allowed on this command");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001225 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001226 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001227 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001228 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001229 free(current_filename);
1230 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001231 } else {
1232 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +00001233 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001234 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001235 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001236 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001237 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001238 cookmode();
1239 show_help();
1240 rawmode();
1241 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001242 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001243 if (b < 0) { // no addr given- use defaults
1244 q = begin_line(dot); // assume .,. for the range
1245 r = end_line(dot);
1246 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001247 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001248 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001249 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001250 int c_is_no_print;
1251
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001252 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +00001253 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001254 if (c_is_no_print) {
1255 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001256 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +00001257 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001258 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001259 write1("$\r");
1260 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00001261 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001262 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001263 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001264 else
1265 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001266 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001267 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001268 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001269 standout_end();
1270 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001271 Hit_Return();
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001272 } else if (strncmp(cmd, "quit", i) == 0 // quit
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001273 || strncmp(cmd, "next", i) == 0 // edit next file
Dennis Groenenc0657e02012-01-31 14:12:38 +01001274 || strncmp(cmd, "prev", i) == 0 // edit previous file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001275 ) {
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001276 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001277 if (useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001278 if (*cmd == 'q') {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001279 // force end of argv list
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001280 optind = save_argc;
1281 }
1282 editing = 0;
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001283 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001284 }
1285 // don't exit if the file been modified
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001286 if (modified_count) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001287 status_line_bold("No write since last change (:%s! overrides)", cmd);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001288 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001289 }
1290 // are there other file to edit
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001291 n = save_argc - optind - 1;
1292 if (*cmd == 'q' && n > 0) {
1293 status_line_bold("%d more file(s) to edit", n);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001294 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001295 }
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001296 if (*cmd == 'n' && n <= 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001297 status_line_bold("No more files to edit");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001298 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001299 }
Dennis Groenenc0657e02012-01-31 14:12:38 +01001300 if (*cmd == 'p') {
1301 // are there previous files to edit
1302 if (optind < 1) {
1303 status_line_bold("No previous files to edit");
1304 goto ret;
1305 }
1306 optind -= 2;
1307 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001308 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001309 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001310 int size;
1311
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001312 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001313 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001314 status_line_bold("No filename given");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001315 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001316 }
1317 if (b < 0) { // no addr given- use defaults
1318 q = begin_line(dot); // assume "dot"
1319 }
1320 // read after current line- unless user said ":0r foo"
Ron Yorston70f43202014-11-30 20:39:53 +00001321 if (b != 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001322 q = next_line(q);
Ron Yorston70f43202014-11-30 20:39:53 +00001323 // read after last line
1324 if (q == end-1)
1325 ++q;
1326 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001327 { // dance around potentially-reallocated text[]
1328 uintptr_t ofs = q - text;
Ron Yorstone5213ce2014-11-30 20:39:25 +00001329 size = file_insert(fn, q, 0);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001330 q = text + ofs;
1331 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001332 if (size < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001333 goto ret; // nothing was inserted
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001334 // how many lines in text[]?
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001335 li = count_lines(q, q + size - 1);
Denys Vlasenko778794d2013-01-22 10:13:52 +01001336 status_line("'%s'"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001337 IF_FEATURE_VI_READONLY("%s")
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001338 " %dL, %dC",
1339 fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001340 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001341 li, size
1342 );
1343 if (size > 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001344 // if the insert is before "dot" then we need to update
1345 if (q <= dot)
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001346 dot += size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001347 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001348 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001349 if (modified_count && !useforce) {
Dennis Groenenc0657e02012-01-31 14:12:38 +01001350 status_line_bold("No write since last change (:%s! overrides)", cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001351 } else {
1352 // reset the filenames to edit
Dennis Groenenc0657e02012-01-31 14:12:38 +01001353 optind = -1; /* start from 0th file */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001354 editing = 0;
1355 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001356#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001357 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001358#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001359 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001360#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001361 i = 0; // offset into args
Denys Vlasenko605f2642012-06-11 01:53:33 +02001362 // only blank is regarded as args delimiter. What about tab '\t'?
Denis Vlasenkof9234132007-03-21 00:03:42 +00001363 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001364 // print out values of all options
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001365#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001366 status_line_bold(
1367 "%sautoindent "
1368 "%sflash "
1369 "%signorecase "
1370 "%sshowmatch "
1371 "tabstop=%u",
1372 autoindent ? "" : "no",
1373 err_method ? "" : "no",
1374 ignorecase ? "" : "no",
1375 showmatch ? "" : "no",
1376 tabstop
1377 );
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001378#endif
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001379 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001380 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001381#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001382 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001383 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001384 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001385 i = 2; // ":set noautoindent"
1386 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001387 setops(argp, "flash " , i, "fl", VI_ERR_METHOD);
Denis Vlasenkof9234132007-03-21 00:03:42 +00001388 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001389 setops(argp, "showmatch " , i, "sm", VI_SHOWMATCH );
1390 if (strncmp(argp + i, "tabstop=", 8) == 0) {
1391 int t = 0;
1392 sscanf(argp + i+8, "%u", &t);
1393 if (t > 0 && t <= MAX_TABSTOP)
1394 tabstop = t;
Denis Vlasenkof9234132007-03-21 00:03:42 +00001395 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001396 argp = skip_non_whitespace(argp);
1397 argp = skip_whitespace(argp);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001398 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001399#endif /* FEATURE_VI_SETOPTS */
1400#endif /* FEATURE_VI_SET */
1401#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001402 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001403 char *F, *R, *flags;
1404 size_t len_F, len_R;
1405 int gflag; // global replace flag
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001406#if ENABLE_FEATURE_VI_UNDO
1407 int dont_chain_first_item = ALLOW_UNDO;
1408#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001409
1410 // F points to the "find" pattern
1411 // R points to the "replace" pattern
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001412 // replace the cmd line delimiters "/" with NULs
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001413 c = orig_buf[1]; // what is the delimiter
1414 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001415 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001416 if (!R)
1417 goto colon_s_fail;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001418 len_F = R - F;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001419 *R++ = '\0'; // terminate "find"
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001420 flags = strchr(R, c);
1421 if (!flags)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001422 goto colon_s_fail;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001423 len_R = flags - R;
1424 *flags++ = '\0'; // terminate "replace"
1425 gflag = *flags;
1426
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001427 q = begin_line(q);
1428 if (b < 0) { // maybe :s/foo/bar/
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001429 q = begin_line(dot); // start with cur line
1430 b = count_lines(text, q); // cur line number
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001431 }
1432 if (e < 0)
1433 e = b; // maybe :.s/foo/bar/
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001434
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001435 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001436 char *ls = q; // orig line start
1437 char *found;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001438 vc4:
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001439 found = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
1440 if (found) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001441 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001442 // we found the "find" pattern - delete it
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001443 // For undo support, the first item should not be chained
1444 text_hole_delete(found, found + len_F - 1, dont_chain_first_item);
1445#if ENABLE_FEATURE_VI_UNDO
1446 dont_chain_first_item = ALLOW_UNDO_CHAIN;
1447#endif
1448 // insert the "replace" patern
1449 bias = string_insert(found, R, ALLOW_UNDO_CHAIN);
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001450 found += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001451 ls += bias;
1452 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001453 // check for "global" :s/foo/bar/g
Denys Vlasenko800a9a02012-01-31 14:10:26 +01001454 if (gflag == 'g') {
1455 if ((found + len_R) < end_line(ls)) {
1456 q = found + len_R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001457 goto vc4; // don't let q move past cur line
1458 }
1459 }
1460 }
1461 q = next_line(ls);
1462 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001463#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001464 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001465 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001466 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1467 || strncmp(cmd, "wq", i) == 0
1468 || strncmp(cmd, "wn", i) == 0
1469 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001470 ) {
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001471 int size;
1472 //int forced = FALSE;
1473
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001474 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001475 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001476 fn = args;
1477 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001478#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001479 if (readonly_mode && !useforce) {
Denys Vlasenko778794d2013-01-22 10:13:52 +01001480 status_line_bold("'%s' is read only", fn);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001481 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001482 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001483#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001484 // how many lines in text[]?
1485 li = count_lines(q, r);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001486 size = r - q + 1;
1487 //if (useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001488 // if "fn" is not write-able, chmod u+w
1489 // sprintf(syscmd, "chmod u+w %s", fn);
1490 // system(syscmd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001491 // forced = TRUE;
1492 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001493 l = file_write(fn, q, r);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001494 //if (useforce && forced) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001495 // chmod u-w
1496 // sprintf(syscmd, "chmod u-w %s", fn);
1497 // system(syscmd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001498 // forced = FALSE;
1499 //}
Paul Fox61e45db2005-10-09 14:43:22 +00001500 if (l < 0) {
1501 if (l == -1)
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01001502 status_line_bold_errno(fn);
Paul Fox61e45db2005-10-09 14:43:22 +00001503 } else {
Denys Vlasenko778794d2013-01-22 10:13:52 +01001504 status_line("'%s' %dL, %dC", fn, li, l);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001505 if (q == text && r == end - 1 && l == size) {
Denys Vlasenkoe7430862014-04-03 12:47:48 +02001506 modified_count = 0;
1507 last_modified_count = -1;
Paul Fox61e45db2005-10-09 14:43:22 +00001508 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001509 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n'
1510 || cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N'
1511 )
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001512 && l == size
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001513 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00001514 editing = 0;
1515 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001516 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001517#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001518 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001519 if (b < 0) { // no addr given- use defaults
1520 q = begin_line(dot); // assume .,. for the range
1521 r = end_line(dot);
1522 }
1523 text_yank(q, r, YDreg);
1524 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001525 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001526 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001527#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001528 } else {
1529 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001530 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001531 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001532 ret:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001533 dot = bound_dot(dot); // make sure "dot" is valid
1534 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001535#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001536 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001537 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001538#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001539#endif /* FEATURE_VI_COLON */
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02001540}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001541
1542static void Hit_Return(void)
1543{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001544 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001545
Denis Vlasenkof882f082007-12-23 02:36:51 +00001546 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001547 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001548 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001549 while ((c = get_one_char()) != '\n' && c != '\r')
1550 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551 redraw(TRUE); // force redraw all
1552}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001553
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001554static int next_tabstop(int col)
1555{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001556 return col + ((tabstop - 1) - (col % tabstop));
1557}
1558
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001559//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001560static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001561{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001562 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001563 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001564 int cnt, ro, co;
1565
1566 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001567
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001568 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001569 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001570 // how many lines do we have to move
1571 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001572 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001573 screenbegin = beg_cur;
1574 if (cnt > (rows - 1) / 2) {
1575 // we moved too many lines. put "dot" in middle of screen
1576 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1577 screenbegin = prev_line(screenbegin);
1578 }
1579 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001580 } else {
1581 char *end_scr; // begin and end of screen
1582 end_scr = end_screen(); // last char of screen
1583 if (beg_cur > end_scr) {
1584 // "d" is after bottom line on screen
1585 // how many lines do we have to move
1586 cnt = count_lines(end_scr, beg_cur);
1587 if (cnt > (rows - 1) / 2)
1588 goto sc1; // too many lines
1589 for (ro = 0; ro < cnt - 1; ro++) {
1590 // move screen begin the same amount
1591 screenbegin = next_line(screenbegin);
1592 // now, move the end of screen
1593 end_scr = next_line(end_scr);
1594 end_scr = end_line(end_scr);
1595 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001596 }
1597 }
1598 // "d" is on screen- find out which row
1599 tp = screenbegin;
1600 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1601 if (tp == beg_cur)
1602 break;
1603 tp = next_line(tp);
1604 }
1605
1606 // find out what col "d" is on
1607 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001608 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001609 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001610 break;
1611 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001612 // handle tabs like real vi
1613 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001614 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001615 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001616 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001617 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1618 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001619 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001620 co++;
1621 tp++;
1622 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001623
1624 // "co" is the column where "dot" is.
1625 // The screen has "columns" columns.
1626 // The currently displayed columns are 0+offset -- columns+ofset
1627 // |-------------------------------------------------------------|
1628 // ^ ^ ^
1629 // offset | |------- columns ----------------|
1630 //
1631 // If "co" is already in this range then we do not have to adjust offset
1632 // but, we do have to subtract the "offset" bias from "co".
1633 // If "co" is outside this range then we have to change "offset".
1634 // If the first char of a line is a tab the cursor will try to stay
1635 // in column 7, but we have to set offset to 0.
1636
1637 if (co < 0 + offset) {
1638 offset = co;
1639 }
1640 if (co >= columns + offset) {
1641 offset = co - columns + 1;
1642 }
1643 // if the first char of the line is a tab, and "dot" is sitting on it
1644 // force offset to 0.
1645 if (d == beg_cur && *d == '\t') {
1646 offset = 0;
1647 }
1648 co -= offset;
1649
1650 *row = ro;
1651 *col = co;
1652}
1653
1654//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001655static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001656{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001657 if (p > text) {
1658 p = memrchr(text, '\n', p - text);
1659 if (!p)
1660 return text;
1661 return p + 1;
1662 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001663 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001664}
1665
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001666static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001667{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001668 if (p < end - 1) {
1669 p = memchr(p, '\n', end - p - 1);
1670 if (!p)
1671 return end - 1;
1672 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001673 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001674}
1675
Denis Vlasenkof882f082007-12-23 02:36:51 +00001676static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001677{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001678 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001679 // Try to stay off of the Newline
1680 if (*p == '\n' && (p - begin_line(p)) > 0)
1681 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001682 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001683}
1684
Denis Vlasenkof882f082007-12-23 02:36:51 +00001685static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001686{
1687 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001688 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001689 p--; // step to prev line
1690 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001691 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001692}
1693
Denis Vlasenkof882f082007-12-23 02:36:51 +00001694static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001695{
1696 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001697 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001698 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001699 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001700}
1701
1702//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001703static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001704{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001705 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001706 int cnt;
1707
1708 // find new bottom line
1709 q = screenbegin;
1710 for (cnt = 0; cnt < rows - 2; cnt++)
1711 q = next_line(q);
1712 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001713 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001714}
1715
Denis Vlasenkof882f082007-12-23 02:36:51 +00001716// count line from start to stop
1717static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001718{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001719 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001720 int cnt;
1721
Denis Vlasenkof882f082007-12-23 02:36:51 +00001722 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001723 q = start;
1724 start = stop;
1725 stop = q;
1726 }
1727 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001728 stop = end_line(stop);
1729 while (start <= stop && start <= end - 1) {
1730 start = end_line(start);
1731 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001732 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001733 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001734 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001735 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001736}
1737
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001738static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001739{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001740 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001741
1742 for (q = text; li > 1; li--) {
1743 q = next_line(q);
1744 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001745 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001746}
1747
1748//----- Dot Movement Routines ----------------------------------
1749static void dot_left(void)
1750{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001751 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001752 if (dot > text && dot[-1] != '\n')
1753 dot--;
1754}
1755
1756static void dot_right(void)
1757{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001758 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001759 if (dot < end - 1 && *dot != '\n')
1760 dot++;
1761}
1762
1763static void dot_begin(void)
1764{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001765 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001766 dot = begin_line(dot); // return pointer to first char cur line
1767}
1768
1769static void dot_end(void)
1770{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001771 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001772 dot = end_line(dot); // return pointer to last char cur line
1773}
1774
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001775static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001776{
1777 int co;
1778
1779 p = begin_line(p);
1780 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001781 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001782 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001783 break;
1784 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001785 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001786 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001787 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001788 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001789 co++;
1790 p++;
1791 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001792 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001793}
1794
1795static void dot_next(void)
1796{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001797 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001798 dot = next_line(dot);
1799}
1800
1801static void dot_prev(void)
1802{
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001803 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001804 dot = prev_line(dot);
1805}
1806
1807static void dot_scroll(int cnt, int dir)
1808{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001809 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001810
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001811 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001812 for (; cnt > 0; cnt--) {
1813 if (dir < 0) {
1814 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001815 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001816 screenbegin = prev_line(screenbegin);
1817 } else {
1818 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001819 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001820 screenbegin = next_line(screenbegin);
1821 }
1822 }
1823 // make sure "dot" stays on the screen so we dont scroll off
1824 if (dot < screenbegin)
1825 dot = screenbegin;
1826 q = end_screen(); // find new bottom line
1827 if (dot > q)
1828 dot = begin_line(q); // is dot is below bottom line?
1829 dot_skip_over_ws();
1830}
1831
1832static void dot_skip_over_ws(void)
1833{
1834 // skip WS
1835 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1836 dot++;
1837}
1838
Denis Vlasenkof882f082007-12-23 02:36:51 +00001839static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001840{
1841 if (p >= end && end > text) {
1842 p = end - 1;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02001843 indicate_error();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001844 }
1845 if (p < text) {
1846 p = text;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02001847 indicate_error();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001848 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001849 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001850}
1851
1852//----- Helper Utility Routines --------------------------------
1853
1854//----------------------------------------------------------------
1855//----- Char Routines --------------------------------------------
1856/* Chars that are part of a word-
1857 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1858 * Chars that are Not part of a word (stoppers)
1859 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1860 * Chars that are WhiteSpace
1861 * TAB NEWLINE VT FF RETURN SPACE
1862 * DO NOT COUNT NEWLINE AS WHITESPACE
1863 */
1864
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001865static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001866{
1867 int li;
1868
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001869 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001870 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001871 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001872 // initialize the new screen. assume this will be a empty file.
1873 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001874 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001875 for (li = 1; li < ro - 1; li++) {
1876 screen[(li * co) + 0] = '~';
1877 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001878 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001879}
1880
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001881#if ENABLE_FEATURE_VI_SEARCH
Walter Harmsb9ba5802011-06-27 02:59:37 +02001882
1883# if ENABLE_FEATURE_VI_REGEX_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001884
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001885// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001886static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001887{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001888 struct re_pattern_buffer preg;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001889 const char *err;
1890 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001891 int i;
Walter Harmsb9ba5802011-06-27 02:59:37 +02001892 int size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001893
1894 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001895 if (ignorecase)
1896 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED | RE_ICASE;
1897
1898 memset(&preg, 0, sizeof(preg));
1899 err = re_compile_pattern(pat, strlen(pat), &preg);
1900 if (err != NULL) {
1901 status_line_bold("bad search pattern '%s': %s", pat, err);
1902 return p;
1903 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001904
1905 // assume a LIMITED forward search
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001906 q = end - 1;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001907 if (dir == BACK)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001908 q = text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001909 // RANGE could be negative if we are searching backwards
1910 range = q - p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001911 q = p;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001912 size = range;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001913 if (range < 0) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001914 size = -size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001915 q = p - size;
1916 if (q < text)
1917 q = text;
1918 }
1919 // search for the compiled pattern, preg, in p[]
Denys Vlasenko264f3732013-04-21 15:51:41 +02001920 // range < 0: search backward
1921 // range > 0: search forward
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001922 // 0 < start < size
Denys Vlasenko264f3732013-04-21 15:51:41 +02001923 // re_search() < 0: not found or error
1924 // re_search() >= 0: index of found pattern
1925 // struct pattern char int int int struct reg
1926 // re_search(*pattern_buffer, *string, size, start, range, *regs)
1927 i = re_search(&preg, q, size, /*start:*/ 0, range, /*struct re_registers*:*/ NULL);
1928 regfree(&preg);
1929 if (i < 0)
1930 return NULL;
1931 if (dir == FORWARD)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001932 p = p + i;
Denys Vlasenko264f3732013-04-21 15:51:41 +02001933 else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001934 p = p - i;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001935 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001936}
Walter Harmsb9ba5802011-06-27 02:59:37 +02001937
1938# else
1939
1940# if ENABLE_FEATURE_VI_SETOPTS
1941static int mycmp(const char *s1, const char *s2, int len)
1942{
1943 if (ignorecase) {
1944 return strncasecmp(s1, s2, len);
1945 }
1946 return strncmp(s1, s2, len);
1947}
1948# else
1949# define mycmp strncmp
1950# endif
1951
1952static char *char_search(char *p, const char *pat, int dir, int range)
1953{
1954 char *start, *stop;
1955 int len;
1956
1957 len = strlen(pat);
1958 if (dir == FORWARD) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001959 stop = end - 1; // assume range is p..end-1
Walter Harmsb9ba5802011-06-27 02:59:37 +02001960 if (range == LIMITED)
1961 stop = next_line(p); // range is to next line
1962 for (start = p; start < stop; start++) {
1963 if (mycmp(start, pat, len) == 0) {
1964 return start;
1965 }
1966 }
1967 } else if (dir == BACK) {
Denys Vlasenko264f3732013-04-21 15:51:41 +02001968 stop = text; // assume range is text..p
Walter Harmsb9ba5802011-06-27 02:59:37 +02001969 if (range == LIMITED)
1970 stop = prev_line(p); // range is to prev line
1971 for (start = p - len; start >= stop; start--) {
1972 if (mycmp(start, pat, len) == 0) {
1973 return start;
1974 }
1975 }
1976 }
1977 // pattern not found
1978 return NULL;
1979}
1980
1981# endif
1982
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001983#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001984
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001985static char *char_insert(char *p, char c, int undo) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001986{
1987 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001988 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001989 refresh(FALSE); // show the ^
1990 c = get_one_char();
1991 *p = c;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02001992#if ENABLE_FEATURE_VI_UNDO
1993 switch (undo) {
1994 case ALLOW_UNDO:
1995 undo_push(p, 1, UNDO_INS);
1996 break;
1997 case ALLOW_UNDO_CHAIN:
1998 undo_push(p, 1, UNDO_INS_CHAIN);
1999 break;
2000# if ENABLE_FEATURE_VI_UNDO_QUEUE
2001 case ALLOW_UNDO_QUEUED:
2002 undo_push(p, 1, UNDO_INS_QUEUED);
2003 break;
2004# endif
2005 }
2006#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002007 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002008#endif /* ENABLE_FEATURE_VI_UNDO */
2009 p++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002010 } else if (c == 27) { // Is this an ESC?
2011 cmd_mode = 0;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002012 undo_queue_commit();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002013 cmdcnt = 0;
2014 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00002015 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002016 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002017 p--;
2018 }
Paul Foxd13b90b2005-07-18 22:17:25 +00002019 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002020 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002021 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022 p--;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002023 p = text_hole_delete(p, p, ALLOW_UNDO_QUEUED); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002024 }
2025 } else {
2026 // insert a char into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002027 if (c == 13)
2028 c = '\n'; // translate \r to \n
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002029#if ENABLE_FEATURE_VI_UNDO
2030# if ENABLE_FEATURE_VI_UNDO_QUEUE
2031 if (c == '\n')
2032 undo_queue_commit();
2033# endif
2034 switch (undo) {
2035 case ALLOW_UNDO:
2036 undo_push(p, 1, UNDO_INS);
2037 break;
2038 case ALLOW_UNDO_CHAIN:
2039 undo_push(p, 1, UNDO_INS_CHAIN);
2040 break;
2041# if ENABLE_FEATURE_VI_UNDO_QUEUE
2042 case ALLOW_UNDO_QUEUED:
2043 undo_push(p, 1, UNDO_INS_QUEUED);
2044 break;
2045# endif
2046 }
2047#else
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002048 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002049#endif /* ENABLE_FEATURE_VI_UNDO */
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002050 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002051#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002052 if (showmatch && strchr(")]}", c) != NULL) {
2053 showmatching(p - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002054 }
2055 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002056 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002057 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002058 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00002059 len = strspn(q, " \t"); // space or tab
2060 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00002061 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002062 bias = text_hole_make(p, len);
2063 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002064 q += bias;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002065#if ENABLE_FEATURE_VI_UNDO
2066 undo_push(p, len, UNDO_INS);
2067#endif
Denis Vlasenko00d84172008-11-24 07:34:42 +00002068 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00002069 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002070 }
2071 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002072#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002073 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002074 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002075}
2076
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002077// might reallocate text[]! use p += stupid_insert(p, ...),
2078// and be careful to not use pointers into potentially freed text[]!
2079static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002080{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002081 uintptr_t bias;
2082 bias = text_hole_make(p, 1);
2083 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002084 *p = c;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002085 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002086}
2087
Denis Vlasenko33875382008-06-21 20:31:50 +00002088static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002089{
Paul Foxc51fc7b2008-03-06 01:34:23 +00002090 char *save_dot, *p, *q, *t;
2091 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002092
2093 save_dot = dot;
2094 p = q = dot;
2095
2096 if (strchr("cdy><", c)) {
2097 // these cmds operate on whole lines
2098 p = q = begin_line(p);
2099 for (cnt = 1; cnt < cmdcnt; cnt++) {
2100 q = next_line(q);
2101 }
2102 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00002103 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002104 // These cmds operate on char positions
2105 do_cmd(c); // execute movement cmd
2106 q = dot;
2107 } else if (strchr("wW", c)) {
2108 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002109 // if we are at the next word's first char
2110 // step back one char
2111 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00002112 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002113 || (ispunct(dot[-1]) && !ispunct(dot[0]))
2114 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
2115 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002116 if (dot > text && *dot == '\n')
2117 dot--; // stay off NL
2118 q = dot;
2119 } else if (strchr("H-k{", c)) {
2120 // these operate on multi-lines backwards
2121 q = end_line(dot); // find NL
2122 do_cmd(c); // execute movement cmd
2123 dot_begin();
2124 p = dot;
2125 } else if (strchr("L+j}\r\n", c)) {
2126 // these operate on multi-lines forwards
2127 p = begin_line(dot);
2128 do_cmd(c); // execute movement cmd
2129 dot_end(); // find NL
2130 q = dot;
2131 } else {
Denys Vlasenko6830ade2013-01-15 13:58:01 +01002132 // nothing -- this causes any other values of c to
2133 // represent the one-character range under the
2134 // cursor. this is correct for ' ' and 'l', but
2135 // perhaps no others.
2136 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002137 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00002138 if (q < p) {
2139 t = q;
2140 q = p;
2141 p = t;
2142 }
2143
Denis Vlasenko42cc3042008-03-24 02:05:58 +00002144 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00002145 if (q > p && strchr("^0bBh\b\177", c)) q--;
2146
2147 multiline = 0;
2148 for (t = p; t <= q; t++) {
2149 if (*t == '\n') {
2150 multiline = 1;
2151 break;
2152 }
2153 }
2154
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002155 *start = p;
2156 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002157 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002158 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002159}
2160
Denis Vlasenko33875382008-06-21 20:31:50 +00002161static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002162{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002163 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002164 int test, inc;
2165
2166 inc = dir;
2167 c = c0 = p[0];
2168 ci = p[inc];
2169 test = 0;
2170
2171 if (type == S_BEFORE_WS) {
2172 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002173 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002174 }
2175 if (type == S_TO_WS) {
2176 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002177 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002178 }
2179 if (type == S_OVER_WS) {
2180 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002181 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002182 }
2183 if (type == S_END_PUNCT) {
2184 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002185 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002186 }
2187 if (type == S_END_ALNUM) {
2188 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02002189 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002190 }
2191 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002192 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002193}
2194
Denis Vlasenko33875382008-06-21 20:31:50 +00002195static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002196{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002197 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002198
2199 while (st_test(p, type, dir, &c)) {
2200 // make sure we limit search to correct number of lines
2201 if (c == '\n' && --linecnt < 1)
2202 break;
2203 if (dir >= 0 && p >= end - 1)
2204 break;
2205 if (dir < 0 && p <= text)
2206 break;
2207 p += dir; // move to next char
2208 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002209 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002210}
2211
2212// find matching char of pair () [] {}
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002213// will crash if c is not one of these
Denis Vlasenko33875382008-06-21 20:31:50 +00002214static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002215{
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002216 const char *braces = "()[]{}";
2217 char match;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002218 int dir, level;
2219
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002220 dir = strchr(braces, c) - braces;
2221 dir ^= 1;
2222 match = braces[dir];
2223 dir = ((dir & 1) << 1) - 1; /* 1 for ([{, -1 for )\} */
2224
2225 // look for match, count levels of pairs (( ))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002226 level = 1;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002227 for (;;) {
2228 p += dir;
2229 if (p < text || p >= end)
2230 return NULL;
2231 if (*p == c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002232 level++; // increase pair levels
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002233 if (*p == match) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002234 level--; // reduce pair level
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002235 if (level == 0)
2236 return p; // found matching pair
2237 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002238 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002239}
2240
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002241#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002242// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00002243static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002244{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002245 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002246
2247 // we found half of a pair
2248 q = find_pair(p, *p); // get loc of matching char
2249 if (q == NULL) {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002250 indicate_error(); // no matching char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002251 } else {
2252 // "q" now points to matching pair
2253 save_dot = dot; // remember where we are
2254 dot = q; // go to new loc
2255 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002256 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002257 dot = save_dot; // go back to old loc
2258 refresh(FALSE);
2259 }
2260}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002261#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002262
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002263#if ENABLE_FEATURE_VI_UNDO
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002264static void flush_undo_data(void)
2265{
2266 struct undo_object *undo_entry;
2267
2268 while (undo_stack_tail) {
2269 undo_entry = undo_stack_tail;
2270 undo_stack_tail = undo_entry->prev;
2271 free(undo_entry);
2272 }
2273}
2274
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002275// Undo functions and hooks added by Jody Bruchon (jody@jodybruchon.com)
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002276static void undo_push(char *src, unsigned int length, uint8_t u_type) // Add to the undo stack
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002277{
Denys Vlasenko2c512022014-04-03 01:45:05 +02002278 struct undo_object *undo_entry;
2279
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002280 // "u_type" values
2281 // UNDO_INS: insertion, undo will remove from buffer
2282 // UNDO_DEL: deleted text, undo will restore to buffer
2283 // UNDO_{INS,DEL}_CHAIN: Same as above but also calls undo_pop() when complete
2284 // The CHAIN operations are for handling multiple operations that the user
2285 // performs with a single action, i.e. REPLACE mode or find-and-replace commands
2286 // UNDO_{INS,DEL}_QUEUED: If queuing feature is enabled, allow use of the queue
2287 // for the INS/DEL operation. The raw values should be equal to the values of
2288 // UNDO_{INS,DEL} ORed with UNDO_QUEUED_FLAG
2289
2290#if ENABLE_FEATURE_VI_UNDO_QUEUE
2291 // This undo queuing functionality groups multiple character typing or backspaces
2292 // into a single large undo object. This greatly reduces calls to malloc() for
2293 // single-character operations while typing and has the side benefit of letting
2294 // an undo operation remove chunks of text rather than a single character.
2295 switch (u_type) {
2296 case UNDO_EMPTY: // Just in case this ever happens...
2297 return;
2298 case UNDO_DEL_QUEUED:
2299 if (length != 1)
2300 return; // Only queue single characters
2301 switch (undo_queue_state) {
2302 case UNDO_EMPTY:
2303 undo_queue_state = UNDO_DEL;
2304 case UNDO_DEL:
2305 undo_queue_spos = src;
2306 undo_q++;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002307 undo_queue[CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q] = *src;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002308 // If queue is full, dump it into an object
2309 if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX)
2310 undo_queue_commit();
2311 return;
2312 case UNDO_INS:
2313 // Switch from storing inserted text to deleted text
2314 undo_queue_commit();
2315 undo_push(src, length, UNDO_DEL_QUEUED);
2316 return;
2317 }
2318 break;
2319 case UNDO_INS_QUEUED:
2320 if (length != 1)
2321 return;
2322 switch (undo_queue_state) {
2323 case UNDO_EMPTY:
2324 undo_queue_state = UNDO_INS;
2325 undo_queue_spos = src;
2326 case UNDO_INS:
2327 undo_q++; // Don't need to save any data for insertions
2328 if (undo_q == CONFIG_FEATURE_VI_UNDO_QUEUE_MAX)
2329 undo_queue_commit();
2330 return;
2331 case UNDO_DEL:
2332 // Switch from storing deleted text to inserted text
2333 undo_queue_commit();
2334 undo_push(src, length, UNDO_INS_QUEUED);
2335 return;
2336 }
2337 break;
2338 }
2339#else
2340 // If undo queuing is disabled, ignore the queuing flag entirely
2341 u_type = u_type & ~UNDO_QUEUED_FLAG;
2342#endif
2343
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002344 // Allocate a new undo object
2345 if (u_type == UNDO_DEL || u_type == UNDO_DEL_CHAIN) {
2346 // For UNDO_DEL objects, save deleted text
2347 if ((src + length) == end)
2348 length--;
2349 // If this deletion empties text[], strip the newline. When the buffer becomes
2350 // zero-length, a newline is added back, which requires this to compensate.
2351 undo_entry = xzalloc(offsetof(struct undo_object, undo_text) + length);
2352 memcpy(undo_entry->undo_text, src, length);
2353 } else {
2354 undo_entry = xzalloc(sizeof(*undo_entry));
2355 }
2356 undo_entry->length = length;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002357#if ENABLE_FEATURE_VI_UNDO_QUEUE
2358 if ((u_type & UNDO_USE_SPOS) != 0) {
Denys Vlasenko2c512022014-04-03 01:45:05 +02002359 undo_entry->start = undo_queue_spos - text; // use start position from queue
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002360 } else {
Denys Vlasenko2c512022014-04-03 01:45:05 +02002361 undo_entry->start = src - text; // use offset from start of text buffer
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002362 }
2363 u_type = (u_type & ~UNDO_USE_SPOS);
2364#else
Denys Vlasenko2c512022014-04-03 01:45:05 +02002365 undo_entry->start = src - text;
2366#endif
Denys Vlasenko2c512022014-04-03 01:45:05 +02002367 undo_entry->u_type = u_type;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002368
2369 // Push it on undo stack
2370 undo_entry->prev = undo_stack_tail;
2371 undo_stack_tail = undo_entry;
2372 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002373}
2374
2375static void undo_pop(void) // Undo the last operation
2376{
Denys Vlasenko2c512022014-04-03 01:45:05 +02002377 int repeat;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002378 char *u_start, *u_end;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002379 struct undo_object *undo_entry;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002380
2381 // Commit pending undo queue before popping (should be unnecessary)
2382 undo_queue_commit();
2383
Denys Vlasenko2c512022014-04-03 01:45:05 +02002384 undo_entry = undo_stack_tail;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002385 // Check for an empty undo stack
Denys Vlasenko2c512022014-04-03 01:45:05 +02002386 if (!undo_entry) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002387 status_line("Already at oldest change");
2388 return;
2389 }
2390
Denys Vlasenko2c512022014-04-03 01:45:05 +02002391 switch (undo_entry->u_type) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002392 case UNDO_DEL:
2393 case UNDO_DEL_CHAIN:
2394 // make hole and put in text that was deleted; deallocate text
Denys Vlasenko2c512022014-04-03 01:45:05 +02002395 u_start = text + undo_entry->start;
2396 text_hole_make(u_start, undo_entry->length);
2397 memcpy(u_start, undo_entry->undo_text, undo_entry->length);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002398 status_line("Undo [%d] %s %d chars at position %d",
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002399 modified_count, "restored",
Denys Vlasenko2c512022014-04-03 01:45:05 +02002400 undo_entry->length, undo_entry->start
2401 );
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002402 break;
2403 case UNDO_INS:
2404 case UNDO_INS_CHAIN:
2405 // delete what was inserted
Denys Vlasenko2c512022014-04-03 01:45:05 +02002406 u_start = undo_entry->start + text;
2407 u_end = u_start - 1 + undo_entry->length;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002408 text_hole_delete(u_start, u_end, NO_UNDO);
2409 status_line("Undo [%d] %s %d chars at position %d",
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002410 modified_count, "deleted",
Denys Vlasenko2c512022014-04-03 01:45:05 +02002411 undo_entry->length, undo_entry->start
2412 );
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002413 break;
2414 }
Denys Vlasenko2c512022014-04-03 01:45:05 +02002415 repeat = 0;
2416 switch (undo_entry->u_type) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002417 // If this is the end of a chain, lower modification count and refresh display
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002418 case UNDO_DEL:
2419 case UNDO_INS:
Denys Vlasenko2c512022014-04-03 01:45:05 +02002420 dot = (text + undo_entry->start);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002421 refresh(FALSE);
2422 break;
2423 case UNDO_DEL_CHAIN:
2424 case UNDO_INS_CHAIN:
2425 repeat = 1;
2426 break;
2427 }
2428 // Deallocate the undo object we just processed
Denys Vlasenko2c512022014-04-03 01:45:05 +02002429 undo_stack_tail = undo_entry->prev;
2430 free(undo_entry);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002431 modified_count--;
Denys Vlasenko2c512022014-04-03 01:45:05 +02002432 // For chained operations, continue popping all the way down the chain.
2433 if (repeat) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002434 undo_pop(); // Follow the undo chain if one exists
2435 }
2436}
2437
2438#if ENABLE_FEATURE_VI_UNDO_QUEUE
2439static void undo_queue_commit(void) // Flush any queued objects to the undo stack
2440{
2441 // Pushes the queue object onto the undo stack
2442 if (undo_q > 0) {
2443 // Deleted character undo events grow from the end
Denys Vlasenko2c512022014-04-03 01:45:05 +02002444 undo_push(undo_queue + CONFIG_FEATURE_VI_UNDO_QUEUE_MAX - undo_q,
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002445 undo_q,
2446 (undo_queue_state | UNDO_USE_SPOS)
2447 );
2448 undo_queue_state = UNDO_EMPTY;
2449 undo_q = 0;
2450 }
2451}
2452#endif
2453
2454#endif /* ENABLE_FEATURE_VI_UNDO */
2455
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002456// open a hole in text[]
2457// might reallocate text[]! use p += text_hole_make(p, ...),
2458// and be careful to not use pointers into potentially freed text[]!
2459static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002460{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002461 uintptr_t bias = 0;
2462
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002463 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002464 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002465 end += size; // adjust the new END
2466 if (end >= (text + text_size)) {
2467 char *new_text;
2468 text_size += end - (text + text_size) + 10240;
2469 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002470 bias = (new_text - text);
2471 screenbegin += bias;
2472 dot += bias;
2473 end += bias;
2474 p += bias;
Denys Vlasenko800a9a02012-01-31 14:10:26 +01002475#if ENABLE_FEATURE_VI_YANKMARK
2476 {
2477 int i;
2478 for (i = 0; i < ARRAY_SIZE(mark); i++)
2479 if (mark[i])
2480 mark[i] += bias;
2481 }
2482#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +00002483 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002484 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00002485 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002486 memset(p, ' ', size); // clear new hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002487 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002488}
2489
2490// close a hole in text[]
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002491// "undo" value indicates if this operation should be undo-able
2492static char *text_hole_delete(char *p, char *q, int undo) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002493{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002494 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002495 int cnt, hole_size;
2496
2497 // move forwards, from beginning
2498 // assume p <= q
2499 src = q + 1;
2500 dest = p;
2501 if (q < p) { // they are backward- swap them
2502 src = p + 1;
2503 dest = q;
2504 }
2505 hole_size = q - p + 1;
2506 cnt = end - src;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002507#if ENABLE_FEATURE_VI_UNDO
2508 switch (undo) {
2509 case NO_UNDO:
2510 break;
2511 case ALLOW_UNDO:
2512 undo_push(p, hole_size, UNDO_DEL);
2513 break;
2514 case ALLOW_UNDO_CHAIN:
2515 undo_push(p, hole_size, UNDO_DEL_CHAIN);
2516 break;
2517# if ENABLE_FEATURE_VI_UNDO_QUEUE
2518 case ALLOW_UNDO_QUEUED:
2519 undo_push(p, hole_size, UNDO_DEL_QUEUED);
2520 break;
2521# endif
2522 }
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002523 modified_count--;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002524#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002525 if (src < text || src > end)
2526 goto thd0;
2527 if (dest < text || dest >= end)
2528 goto thd0;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002529 modified_count++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002530 if (src >= end)
2531 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00002532 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002533 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002534 end = end - hole_size; // adjust the new END
2535 if (dest >= end)
2536 dest = end - 1; // make sure dest in below end-1
2537 if (end <= text)
2538 dest = end = text; // keep pointers valid
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002539 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002540 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002541}
2542
2543// copy text into register, then delete text.
2544// if dist <= 0, do not include, or go past, a NewLine
2545//
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002546static char *yank_delete(char *start, char *stop, int dist, int yf, int undo)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002547{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002548 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002549
2550 // make sure start <= stop
2551 if (start > stop) {
2552 // they are backwards, reverse them
2553 p = start;
2554 start = stop;
2555 stop = p;
2556 }
2557 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00002558 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002559 p = start;
2560 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002561 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002562 // dont go past a NewLine
2563 for (; p + 1 <= stop; p++) {
2564 if (p[1] == '\n') {
2565 stop = p; // "stop" just before NewLine
2566 break;
2567 }
2568 }
2569 }
2570 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002571#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002572 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002573#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002574 if (yf == YANKDEL) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002575 p = text_hole_delete(start, stop, undo);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002576 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002577 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002578}
2579
2580static void show_help(void)
2581{
2582 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002583#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002584 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002585#endif
2586#if ENABLE_FEATURE_VI_DOT_CMD
Denys Vlasenko605f2642012-06-11 01:53:33 +02002587 "\n\tLast command repeat with ."
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002588#endif
2589#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00002590 "\n\tLine marking with 'x"
2591 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002592#endif
2593#if ENABLE_FEATURE_VI_READONLY
Walter Harmsb9ba5802011-06-27 02:59:37 +02002594 //not implemented: "\n\tReadonly if vi is called as \"view\""
2595 //redundant: usage text says this too: "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002596#endif
2597#if ENABLE_FEATURE_VI_SET
Denys Vlasenko605f2642012-06-11 01:53:33 +02002598 "\n\tSome colon mode commands with :"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002599#endif
2600#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002601 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002602#endif
2603#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002604 "\n\tSignal catching- ^C"
2605 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002606#endif
2607#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002608 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002609#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002610 );
2611}
2612
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002613#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002614static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002615{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002616 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002617 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002618 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002619 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002620 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002621 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002622 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002623 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002624 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002625}
2626
2627static void end_cmd_q(void)
2628{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002629#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002630 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002631#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002632 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002633}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002634#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002635
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002636#if ENABLE_FEATURE_VI_YANKMARK \
2637 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2638 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002639// might reallocate text[]! use p += string_insert(p, ...),
2640// and be careful to not use pointers into potentially freed text[]!
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002641static uintptr_t string_insert(char *p, const char *s, int undo) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002642{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002643 uintptr_t bias;
2644 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002645
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002646 i = strlen(s);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002647#if ENABLE_FEATURE_VI_UNDO
2648 switch (undo) {
2649 case ALLOW_UNDO:
2650 undo_push(p, i, UNDO_INS);
2651 break;
2652 case ALLOW_UNDO_CHAIN:
2653 undo_push(p, i, UNDO_INS_CHAIN);
2654 break;
2655 }
2656#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002657 bias = text_hole_make(p, i);
2658 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002659 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002660#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002661 {
2662 int cnt;
2663 for (cnt = 0; *s != '\0'; s++) {
2664 if (*s == '\n')
2665 cnt++;
2666 }
2667 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2668 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002669#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002670 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002671}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002672#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002673
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002674#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002675static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002676{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002677 int cnt = q - p;
2678 if (cnt < 0) { // they are backwards- reverse them
2679 p = q;
2680 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002681 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002682 free(reg[dest]); // if already a yank register, free it
2683 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002684 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002685}
2686
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002687static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002688{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002689 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002690
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002691 c = 'D'; // default to D-reg
2692 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002693 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002694 if (YDreg == 26)
2695 c = 'D';
2696 if (YDreg == 27)
2697 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002698 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002699}
2700
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002701static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002702{
2703 // A context is defined to be "modifying text"
2704 // Any modifying command establishes a new context.
2705
2706 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002707 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002708 // we are trying to modify text[]- make this the current context
2709 mark[27] = mark[26]; // move cur to prev
2710 mark[26] = dot; // move local to cur
2711 context_start = prev_line(prev_line(dot));
2712 context_end = next_line(next_line(dot));
2713 //loiter= start_loiter= now;
2714 }
2715 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002716}
2717
Denis Vlasenkof882f082007-12-23 02:36:51 +00002718static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002719{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002720 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002721
2722 // the current context is in mark[26]
2723 // the previous context is in mark[27]
2724 // only swap context if other context is valid
2725 if (text <= mark[27] && mark[27] <= end - 1) {
2726 tmp = mark[27];
2727 mark[27] = mark[26];
2728 mark[26] = tmp;
2729 p = mark[26]; // where we are going- previous context
2730 context_start = prev_line(prev_line(prev_line(p)));
2731 context_end = next_line(next_line(next_line(p)));
2732 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002733 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002734}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002735#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002736
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002737//----- Set terminal attributes --------------------------------
2738static void rawmode(void)
2739{
2740 tcgetattr(0, &term_orig);
2741 term_vi = term_orig;
Denys Vlasenko6e8861b2012-01-15 23:00:13 +01002742 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG on - allow intr's
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002743 term_vi.c_iflag &= (~IXON & ~ICRNL);
2744 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002745 term_vi.c_cc[VMIN] = 1;
2746 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002747 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002748 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002749}
2750
2751static void cookmode(void)
2752{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002753 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002754 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002755}
2756
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002757#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002758//----- Come here when we get a window resize signal ---------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002759static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002760{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002761 int save_errno = errno;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002762 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002763 signal(SIGWINCH, winch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002764 query_screen_dimensions();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002765 new_screen(rows, columns); // get memory for virtual screen
2766 redraw(TRUE); // re-draw the screen
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002767 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002768}
2769
2770//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002771static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002772{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002773 int save_errno = errno;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002774 rawmode(); // terminal to "raw"
2775 last_status_cksum = 0; // force status update
2776 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002777
2778 signal(SIGTSTP, suspend_sig);
2779 signal(SIGCONT, SIG_DFL);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002780 //kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
2781 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002782}
2783
2784//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002785static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002786{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002787 int save_errno = errno;
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002788 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002789 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002790
2791 signal(SIGCONT, cont_sig);
2792 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002793 kill(my_pid, SIGTSTP);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002794 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002795}
2796
2797//----- Come here when we get a signal ---------------------------
2798static void catch_sig(int sig)
2799{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002800 signal(SIGINT, catch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002801 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002802}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002803#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002804
Denys Vlasenko606291b2009-09-23 23:15:43 +02002805static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002806{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002807 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002808
Denys Vlasenko05399fc2014-09-15 17:06:10 +02002809 if (hund != 0)
2810 fflush_all();
2811
Denys Vlasenko606291b2009-09-23 23:15:43 +02002812 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002813 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002814 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002815}
2816
2817//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002818static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002819{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002820 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002821
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002822 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002823 c = read_key(STDIN_FILENO, readbuffer, /*timeout off:*/ -2);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002824 if (c == -1) { // EOF/error
2825 go_bottom_and_clear_to_eol();
2826 cookmode(); // terminal to "cooked"
2827 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002828 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002829 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002830}
2831
2832//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002833static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002834{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002835 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002836
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002837#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002838 if (!adding2q) {
2839 // we are not adding to the q.
2840 // but, we may be reading from a q
2841 if (ioq == 0) {
2842 // there is no current q, read from STDIN
2843 c = readit(); // get the users input
2844 } else {
2845 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002846 // careful with correct sign expansion!
2847 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002848 if (c == '\0') {
2849 // the end of the q, read from STDIN
2850 free(ioq_start);
2851 ioq_start = ioq = 0;
2852 c = readit(); // get the users input
2853 }
2854 }
2855 } else {
2856 // adding STDIN chars to q
2857 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002858 if (lmc_len >= MAX_INPUT_LEN - 1) {
2859 status_line_bold("last_modifying_cmd overrun");
2860 } else {
2861 // add new char to q
2862 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002863 }
2864 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002865#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002866 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002867#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002868 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002869}
2870
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002871// Get input line (uses "status line" area)
2872static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002873{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002874 // char [MAX_INPUT_LEN]
2875#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002876
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002877 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002878 int i;
2879
2880 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002881 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002882 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002883 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002884
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002885 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002886 while (i < MAX_INPUT_LEN) {
2887 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002888 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002889 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002890 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002891 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002892 buf[--i] = '\0';
2893 write1("\b \b"); // erase char on screen
2894 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002895 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002896 } else if (c > 0 && c < 256) { // exclude Unicode
2897 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002898 buf[i] = c;
2899 buf[++i] = '\0';
2900 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002901 }
2902 }
2903 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002904 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002905#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002906}
2907
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002908// might reallocate text[]!
Ron Yorstone5213ce2014-11-30 20:39:25 +00002909static int file_insert(const char *fn, char *p, int initial)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002910{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002911 int cnt = -1;
2912 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002913 struct stat statbuf;
2914
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002915 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002916 status_line_bold("Trying to insert file outside of memory");
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002917 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002918 }
2919
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002920 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002921 if (fd < 0) {
Ron Yorstone5213ce2014-11-30 20:39:25 +00002922 if (!initial)
2923 status_line_bold_errno(fn);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002924 return cnt;
2925 }
2926
2927 /* Validate file */
2928 if (fstat(fd, &statbuf) < 0) {
2929 status_line_bold_errno(fn);
2930 goto fi;
2931 }
2932 if (!S_ISREG(statbuf.st_mode)) {
2933 status_line_bold("'%s' is not a regular file", fn);
2934 goto fi;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002935 }
Denys Vlasenko778794d2013-01-22 10:13:52 +01002936 size = (statbuf.st_size < INT_MAX ? (int)statbuf.st_size : INT_MAX);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002937 p += text_hole_make(p, size);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002938 cnt = full_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002939 if (cnt < 0) {
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01002940 status_line_bold_errno(fn);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02002941 p = text_hole_delete(p, p + size - 1, NO_UNDO); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002942 } else if (cnt < size) {
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002943 // There was a partial read, shrink unused space
2944 p = text_hole_delete(p + cnt, p + size - 1, NO_UNDO);
Denys Vlasenko778794d2013-01-22 10:13:52 +01002945 status_line_bold("can't read '%s'", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002946 }
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002947 fi:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002948 close(fd);
Denys Vlasenko32afd3a2014-04-05 22:57:46 +02002949
Denis Vlasenko856be772007-08-17 08:29:48 +00002950#if ENABLE_FEATURE_VI_READONLY
Ron Yorstone5213ce2014-11-30 20:39:25 +00002951 if (initial
Denis Vlasenko856be772007-08-17 08:29:48 +00002952 && ((access(fn, W_OK) < 0) ||
2953 /* root will always have access()
2954 * so we check fileperms too */
2955 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2956 )
2957 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002958 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002959 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002960#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002961 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002962}
2963
Denis Vlasenko33875382008-06-21 20:31:50 +00002964static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002965{
2966 int fd, cnt, charcnt;
2967
2968 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002969 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002970 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002971 }
Denis Vlasenko8abae882008-05-03 11:35:59 +00002972 /* By popular request we do not open file with O_TRUNC,
2973 * but instead ftruncate() it _after_ successful write.
2974 * Might reduce amount of data lost on power fail etc.
2975 */
2976 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002977 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002978 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002979 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002980 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002981 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002982 if (charcnt == cnt) {
2983 // good write
Denys Vlasenkoe7430862014-04-03 12:47:48 +02002984 //modified_count = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002985 } else {
2986 charcnt = 0;
2987 }
2988 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002989 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002990}
2991
2992//----- Terminal Drawing ---------------------------------------
2993// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002994// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002995// screen coordinates
2996// 0,0 ... 0,79
2997// 1,0 ... 1,79
2998// . ... .
2999// . ... .
3000// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003001// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003002
3003//----- Move the cursor to row x col (count from 0, not 1) -------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003004static void place_cursor(int row, int col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003005{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003006 char cm1[sizeof(ESC_SET_CURSOR_POS) + sizeof(int)*3 * 2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003007
3008 if (row < 0) row = 0;
3009 if (row >= rows) row = rows - 1;
3010 if (col < 0) col = 0;
3011 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003012
Denys Vlasenko04b52892012-06-11 13:51:38 +02003013 sprintf(cm1, ESC_SET_CURSOR_POS, row + 1, col + 1);
3014 write1(cm1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003015}
3016
3017//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003018static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003019{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003020 write1(ESC_CLEAR2EOL);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003021}
3022
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003023static void go_bottom_and_clear_to_eol(void)
3024{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003025 place_cursor(rows - 1, 0);
3026 clear_to_eol();
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003027}
3028
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003029//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003030static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003031{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003032 write1(ESC_CLEAR2EOS);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003033}
3034
3035//----- Start standout mode ------------------------------------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003036static void standout_start(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003037{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003038 write1(ESC_BOLD_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003039}
3040
3041//----- End standout mode --------------------------------------
Denys Vlasenko04b52892012-06-11 13:51:38 +02003042static void standout_end(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003043{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003044 write1(ESC_NORM_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003045}
3046
3047//----- Flash the screen --------------------------------------
3048static void flash(int h)
3049{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003050 standout_start();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003051 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003052 mysleep(h);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003053 standout_end();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003054 redraw(TRUE);
3055}
3056
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003057static void indicate_error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003058{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003059#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003060 if (crashme > 0)
3061 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003062#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003063 if (!err_method) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003064 write1(ESC_BELL);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003065 } else {
3066 flash(10);
3067 }
3068}
3069
3070//----- Screen[] Routines --------------------------------------
3071//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00003072static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003073{
3074 memset(screen, ' ', screensize); // clear new screen
3075}
3076
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003077static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00003078{
3079 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003080 char *e = buf + count;
3081
Paul Fox8552aec2005-09-16 12:20:05 +00003082 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003083 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00003084 return sum;
3085}
3086
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003087//----- Draw the status line at bottom of the screen -------------
3088static void show_status_line(void)
3089{
Paul Foxc3504852005-09-16 12:48:18 +00003090 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003091
Paul Fox8552aec2005-09-16 12:20:05 +00003092 // either we already have an error or status message, or we
3093 // create one.
3094 if (!have_status_msg) {
3095 cnt = format_edit_status();
3096 cksum = bufsum(status_buffer, cnt);
3097 }
3098 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003099 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00003100 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003101 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00003102 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003103 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00003104 (columns - 1) ) {
3105 have_status_msg = 0;
3106 Hit_Return();
3107 }
3108 have_status_msg = 0;
3109 }
Denys Vlasenko04b52892012-06-11 13:51:38 +02003110 place_cursor(crow, ccol); // put cursor back in correct place
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003111 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003112 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003113}
3114
3115//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00003116// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003117static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003118{
3119 va_list args;
3120
3121 va_start(args, format);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003122 strcpy(status_buffer, ESC_BOLD_TEXT);
3123 vsprintf(status_buffer + sizeof(ESC_BOLD_TEXT)-1, format, args);
3124 strcat(status_buffer, ESC_NORM_TEXT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003125 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00003126
Denys Vlasenko04b52892012-06-11 13:51:38 +02003127 have_status_msg = 1 + sizeof(ESC_BOLD_TEXT) + sizeof(ESC_NORM_TEXT) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003128}
3129
Denys Vlasenko9e7c0022013-03-15 02:17:29 +01003130static void status_line_bold_errno(const char *fn)
3131{
3132 status_line_bold("'%s' %s", fn, strerror(errno));
3133}
3134
Paul Fox8552aec2005-09-16 12:20:05 +00003135// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003136static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003137{
3138 va_list args;
3139
3140 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003141 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003142 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00003143
3144 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003145}
3146
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003147// copy s to buf, convert unprintable
3148static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003149{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003150 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003151 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003152
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003153 buf[0] = '\0';
3154 if (!s[0])
3155 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003156
3157 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003158 for (; *s; s++) {
3159 int c_is_no_print;
3160
3161 c = *s;
3162 c_is_no_print = (c & 0x80) && !Isprint(c);
3163 if (c_is_no_print) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003164 strcpy(d, ESC_NORM_TEXT);
3165 d += sizeof(ESC_NORM_TEXT)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003166 c = '.';
3167 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003168 if (c < ' ' || c == 0x7f) {
3169 *d++ = '^';
3170 c |= '@'; /* 0x40 */
3171 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003172 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003173 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003174 *d++ = c;
3175 *d = '\0';
3176 if (c_is_no_print) {
Denys Vlasenko04b52892012-06-11 13:51:38 +02003177 strcpy(d, ESC_BOLD_TEXT);
3178 d += sizeof(ESC_BOLD_TEXT)-1;
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003179 }
3180 if (*s == '\n') {
3181 *d++ = '$';
3182 *d = '\0';
3183 }
3184 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003185 break;
3186 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003187}
3188
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003189static void not_implemented(const char *s)
3190{
3191 char buf[MAX_INPUT_LEN];
3192
3193 print_literal(buf, s);
3194 status_line_bold("\'%s\' is not implemented", buf);
3195}
3196
3197// show file status on status line
3198static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003199{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00003200 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00003201
3202#define tot format_edit_status__tot
3203
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003204 int cur, percent, ret, trunc_at;
3205
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003206 // modified_count is now a counter rather than a flag. this
Paul Fox8552aec2005-09-16 12:20:05 +00003207 // helps reduce the amount of line counting we need to do.
3208 // (this will cause a mis-reporting of modified status
3209 // once every MAXINT editing operations.)
3210
3211 // it would be nice to do a similar optimization here -- if
3212 // we haven't done a motion that could have changed which line
3213 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003214 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003215
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003216 // count_lines() is expensive.
3217 // Call it only if something was changed since last time
3218 // we were here:
3219 if (modified_count != last_modified_count) {
Paul Fox8552aec2005-09-16 12:20:05 +00003220 tot = cur + count_lines(dot, end - 1) - 1;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003221 last_modified_count = modified_count;
Paul Fox8552aec2005-09-16 12:20:05 +00003222 }
3223
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003224 // current line percent
3225 // ------------- ~~ ----------
3226 // total lines 100
3227 if (tot > 0) {
3228 percent = (100 * cur) / tot;
3229 } else {
3230 cur = tot = 0;
3231 percent = 100;
3232 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00003233
Paul Fox8552aec2005-09-16 12:20:05 +00003234 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
3235 columns : STATUS_BUFFER_LEN-1;
3236
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003237 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003238#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00003239 "%c %s%s%s %d/%d %d%%",
3240#else
3241 "%c %s%s %d/%d %d%%",
3242#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003243 cmd_mode_indicator[cmd_mode & 3],
3244 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003245#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003246 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00003247#endif
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003248 (modified_count ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00003249 cur, tot, percent);
3250
3251 if (ret >= 0 && ret < trunc_at)
3252 return ret; /* it all fit */
3253
3254 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00003255#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003256}
3257
3258//----- Force refresh of all Lines -----------------------------
3259static void redraw(int full_screen)
3260{
Denys Vlasenko04b52892012-06-11 13:51:38 +02003261 place_cursor(0, 0);
3262 clear_to_eos();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003263 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003264 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003265 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00003266 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003267}
3268
3269//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00003270static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003271{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003272 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003273 int co;
3274 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003275 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003276
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003277 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003278 co = 0;
3279 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003280 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003281 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003282 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003283 if (c == '\n')
3284 break;
3285 if ((c & 0x80) && !Isprint(c)) {
3286 c = '.';
3287 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003288 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003289 if (c == '\t') {
3290 c = ' ';
3291 // co % 8 != 7
3292 while ((co % tabstop) != (tabstop - 1)) {
3293 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003294 }
3295 } else {
3296 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003297 if (c == 0x7f)
3298 c = '?';
3299 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003300 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003301 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003302 }
3303 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003304 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003305 // discard scrolled-off-to-the-left portion,
3306 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003307 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003308 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003309 co -= tabstop;
3310 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003311 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003312 if (src >= end)
3313 break;
3314 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003315 // check "short line, gigantic offset" case
3316 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00003317 ofs = co;
3318 // discard last scrolled off part
3319 co -= ofs;
3320 dest += ofs;
3321 // fill the rest with spaces
3322 if (co < columns)
3323 memset(&dest[co], ' ', columns - co);
3324 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003325}
3326
3327//----- Refresh the changed screen lines -----------------------
3328// Copy the source line from text[] into the buffer and note
3329// if the current screenline is different from the new buffer.
3330// If they differ then that line needs redrawing on the terminal.
3331//
3332static void refresh(int full_screen)
3333{
Denis Vlasenkob1759462008-06-20 20:20:54 +00003334#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003335
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003336 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003337 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003338
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +02003339 if (ENABLE_FEATURE_VI_WIN_RESIZE IF_FEATURE_VI_ASK_TERMINAL(&& !G.get_rowcol_error) ) {
Denis Vlasenko55995022008-05-18 22:28:26 +00003340 unsigned c = columns, r = rows;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07003341 query_screen_dimensions();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003342 full_screen |= (c - columns) | (r - rows);
3343 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003344 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
3345 tp = screenbegin; // index into text[] of top line
3346
3347 // compare text[] to screen[] and mark screen[] lines that need updating
3348 for (li = 0; li < rows - 1; li++) {
3349 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00003350 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003351 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00003352 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003353
3354 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00003355 if (tp < end) {
3356 char *t = memchr(tp, '\n', end - tp);
3357 if (!t) t = end - 1;
3358 tp = t + 1;
3359 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003360
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003361 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003362 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003363 cs = 0;
3364 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003365 sp = &screen[li * columns]; // start of screen line
3366 if (full_screen) {
3367 // force re-draw of every single column from 0 - columns-1
3368 goto re0;
3369 }
3370 // compare newly formatted buffer with virtual screen
3371 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003372 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003373 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003374 changed = TRUE; // mark for redraw
3375 break;
3376 }
3377 }
3378
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003379 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003380 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003381 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003382 changed = TRUE; // mark for redraw
3383 break;
3384 }
3385 }
3386 // now, cs is index of first diff, and ce is index of last diff
3387
3388 // if horz offset has changed, force a redraw
3389 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003390 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003391 changed = TRUE;
3392 }
3393
3394 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003395 if (cs < 0) cs = 0;
3396 if (ce > columns - 1) ce = columns - 1;
3397 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003398 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003399 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003400 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003401 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Denys Vlasenko04b52892012-06-11 13:51:38 +02003402 place_cursor(li, cs);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003403 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003404 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003405 }
3406 }
3407
Denys Vlasenko04b52892012-06-11 13:51:38 +02003408 place_cursor(crow, ccol);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003409
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003410 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003411#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00003412}
3413
Eric Andersen3f980402001-04-04 17:31:15 +00003414//---------------------------------------------------------------------
3415//----- the Ascii Chart -----------------------------------------------
3416//
3417// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
3418// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
3419// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
3420// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
3421// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
3422// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
3423// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
3424// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
3425// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
3426// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
3427// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
3428// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
3429// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
3430// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
3431// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
3432// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
3433//---------------------------------------------------------------------
3434
3435//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003436static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00003437{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003438 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003439 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003440 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00003441 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003442 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003443
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00003444// c1 = c; // quiet the compiler
3445// cnt = yf = 0; // quiet the compiler
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003446// p = q = save_dot = buf; // quiet the compiler
3447 memset(buf, '\0', sizeof(buf));
Eric Andersenbff7a602001-11-17 07:15:43 +00003448
Paul Fox8552aec2005-09-16 12:20:05 +00003449 show_status_line();
3450
Eric Andersenbff7a602001-11-17 07:15:43 +00003451 /* if this is a cursor key, skip these checks */
3452 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003453 case KEYCODE_UP:
3454 case KEYCODE_DOWN:
3455 case KEYCODE_LEFT:
3456 case KEYCODE_RIGHT:
3457 case KEYCODE_HOME:
3458 case KEYCODE_END:
3459 case KEYCODE_PAGEUP:
3460 case KEYCODE_PAGEDOWN:
3461 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00003462 goto key_cmd_mode;
3463 }
3464
Eric Andersen3f980402001-04-04 17:31:15 +00003465 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003466 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003467 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003468 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00003469 // we are 'R'eplacing the current *dot with new char
3470 if (*dot == '\n') {
3471 // don't Replace past E-o-l
3472 cmd_mode = 1; // convert to insert
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003473 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00003474 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003475 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003476 if (c != 27)
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003477 dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char
3478 dot = char_insert(dot, c, ALLOW_UNDO_CHAIN); // insert new char
Eric Andersen3f980402001-04-04 17:31:15 +00003479 }
3480 goto dc1;
3481 }
3482 }
3483 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003484 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003485 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00003486 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003487 if (1 <= c || Isprint(c)) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003488 dot = char_insert(dot, c, ALLOW_UNDO_QUEUED);
Eric Andersen3f980402001-04-04 17:31:15 +00003489 }
3490 goto dc1;
3491 }
3492
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003493 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003494 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003495 //case 0x01: // soh
3496 //case 0x09: // ht
3497 //case 0x0b: // vt
3498 //case 0x0e: // so
3499 //case 0x0f: // si
3500 //case 0x10: // dle
3501 //case 0x11: // dc1
3502 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003503#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003504 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003505 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003506 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003507#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003508 //case 0x16: // syn
3509 //case 0x17: // etb
3510 //case 0x18: // can
3511 //case 0x1c: // fs
3512 //case 0x1d: // gs
3513 //case 0x1e: // rs
3514 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003515 //case '!': // !-
3516 //case '#': // #-
3517 //case '&': // &-
3518 //case '(': // (-
3519 //case ')': // )-
3520 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003521 //case '=': // =-
3522 //case '@': // @-
3523 //case 'F': // F-
3524 //case 'K': // K-
3525 //case 'Q': // Q-
3526 //case 'S': // S-
3527 //case 'T': // T-
3528 //case 'V': // V-
3529 //case '[': // [-
3530 //case '\\': // \-
3531 //case ']': // ]-
3532 //case '_': // _-
3533 //case '`': // `-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003534 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003535 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00003536 buf[0] = c;
3537 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003538 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003539 end_cmd_q(); // stop adding to q
3540 case 0x00: // nul- ignore
3541 break;
3542 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003543 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00003544 dot_scroll(rows - 2, -1);
3545 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003546 case 4: // ctrl-D scroll down half screen
3547 dot_scroll((rows - 2) / 2, 1);
3548 break;
3549 case 5: // ctrl-E scroll down one line
3550 dot_scroll(1, 1);
3551 break;
3552 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003553 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003554 dot_scroll(rows - 2, 1);
3555 break;
3556 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003557 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003558 break;
3559 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003560 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003561 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003562 case 0x7f: // DEL- move left (This may be ERASE char)
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003563 do {
3564 dot_left();
3565 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003566 break;
3567 case 10: // Newline ^J
3568 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003569 case KEYCODE_DOWN: // cursor key Down
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003570 do {
3571 dot_next(); // go to next B-o-l
3572 // try stay in same col
3573 dot = move_to_col(dot, ccol + offset);
3574 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003575 break;
3576 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003577 case 18: // ctrl-R force redraw
Denys Vlasenko04b52892012-06-11 13:51:38 +02003578 place_cursor(0, 0);
3579 clear_to_eos();
3580 //mysleep(10); // why???
Eric Andersen3f980402001-04-04 17:31:15 +00003581 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003582 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003583 refresh(TRUE); // this will redraw the entire display
3584 break;
3585 case 13: // Carriage Return ^M
3586 case '+': // +- goto next line
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003587 do {
3588 dot_next();
3589 dot_skip_over_ws();
3590 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003591 break;
3592 case 21: // ctrl-U scroll up half screen
3593 dot_scroll((rows - 2) / 2, -1);
3594 break;
3595 case 25: // ctrl-Y scroll up one line
3596 dot_scroll(1, -1);
3597 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003598 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003599 if (cmd_mode == 0)
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003600 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003601 cmd_mode = 0; // stop insrting
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003602 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00003603 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003604 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003605 break;
3606 case ' ': // move right
3607 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003608 case KEYCODE_RIGHT: // Cursor Key Right
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003609 do {
3610 dot_right();
3611 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003612 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003613#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003614 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003615 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3616 if ((unsigned)c1 <= 25) { // a-z?
3617 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003618 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003619 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003620 }
3621 break;
3622 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003623 c1 = (get_one_char() | 0x20) - 'a';
3624 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003625 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003626 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003627 if (text <= q && q < end) {
3628 dot = q;
3629 dot_begin(); // go to B-o-l
3630 dot_skip_over_ws();
3631 }
3632 } else if (c1 == '\'') { // goto previous context
3633 dot = swap_context(dot); // swap current and previous context
3634 dot_begin(); // go to B-o-l
3635 dot_skip_over_ws();
3636 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003637 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003638 }
3639 break;
3640 case 'm': // m- Mark a line
3641 // this is really stupid. If there are any inserts or deletes
3642 // between text[0] and dot then this mark will not point to the
3643 // correct location! It could be off by many lines!
3644 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003645 c1 = (get_one_char() | 0x20) - 'a';
3646 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003647 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003648 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003649 } else {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003650 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003651 }
3652 break;
3653 case 'P': // P- Put register before
3654 case 'p': // p- put register after
3655 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003656 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003657 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003658 break;
3659 }
3660 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003661 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003662 if (c == 'P') {
3663 dot_begin(); // putting lines- Put above
3664 }
3665 if (c == 'p') {
3666 // are we putting after very last line?
3667 if (end_line(dot) == (end - 1)) {
3668 dot = end; // force dot to end of text[]
3669 } else {
3670 dot_next(); // next line, then put before
3671 }
3672 }
3673 } else {
3674 if (c == 'p')
3675 dot_right(); // move to right, can move to NL
3676 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003677 string_insert(dot, p, ALLOW_UNDO); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003678 end_cmd_q(); // stop adding to q
3679 break;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003680#if ENABLE_FEATURE_VI_UNDO
3681 case 'u': // u- undo last operation
3682 undo_pop();
3683 break;
3684#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003685 case 'U': // U- Undo; replace current line with original version
Denys Vlasenko800a9a02012-01-31 14:10:26 +01003686 if (reg[Ureg] != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003687 p = begin_line(dot);
3688 q = end_line(dot);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003689 p = text_hole_delete(p, q, ALLOW_UNDO); // delete cur line
3690 p += string_insert(p, reg[Ureg], ALLOW_UNDO_CHAIN); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003691 dot = p;
3692 dot_skip_over_ws();
3693 }
3694 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003695#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003696 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003697 case KEYCODE_END: // Cursor Key End
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003698 for (;;) {
3699 dot = end_line(dot);
Denys Vlasenko1fd71292011-11-28 04:55:48 +01003700 if (--cmdcnt <= 0)
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003701 break;
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003702 dot_next();
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003703 }
Eric Andersen3f980402001-04-04 17:31:15 +00003704 break;
3705 case '%': // %- find matching char of pair () [] {}
3706 for (q = dot; q < end && *q != '\n'; q++) {
3707 if (strchr("()[]{}", *q) != NULL) {
3708 // we found half of a pair
3709 p = find_pair(q, *q);
3710 if (p == NULL) {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003711 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003712 } else {
3713 dot = p;
3714 }
3715 break;
3716 }
3717 }
3718 if (*q == '\n')
Denys Vlasenko05399fc2014-09-15 17:06:10 +02003719 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00003720 break;
3721 case 'f': // f- forward to a user specified char
3722 last_forward_char = get_one_char(); // get the search char
3723 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003724 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003725 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003726 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003727 case ';': // ;- look at rest of line for last forward char
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003728 do {
3729 if (last_forward_char == 0)
3730 break;
3731 q = dot + 1;
3732 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3733 q++;
3734 }
3735 if (*q == last_forward_char)
3736 dot = q;
3737 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003738 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003739 case ',': // repeat latest 'f' in opposite direction
Paul Foxb5ee8db2008-02-14 01:17:01 +00003740 if (last_forward_char == 0)
3741 break;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003742 do {
3743 q = dot - 1;
3744 while (q >= text && *q != '\n' && *q != last_forward_char) {
3745 q--;
3746 }
3747 if (q >= text && *q == last_forward_char)
3748 dot = q;
3749 } while (--cmdcnt > 0);
Paul Foxb5ee8db2008-02-14 01:17:01 +00003750 break;
3751
Eric Andersen3f980402001-04-04 17:31:15 +00003752 case '-': // -- goto prev line
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003753 do {
3754 dot_prev();
3755 dot_skip_over_ws();
3756 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003757 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003758#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003759 case '.': // .- repeat the last modifying command
3760 // Stuff the last_modifying_cmd back into stdin
3761 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003762 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003763 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003764 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003765 }
3766 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003767#endif
3768#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003769 case '?': // /- search for a pattern
3770 case '/': // /- search for a pattern
3771 buf[0] = c;
3772 buf[1] = '\0';
3773 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003774 if (q[0] && !q[1]) {
3775 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003776 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003777 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003778 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003779 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003780 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003781 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003782 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003783 goto dc3; // now find the pattern
3784 }
3785 // user changed mind and erased the "/"- do nothing
3786 break;
3787 case 'N': // N- backward search for last pattern
Eric Andersen3f980402001-04-04 17:31:15 +00003788 dir = BACK; // assume BACKWARD search
3789 p = dot - 1;
3790 if (last_search_pattern[0] == '?') {
3791 dir = FORWARD;
3792 p = dot + 1;
3793 }
3794 goto dc4; // now search for pattern
3795 break;
3796 case 'n': // n- repeat search for last pattern
3797 // search rest of text[] starting at next char
3798 // if search fails return orignal "p" not the "p+1" address
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003799 do {
3800 const char *msg;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003801 dc3:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003802 dir = FORWARD; // assume FORWARD search
3803 p = dot + 1;
3804 if (last_search_pattern[0] == '?') {
3805 dir = BACK;
3806 p = dot - 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003807 }
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003808 dc4:
3809 q = char_search(p, last_search_pattern + 1, dir, FULL);
3810 if (q != NULL) {
3811 dot = q; // good search, update "dot"
3812 msg = NULL;
3813 goto dc2;
3814 }
3815 // no pattern found between "dot" and "end"- continue at top
3816 p = text;
3817 if (dir == BACK) {
3818 p = end - 1;
3819 }
3820 q = char_search(p, last_search_pattern + 1, dir, FULL);
3821 if (q != NULL) { // found something
3822 dot = q; // found new pattern- goto it
3823 msg = "search hit BOTTOM, continuing at TOP";
3824 if (dir == BACK) {
3825 msg = "search hit TOP, continuing at BOTTOM";
3826 }
3827 } else {
3828 msg = "Pattern not found";
3829 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003830 dc2:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003831 if (msg)
3832 status_line_bold("%s", msg);
3833 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003834 break;
3835 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003836 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003837 if (q != NULL) { // found blank line
3838 dot = next_line(q); // move to next blank line
3839 }
3840 break;
3841 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003842 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003843 if (q != NULL) { // found blank line
3844 dot = next_line(q); // move to next blank line
3845 }
3846 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003847#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003848 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003849 case '1': // 1-
3850 case '2': // 2-
3851 case '3': // 3-
3852 case '4': // 4-
3853 case '5': // 5-
3854 case '6': // 6-
3855 case '7': // 7-
3856 case '8': // 8-
3857 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003858 if (c == '0' && cmdcnt < 1) {
3859 dot_begin(); // this was a standalone zero
3860 } else {
3861 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3862 }
3863 break;
3864 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003865 p = get_input_line(":"); // get input line- use "status line"
Eric Andersen3f980402001-04-04 17:31:15 +00003866 colon(p); // execute the command
Eric Andersen3f980402001-04-04 17:31:15 +00003867 break;
3868 case '<': // <- Left shift something
3869 case '>': // >- Right shift something
3870 cnt = count_lines(text, dot); // remember what line we are on
3871 c1 = get_one_char(); // get the type of thing to delete
3872 find_range(&p, &q, c1);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003873 yank_delete(p, q, 1, YANKONLY, NO_UNDO); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003874 p = begin_line(p);
3875 q = end_line(q);
3876 i = count_lines(p, q); // # of lines we are shifting
3877 for ( ; i > 0; i--, p = next_line(p)) {
3878 if (c == '<') {
3879 // shift left- remove tab or 8 spaces
3880 if (*p == '\t') {
3881 // shrink buffer 1 char
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003882 text_hole_delete(p, p, NO_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003883 } else if (*p == ' ') {
3884 // we should be calculating columns, not just SPACE
3885 for (j = 0; *p == ' ' && j < tabstop; j++) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003886 text_hole_delete(p, p, NO_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003887 }
3888 }
3889 } else if (c == '>') {
3890 // shift right -- add tab or 8 spaces
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003891 char_insert(p, '\t', ALLOW_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00003892 }
3893 }
3894 dot = find_line(cnt); // what line were we on
3895 dot_skip_over_ws();
3896 end_cmd_q(); // stop adding to q
3897 break;
3898 case 'A': // A- append at e-o-l
3899 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003900 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003901 case 'a': // a- append after current char
3902 if (*dot != '\n')
3903 dot++;
3904 goto dc_i;
3905 break;
3906 case 'B': // B- back a blank-delimited Word
3907 case 'E': // E- end of a blank-delimited word
3908 case 'W': // W- forward a blank-delimited word
Eric Andersen3f980402001-04-04 17:31:15 +00003909 dir = FORWARD;
3910 if (c == 'B')
3911 dir = BACK;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003912 do {
3913 if (c == 'W' || isspace(dot[dir])) {
3914 dot = skip_thing(dot, 1, dir, S_TO_WS);
3915 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3916 }
3917 if (c != 'W')
3918 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3919 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003920 break;
3921 case 'C': // C- Change to e-o-l
3922 case 'D': // D- delete to e-o-l
3923 save_dot = dot;
3924 dot = dollar_line(dot); // move to before NL
3925 // copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003926 dot = yank_delete(save_dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete to e-o-l
Eric Andersen3f980402001-04-04 17:31:15 +00003927 if (c == 'C')
3928 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003929#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003930 if (c == 'D')
3931 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003932#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003933 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003934 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003935 c1 = get_one_char();
3936 if (c1 != 'g') {
3937 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003938 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003939 buf[2] = '\0';
3940 not_implemented(buf);
3941 break;
3942 }
3943 if (cmdcnt == 0)
3944 cmdcnt = 1;
3945 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003946 case 'G': // G- goto to a line number (default= E-O-F)
3947 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003948 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003949 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003950 }
3951 dot_skip_over_ws();
3952 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003953 case 'H': // H- goto top line on screen
3954 dot = screenbegin;
3955 if (cmdcnt > (rows - 1)) {
3956 cmdcnt = (rows - 1);
3957 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003958 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003959 do_cmd('+');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003960 }
Eric Andersen3f980402001-04-04 17:31:15 +00003961 dot_skip_over_ws();
3962 break;
3963 case 'I': // I- insert before first non-blank
3964 dot_begin(); // 0
3965 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003966 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003967 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003968 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003969 dc_i:
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003970 cmd_mode = 1; // start inserting
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003971 undo_queue_commit(); // commit queue when cmd_mode changes
Eric Andersen3f980402001-04-04 17:31:15 +00003972 break;
3973 case 'J': // J- join current and next lines together
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003974 do {
3975 dot_end(); // move to NL
3976 if (dot < end - 1) { // make sure not last char in text[]
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003977#if ENABLE_FEATURE_VI_UNDO
3978 undo_push(dot, 1, UNDO_DEL);
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003979 *dot++ = ' '; // replace NL with space
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003980 undo_push((dot - 1), 1, UNDO_INS_CHAIN);
3981#else
3982 *dot++ = ' ';
Denys Vlasenkoe7430862014-04-03 12:47:48 +02003983 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003984#endif
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003985 while (isblank(*dot)) { // delete leading WS
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02003986 text_hole_delete(dot, dot, ALLOW_UNDO_CHAIN);
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003987 }
Eric Andersen3f980402001-04-04 17:31:15 +00003988 }
Denys Vlasenko12e154f2011-09-09 12:35:49 +02003989 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00003990 end_cmd_q(); // stop adding to q
3991 break;
3992 case 'L': // L- goto bottom line on screen
3993 dot = end_screen();
3994 if (cmdcnt > (rows - 1)) {
3995 cmdcnt = (rows - 1);
3996 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003997 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003998 do_cmd('-');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003999 }
Eric Andersen3f980402001-04-04 17:31:15 +00004000 dot_begin();
4001 dot_skip_over_ws();
4002 break;
Eric Andersen822c3832001-05-07 17:37:43 +00004003 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00004004 dot = screenbegin;
4005 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
4006 dot = next_line(dot);
4007 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004008 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00004009 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00004010 p = begin_line(dot);
4011 if (p[-1] == '\n') {
4012 dot_prev();
4013 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
4014 dot_end();
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004015 dot = char_insert(dot, '\n', ALLOW_UNDO);
Eric Andersen3f980402001-04-04 17:31:15 +00004016 } else {
4017 dot_begin(); // 0
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004018 dot = char_insert(dot, '\n', ALLOW_UNDO); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00004019 dot_prev(); // -
4020 }
4021 goto dc_i;
4022 break;
4023 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004024 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00004025 cmd_mode = 2;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004026 undo_queue_commit();
Eric Andersen3f980402001-04-04 17:31:15 +00004027 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004028 case KEYCODE_DELETE:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004029 c = 'x';
4030 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00004031 case 'X': // X- delete char before dot
4032 case 'x': // x- delete the current char
4033 case 's': // s- substitute the current char
Eric Andersen3f980402001-04-04 17:31:15 +00004034 dir = 0;
4035 if (c == 'X')
4036 dir = -1;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004037 do {
4038 if (dot[dir] != '\n') {
4039 if (c == 'X')
4040 dot--; // delete prev char
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004041 dot = yank_delete(dot, dot, 0, YANKDEL, ALLOW_UNDO); // delete char
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004042 }
4043 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004044 end_cmd_q(); // stop adding to q
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004045 if (c == 's')
4046 goto dc_i; // start inserting
Eric Andersen3f980402001-04-04 17:31:15 +00004047 break;
4048 case 'Z': // Z- if modified, {write}; exit
4049 // ZZ means to save file (if necessary), then exit
4050 c1 = get_one_char();
4051 if (c1 != 'Z') {
Denys Vlasenko05399fc2014-09-15 17:06:10 +02004052 indicate_error();
Eric Andersen3f980402001-04-04 17:31:15 +00004053 break;
4054 }
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004055 if (modified_count) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004056 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denys Vlasenko778794d2013-01-22 10:13:52 +01004057 status_line_bold("'%s' is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00004058 break;
Paul Foxf0305b72006-03-28 14:18:21 +00004059 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004060 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00004061 if (cnt < 0) {
4062 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004063 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00004064 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00004065 editing = 0;
4066 }
4067 } else {
4068 editing = 0;
4069 }
4070 break;
4071 case '^': // ^- move to first non-blank on line
4072 dot_begin();
4073 dot_skip_over_ws();
4074 break;
4075 case 'b': // b- back a word
4076 case 'e': // e- end of word
Eric Andersen3f980402001-04-04 17:31:15 +00004077 dir = FORWARD;
4078 if (c == 'b')
4079 dir = BACK;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004080 do {
4081 if ((dot + dir) < text || (dot + dir) > end - 1)
4082 break;
4083 dot += dir;
4084 if (isspace(*dot)) {
4085 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
4086 }
4087 if (isalnum(*dot) || *dot == '_') {
4088 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
4089 } else if (ispunct(*dot)) {
4090 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
4091 }
4092 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004093 break;
4094 case 'c': // c- change something
4095 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004096#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004097 case 'y': // y- yank something
4098 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004099#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00004100 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00004101 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00004102 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004103#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004104 if (c == 'y' || c == 'Y')
4105 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004106#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004107 c1 = 'y';
4108 if (c != 'Y')
4109 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00004110 // determine range, and whether it spans lines
4111 ml = find_range(&p, &q, c1);
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004112 place_cursor(0, 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004113 if (c1 == 27) { // ESC- user changed mind and wants out
4114 c = c1 = 27; // Escape- do nothing
4115 } else if (strchr("wW", c1)) {
4116 if (c == 'c') {
4117 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00004118 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00004119 if (q <= text || q[-1] == '\n')
4120 break;
4121 q--;
4122 }
4123 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004124 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word
Paul Foxc51fc7b2008-03-06 01:34:23 +00004125 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
4126 // partial line copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004127 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete word
Paul Foxc51fc7b2008-03-06 01:34:23 +00004128 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
4129 // whole line copy text into a register and delete
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004130 dot = yank_delete(p, q, ml, yf, ALLOW_UNDO); // delete lines
Paul Foxc51fc7b2008-03-06 01:34:23 +00004131 whole = 1;
4132 } else {
4133 // could not recognize object
4134 c = c1 = 27; // error-
4135 ml = 0;
Denys Vlasenko05399fc2014-09-15 17:06:10 +02004136 indicate_error();
Paul Foxc51fc7b2008-03-06 01:34:23 +00004137 }
4138 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00004139 if (c == 'c') {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004140 dot = char_insert(dot, '\n', ALLOW_UNDO_CHAIN);
Eric Andersen1c0d3112001-04-16 15:46:44 +00004141 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00004142 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00004143 dot_prev();
4144 }
4145 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00004146 dot_begin();
4147 dot_skip_over_ws();
4148 }
Eric Andersen3f980402001-04-04 17:31:15 +00004149 }
4150 if (c1 != 27) {
4151 // if CHANGING, not deleting, start inserting after the delete
4152 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004153 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00004154 goto dc_i; // start inserting
4155 }
4156 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004157 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00004158 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004159#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004160 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004161 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00004162 }
4163 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004164 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00004165 for (cnt = 0; p <= q; p++) {
4166 if (*p == '\n')
4167 cnt++;
4168 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004169 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004170 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004171#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004172 end_cmd_q(); // stop adding to q
4173 }
4174 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00004175 }
Eric Andersen3f980402001-04-04 17:31:15 +00004176 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004177 case KEYCODE_UP: // cursor key Up
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004178 do {
4179 dot_prev();
4180 dot = move_to_col(dot, ccol + offset); // try stay in same col
4181 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004182 break;
4183 case 'r': // r- replace the current char with user input
4184 c1 = get_one_char(); // get the replacement char
4185 if (*dot != '\n') {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004186#if ENABLE_FEATURE_VI_UNDO
4187 undo_push(dot, 1, UNDO_DEL);
4188 *dot = c1;
4189 undo_push(dot, 1, UNDO_INS_CHAIN);
4190#else
Eric Andersen3f980402001-04-04 17:31:15 +00004191 *dot = c1;
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004192 modified_count++;
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004193#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004194 }
4195 end_cmd_q(); // stop adding to q
4196 break;
Eric Andersen822c3832001-05-07 17:37:43 +00004197 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00004198 last_forward_char = get_one_char();
4199 do_cmd(';');
4200 if (*dot == last_forward_char)
4201 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00004202 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00004203 break;
Eric Andersen3f980402001-04-04 17:31:15 +00004204 case 'w': // w- forward a word
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004205 do {
4206 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
4207 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
4208 } else if (ispunct(*dot)) { // we are on PUNCT
4209 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
4210 }
4211 if (dot < end - 1)
4212 dot++; // move over word
4213 if (isspace(*dot)) {
4214 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
4215 }
4216 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004217 break;
4218 case 'z': // z-
4219 c1 = get_one_char(); // get the replacement char
4220 cnt = 0;
4221 if (c1 == '.')
4222 cnt = (rows - 2) / 2; // put dot at center
4223 if (c1 == '-')
4224 cnt = rows - 2; // put dot at bottom
4225 screenbegin = begin_line(dot); // start dot at top
4226 dot_scroll(cnt, -1);
4227 break;
4228 case '|': // |- move to column "cmdcnt"
4229 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
4230 break;
4231 case '~': // ~- flip the case of letters a-z -> A-Z
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004232 do {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004233#if ENABLE_FEATURE_VI_UNDO
4234 if (islower(*dot)) {
4235 undo_push(dot, 1, UNDO_DEL);
4236 *dot = toupper(*dot);
4237 undo_push(dot, 1, UNDO_INS_CHAIN);
4238 } else if (isupper(*dot)) {
4239 undo_push(dot, 1, UNDO_DEL);
4240 *dot = tolower(*dot);
4241 undo_push(dot, 1, UNDO_INS_CHAIN);
4242 }
4243#else
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004244 if (islower(*dot)) {
4245 *dot = toupper(*dot);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004246 modified_count++;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004247 } else if (isupper(*dot)) {
4248 *dot = tolower(*dot);
Denys Vlasenkoe7430862014-04-03 12:47:48 +02004249 modified_count++;
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004250 }
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004251#endif
Denys Vlasenko12e154f2011-09-09 12:35:49 +02004252 dot_right();
4253 } while (--cmdcnt > 0);
Eric Andersen3f980402001-04-04 17:31:15 +00004254 end_cmd_q(); // stop adding to q
4255 break;
4256 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004257 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00004258 dot_begin();
4259 break;
4260 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004261#if 0
4262 case KEYCODE_FUN1: // Function Key F1
4263 case KEYCODE_FUN2: // Function Key F2
4264 case KEYCODE_FUN3: // Function Key F3
4265 case KEYCODE_FUN4: // Function Key F4
4266 case KEYCODE_FUN5: // Function Key F5
4267 case KEYCODE_FUN6: // Function Key F6
4268 case KEYCODE_FUN7: // Function Key F7
4269 case KEYCODE_FUN8: // Function Key F8
4270 case KEYCODE_FUN9: // Function Key F9
4271 case KEYCODE_FUN10: // Function Key F10
4272 case KEYCODE_FUN11: // Function Key F11
4273 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00004274 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00004275#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004276 }
4277
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004278 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00004279 // if text[] just became empty, add back an empty line
4280 if (end == text) {
Jody Bruchona8d6f9b2014-04-02 13:49:26 +02004281 char_insert(text, '\n', NO_UNDO); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00004282 dot = text;
4283 }
4284 // it is OK for dot to exactly equal to end, otherwise check dot validity
4285 if (dot != end) {
4286 dot = bound_dot(dot); // make sure "dot" is valid
4287 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004288#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00004289 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004290#endif
Eric Andersen3f980402001-04-04 17:31:15 +00004291
4292 if (!isdigit(c))
4293 cmdcnt = 0; // cmd was not a number, reset cmdcnt
4294 cnt = dot - begin_line(dot);
4295 // Try to stay off of the Newline
4296 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
4297 dot--;
4298}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004299
Paul Fox35e9c5d2008-03-06 16:26:12 +00004300/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004301#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004302static int totalcmds = 0;
4303static int Mp = 85; // Movement command Probability
4304static int Np = 90; // Non-movement command Probability
4305static int Dp = 96; // Delete command Probability
4306static int Ip = 97; // Insert command Probability
4307static int Yp = 98; // Yank command Probability
4308static int Pp = 99; // Put command Probability
4309static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004310static const char chars[20] = "\t012345 abcdABCD-=.$";
4311static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004312 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004313 "broadcast", "the", "emergency", "of",
4314 "system", "quick", "brown", "fox",
4315 "jumped", "over", "lazy", "dogs",
4316 "back", "January", "Febuary", "March"
4317};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004318static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004319 "You should have received a copy of the GNU General Public License\n",
4320 "char c, cm, *cmd, *cmd1;\n",
4321 "generate a command by percentages\n",
4322 "Numbers may be typed as a prefix to some commands.\n",
4323 "Quit, discarding changes!\n",
4324 "Forced write, if permission originally not valid.\n",
4325 "In general, any ex or ed command (such as substitute or delete).\n",
4326 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
4327 "Please get w/ me and I will go over it with you.\n",
4328 "The following is a list of scheduled, committed changes.\n",
4329 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
4330 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
4331 "Any question about transactions please contact Sterling Huxley.\n",
4332 "I will try to get back to you by Friday, December 31.\n",
4333 "This Change will be implemented on Friday.\n",
4334 "Let me know if you have problems accessing this;\n",
4335 "Sterling Huxley recently added you to the access list.\n",
4336 "Would you like to go to lunch?\n",
4337 "The last command will be automatically run.\n",
4338 "This is too much english for a computer geek.\n",
4339};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004340static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004341 "You should have received a copy of the GNU General Public License\n",
4342 "char c, cm, *cmd, *cmd1;\n",
4343 "generate a command by percentages\n",
4344 "Numbers may be typed as a prefix to some commands.\n",
4345 "Quit, discarding changes!\n",
4346 "Forced write, if permission originally not valid.\n",
4347 "In general, any ex or ed command (such as substitute or delete).\n",
4348 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
4349 "Please get w/ me and I will go over it with you.\n",
4350 "The following is a list of scheduled, committed changes.\n",
4351 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
4352 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
4353 "Any question about transactions please contact Sterling Huxley.\n",
4354 "I will try to get back to you by Friday, December 31.\n",
4355 "This Change will be implemented on Friday.\n",
4356 "Let me know if you have problems accessing this;\n",
4357 "Sterling Huxley recently added you to the access list.\n",
4358 "Would you like to go to lunch?\n",
4359 "The last command will be automatically run.\n",
4360 "This is too much english for a computer geek.\n",
4361};
4362
4363// create a random command to execute
4364static void crash_dummy()
4365{
4366 static int sleeptime; // how long to pause between commands
4367 char c, cm, *cmd, *cmd1;
4368 int i, cnt, thing, rbi, startrbi, percent;
4369
4370 // "dot" movement commands
4371 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
4372
4373 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02004374 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004375 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004376 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02004377 readbuffer[0] = 'X';
4378 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004379 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004380 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004381 // generate a command by percentages
4382 percent = (int) lrand48() % 100; // get a number from 0-99
4383 if (percent < Mp) { // Movement commands
4384 // available commands
4385 cmd = cmd1;
4386 M++;
4387 } else if (percent < Np) { // non-movement commands
4388 cmd = "mz<>\'\""; // available commands
4389 N++;
4390 } else if (percent < Dp) { // Delete commands
4391 cmd = "dx"; // available commands
4392 D++;
4393 } else if (percent < Ip) { // Inset commands
4394 cmd = "iIaAsrJ"; // available commands
4395 I++;
4396 } else if (percent < Yp) { // Yank commands
4397 cmd = "yY"; // available commands
4398 Y++;
4399 } else if (percent < Pp) { // Put commands
4400 cmd = "pP"; // available commands
4401 P++;
4402 } else {
4403 // We do not know how to handle this command, try again
4404 U++;
4405 goto cd0;
4406 }
4407 // randomly pick one of the available cmds from "cmd[]"
4408 i = (int) lrand48() % strlen(cmd);
4409 cm = cmd[i];
4410 if (strchr(":\024", cm))
4411 goto cd0; // dont allow colon or ctrl-T commands
4412 readbuffer[rbi++] = cm; // put cmd into input buffer
4413
4414 // now we have the command-
4415 // there are 1, 2, and multi char commands
4416 // find out which and generate the rest of command as necessary
4417 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
4418 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
4419 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
4420 cmd1 = "abcdefghijklmnopqrstuvwxyz";
4421 }
4422 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4423 c = cmd1[thing];
4424 readbuffer[rbi++] = c; // add movement to input buffer
4425 }
4426 if (strchr("iIaAsc", cm)) { // multi-char commands
4427 if (cm == 'c') {
4428 // change some thing
4429 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4430 c = cmd1[thing];
4431 readbuffer[rbi++] = c; // add movement to input buffer
4432 }
4433 thing = (int) lrand48() % 4; // what thing to insert
4434 cnt = (int) lrand48() % 10; // how many to insert
4435 for (i = 0; i < cnt; i++) {
4436 if (thing == 0) { // insert chars
4437 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
4438 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004439 strcat(readbuffer, words[(int) lrand48() % 20]);
4440 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004441 sleeptime = 0; // how fast to type
4442 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004443 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004444 sleeptime = 0; // how fast to type
4445 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004446 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004447 sleeptime = 0; // how fast to type
4448 }
4449 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004450 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004451 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02004452 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004453 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004454 totalcmds++;
4455 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004456 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004457}
4458
4459// test to see if there are any errors
4460static void crash_test()
4461{
4462 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004463
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004464 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004465 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004466
4467 msg[0] = '\0';
4468 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004469 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004470 }
4471 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004472 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004473 }
4474 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004475 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004476 }
4477 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004478 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004479 }
4480 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004481 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004482 }
4483 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004484 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004485 }
4486
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004487 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00004488 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Denys Vlasenko04b52892012-06-11 13:51:38 +02004489 totalcmds, last_input_char, msg, ESC_BOLD_TEXT, ESC_NORM_TEXT);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01004490 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004491 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004492 if (d[0] == '\n' || d[0] == '\r')
4493 break;
4494 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004495 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004496 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004497 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004498 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004499 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4500 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4501 oldtim = tim;
4502 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004503}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004504#endif