blob: 9b050e1157676f7a2f59b3b3f26a9e0d47eb9e7f [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 *
Paul Foxdbf935d2006-03-27 20:29:33 +00006 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
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
17 * 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
20 * A true "undo" facility
21 * An "ex" line oriented mode- maybe using "cmdedit"
Eric Andersen3f980402001-04-04 17:31:15 +000022 */
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Eric Andersen3f980402001-04-04 17:31:15 +000025
Paul Fox35e9c5d2008-03-06 16:26:12 +000026/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000027#define ENABLE_FEATURE_VI_CRASHME 0
28
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000029
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000030#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000031
32#if ENABLE_FEATURE_VI_8BIT
Denys Vlasenkoc2704542009-11-20 19:14:19 +010033//FIXME: this does not work properly for Unicode anyway
34# define Isprint(c) (isprint)(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000035#else
Denys Vlasenkoc2704542009-11-20 19:14:19 +010036# define Isprint(c) isprint_asciionly(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000037#endif
38
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000039#else
40
41/* 0x9b is Meta-ESC */
42#if ENABLE_FEATURE_VI_8BIT
43#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
44#else
45#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
46#endif
47
48#endif
49
50
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000051enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000052 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000053 // User input len. Need not be extra big.
54 // Lines in file being edited *can* be bigger than this.
55 MAX_INPUT_LEN = 128,
56 // Sanity limits. We have only one buffer of this size.
57 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
58 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000059};
Eric Andersen3f980402001-04-04 17:31:15 +000060
Glenn L McGrath09adaca2002-12-02 21:18:10 +000061/* vt102 typical ESC sequence */
62/* terminal standout start/normal ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020063#define SOs "\033[7m"
64#define SOn "\033[0m"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000065/* terminal bell sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020066#define bell "\007"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000067/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020068#define Ceol "\033[K"
69#define Ceos "\033[J"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000070/* Cursor motion arbitrary destination ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020071#define CMrc "\033[%u;%uH"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000072/* Cursor motion up and down ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020073#define CMup "\033[A"
74#define CMdown "\n"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000075
Denis Vlasenkoded6ad32008-10-14 12:26:30 +000076#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
77// cmds modifying text[]
78// vda: removed "aAiIs" as they switch us into insert mode
79// and remembering input for replay after them makes no sense
80static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~";
81#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +000082
Rob Landleybc68cd12006-03-10 19:22:06 +000083enum {
84 YANKONLY = FALSE,
85 YANKDEL = TRUE,
86 FORWARD = 1, // code depends on "1" for array index
87 BACK = -1, // code depends on "-1" for array index
88 LIMITED = 0, // how much of text[] in char_search
89 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +000090
Rob Landleybc68cd12006-03-10 19:22:06 +000091 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
92 S_TO_WS = 2, // used in skip_thing() for moving "dot"
93 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
94 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +000095 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +000096};
Eric Andersen3f980402001-04-04 17:31:15 +000097
Denis Vlasenkob1759462008-06-20 20:20:54 +000098
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +000099/* vi.c expects chars to be unsigned. */
100/* busybox build system provides that, but it's better */
101/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000102
Denis Vlasenkob1759462008-06-20 20:20:54 +0000103struct globals {
104 /* many references - keep near the top of globals */
105 char *text, *end; // pointers to the user data in memory
106 char *dot; // where all the action takes place
107 int text_size; // size of the allocated buffer
108
109 /* the rest */
110 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000111#define VI_AUTOINDENT 1
112#define VI_SHOWMATCH 2
113#define VI_IGNORECASE 4
114#define VI_ERR_METHOD 8
115#define autoindent (vi_setops & VI_AUTOINDENT)
116#define showmatch (vi_setops & VI_SHOWMATCH )
117#define ignorecase (vi_setops & VI_IGNORECASE)
118/* indicate error with beep or flash */
119#define err_method (vi_setops & VI_ERR_METHOD)
120
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000121#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000122 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000123#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
124#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
125#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000126#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000127#define SET_READONLY_FILE(flags) ((void)0)
128#define SET_READONLY_MODE(flags) ((void)0)
129#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000130#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000131
Denis Vlasenkob1759462008-06-20 20:20:54 +0000132 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000133 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000134 smallint cmd_mode; // 0=command 1=insert 2=replace
135 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000136 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000137 int fn_start; // index of first cmd line file name
138 int save_argc; // how many file names on cmd line
139 int cmdcnt; // repetition count
140 unsigned rows, columns; // the terminal screen is this size
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700141#if ENABLE_FEATURE_VI_ASK_TERMINAL
142 int get_rowcol_error;
143#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000144 int crow, ccol; // cursor is on Crow x Ccol
145 int offset; // chars scrolled off the screen to the left
146 int have_status_msg; // is default edit status needed?
147 // [don't make smallint!]
148 int last_status_cksum; // hash of current status line
149 char *current_filename;
150 char *screenbegin; // index into text[], of top line on the screen
151 char *screen; // pointer to the virtual screen buffer
152 int screensize; // and its size
153 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000154 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000155 char erase_char; // the users erase character
156 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000157
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000158#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000159 smallint adding2q; // are we currently adding user input to q
160 int lmc_len; // length of last_modifying_cmd
161 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000162#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000163#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000164 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000165#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000166#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000167 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000168#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000169#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000170 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000171#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000172
Denis Vlasenkob1759462008-06-20 20:20:54 +0000173 /* former statics */
174#if ENABLE_FEATURE_VI_YANKMARK
175 char *edit_file__cur_line;
176#endif
177 int refresh__old_offset;
178 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000179
Denis Vlasenkob1759462008-06-20 20:20:54 +0000180 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000181#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000182 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000183 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000184 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
185 char *context_start, *context_end;
186#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000187#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000188 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000189#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000190 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000191#if ENABLE_FEATURE_VI_COLON
192 char *initial_cmds[3]; // currently 2 entries, NULL terminated
193#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000194 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000195 // but CRASHME mode uses it as generated command buffer too
196#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000197 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000198#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000199 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000200#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000201#define STATUS_BUFFER_LEN 200
202 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
203#if ENABLE_FEATURE_VI_DOT_CMD
204 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
205#endif
206 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000207
208 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000209};
210#define G (*ptr_to_globals)
211#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000212#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000213#define end (G.end )
214#define dot (G.dot )
215#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000216
217#define vi_setops (G.vi_setops )
218#define editing (G.editing )
219#define cmd_mode (G.cmd_mode )
220#define file_modified (G.file_modified )
221#define last_file_modified (G.last_file_modified )
222#define fn_start (G.fn_start )
223#define save_argc (G.save_argc )
224#define cmdcnt (G.cmdcnt )
225#define rows (G.rows )
226#define columns (G.columns )
227#define crow (G.crow )
228#define ccol (G.ccol )
229#define offset (G.offset )
230#define status_buffer (G.status_buffer )
231#define have_status_msg (G.have_status_msg )
232#define last_status_cksum (G.last_status_cksum )
233#define current_filename (G.current_filename )
234#define screen (G.screen )
235#define screensize (G.screensize )
236#define screenbegin (G.screenbegin )
237#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000238#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000239#define erase_char (G.erase_char )
240#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000241#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000242#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000243#else
244#define readonly_mode 0
245#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000246#define adding2q (G.adding2q )
247#define lmc_len (G.lmc_len )
248#define ioq (G.ioq )
249#define ioq_start (G.ioq_start )
250#define last_row (G.last_row )
251#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000252#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000253
Denis Vlasenkob1759462008-06-20 20:20:54 +0000254#define edit_file__cur_line (G.edit_file__cur_line)
255#define refresh__old_offset (G.refresh__old_offset)
256#define format_edit_status__tot (G.format_edit_status__tot)
257
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000258#define YDreg (G.YDreg )
259#define Ureg (G.Ureg )
260#define mark (G.mark )
261#define context_start (G.context_start )
262#define context_end (G.context_end )
263#define restart (G.restart )
264#define term_orig (G.term_orig )
265#define term_vi (G.term_vi )
266#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000267#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000268#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000269#define last_modifying_cmd (G.last_modifying_cmd )
270#define get_input_line__buf (G.get_input_line__buf)
271
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000272#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000273 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000274 last_file_modified = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000275 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000276 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000277} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000278
Denis Vlasenkob1759462008-06-20 20:20:54 +0000279
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000280static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000281static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000282static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000283static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000284static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
285static char *begin_line(char *); // return pointer to cur line B-o-l
286static char *end_line(char *); // return pointer to cur line E-o-l
287static char *prev_line(char *); // return pointer to prev line B-o-l
288static char *next_line(char *); // return pointer to next line B-o-l
289static char *end_screen(void); // get pointer to last char on screen
290static int count_lines(char *, char *); // count line from start to stop
291static char *find_line(int); // find begining of line #li
292static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000293static void dot_left(void); // move dot left- dont leave line
294static void dot_right(void); // move dot right- dont leave line
295static void dot_begin(void); // move dot to B-o-l
296static void dot_end(void); // move dot to E-o-l
297static void dot_next(void); // move dot to next line B-o-l
298static void dot_prev(void); // move dot to prev line B-o-l
299static void dot_scroll(int, int); // move the screen up or down
300static void dot_skip_over_ws(void); // move dot pat WS
301static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000302static char *bound_dot(char *); // make sure text[0] <= P < "end"
303static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000304static char *char_insert(char *, char); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000305// might reallocate text[]! use p += stupid_insert(p, ...),
306// and be careful to not use pointers into potentially freed text[]!
307static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000308static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000309static int st_test(char *, int, int, char *); // helper for skip_thing()
310static char *skip_thing(char *, int, int, int); // skip some object
311static char *find_pair(char *, char); // find matching pair () [] {}
312static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000313// might reallocate text[]! use p += text_hole_make(p, ...),
314// and be careful to not use pointers into potentially freed text[]!
315static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000316static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000317static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000318static void rawmode(void); // set "raw" mode on tty
319static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000320// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
321static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000322static int readit(void); // read (maybe cursor) key from stdin
323static int get_one_char(void); // read 1 char from stdin
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000324static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000325#if !ENABLE_FEATURE_VI_READONLY
326#define file_insert(fn, p, update_ro_status) file_insert(fn, p)
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000327#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000328// file_insert might reallocate text[]!
329static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000330static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000331#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
332#define place_cursor(a, b, optimize) place_cursor(a, b)
333#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000334static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000335static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000336static void clear_to_eol(void);
337static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000338static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000339static void standout_start(void); // send "start reverse video" sequence
340static void standout_end(void); // send "end reverse video" sequence
341static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000342static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000343static void status_line(const char *, ...); // print to status buf
344static void status_line_bold(const char *, ...);
345static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000346static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000347static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000348static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000349static void refresh(int); // update the terminal from screen[]
350
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000351static void Indicate_Error(void); // use flash or beep to indicate error
352#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000353static void Hit_Return(void);
354
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000355#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000356static char *char_search(char *, const char *, int, int); // search for pattern starting at p
357static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000358#endif
359#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000360static char *get_one_address(char *, int *); // get colon addr, if present
361static char *get_address(char *, int *, int *); // get two colon addrs, if present
362static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000363#endif
364#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000365static void winch_sig(int); // catch window size changes
366static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000367static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000368#endif
369#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000370static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000371static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000372#else
373#define end_cmd_q() ((void)0)
374#endif
375#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000376static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000377#endif
378#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000379// might reallocate text[]! use p += string_insert(p, ...),
380// and be careful to not use pointers into potentially freed text[]!
381static uintptr_t string_insert(char *, const char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000382#endif
383#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000384static char *text_yank(char *, char *, int); // save copy of "p" into a register
385static char what_reg(void); // what is letter of current YDreg
386static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000387#endif
388#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000389static void crash_dummy();
390static void crash_test();
391static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000392#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000393
394
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000395static void write1(const char *out)
396{
397 fputs(out, stdout);
398}
399
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000400int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000401int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000402{
Eric Andersend402edf2001-04-04 19:29:48 +0000403 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000404
405 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000406
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000407#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000408 my_pid = getpid();
409#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000410#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000411 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000412#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000413#ifdef NO_SUCH_APPLET_YET
414 /* If we aren't "vi", we are "view" */
415 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000416 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000417 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000418#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000419
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000420 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000421 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000422 // 2- process EXINIT variable from environment
423 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000424#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000425 {
426 char *p = getenv("EXINIT");
427 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000428 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000429 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000430#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000431 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000432 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000433#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000434 case 'C':
435 crashme = 1;
436 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000437#endif
438#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000439 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000440 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000441 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000442#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000443#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000444 case 'c': // cmd line vi command
445 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000446 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000447 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000448#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000449 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000450 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000451 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000452 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000453 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000454 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000455 }
456 }
457
458 // The argv array can be used by the ":next" and ":rewind" commands
459 // save optind.
460 fn_start = optind; // remember first file name for :next and :rew
461 save_argc = argc;
462
463 //----- This is the main file handling loop --------------
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700464 while (1) {
465 edit_file(argv[optind]); /* param might be NULL */
466 if (++optind >= argc)
467 break;
Eric Andersen3f980402001-04-04 17:31:15 +0000468 }
469 //-----------------------------------------------------------
470
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000471 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000472}
473
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000474/* read text from file or create an empty buf */
475/* will also update current_filename */
476static int init_text_buffer(char *fn)
477{
478 int rc;
479 int size = file_size(fn); // file size. -1 means does not exist.
480
481 /* allocate/reallocate text buffer */
482 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000483 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000484 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000485
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000486 if (fn != current_filename) {
487 free(current_filename);
488 current_filename = xstrdup(fn);
489 }
490 if (size < 0) {
491 // file dont exist. Start empty buf with dummy line
492 char_insert(text, '\n');
493 rc = 0;
494 } else {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000495 rc = file_insert(fn, text, 1);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000496 }
497 file_modified = 0;
498 last_file_modified = -1;
499#if ENABLE_FEATURE_VI_YANKMARK
500 /* init the marks. */
501 memset(mark, 0, sizeof(mark));
502#endif
503 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000504}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000505
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700506#if ENABLE_FEATURE_VI_WIN_RESIZE
507static void query_screen_dimensions(void)
508{
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700509# if ENABLE_FEATURE_VI_ASK_TERMINAL
510 if (!G.get_rowcol_error)
511 G.get_rowcol_error =
512# endif
513 get_terminal_width_height(STDIN_FILENO, &columns, &rows);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700514 if (rows > MAX_SCR_ROWS)
515 rows = MAX_SCR_ROWS;
516 if (columns > MAX_SCR_COLS)
517 columns = MAX_SCR_COLS;
518}
519#else
520# define query_screen_dimensions() ((void)0)
521#endif
522
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000523static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000524{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000525#if ENABLE_FEATURE_VI_YANKMARK
526#define cur_line edit_file__cur_line
527#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000528 int c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000529 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000530#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000531 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000532#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000533
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000534 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000535 rawmode();
536 rows = 24;
537 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000538 size = 0;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700539 query_screen_dimensions();
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700540#if ENABLE_FEATURE_VI_ASK_TERMINAL
541 if (G.get_rowcol_error /* TODO? && no input on stdin */) {
542 uint64_t k;
543 write1("\033[999;999H" "\033[6n");
544 fflush_all();
545 k = read_key(STDIN_FILENO, readbuffer, /*timeout_ms:*/ 100);
546 if ((int32_t)k == KEYCODE_CURSOR_POS) {
547 uint32_t rc = (k >> 32);
548 columns = (rc & 0x7fff);
549 rows = ((rc >> 16) & 0x7fff);
550 }
551 query_screen_dimensions();
552 }
553#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000554 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000555 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000556
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000557#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000558 YDreg = 26; // default Yank/Delete reg
559 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000560 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000561#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000562
Eric Andersen3f980402001-04-04 17:31:15 +0000563 last_forward_char = last_input_char = '\0';
564 crow = 0;
565 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000566
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000567#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700568 signal(SIGINT, catch_sig);
Eric Andersen3f980402001-04-04 17:31:15 +0000569 signal(SIGWINCH, winch_sig);
570 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000571 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000572 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000573 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000574 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000575#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000576
Eric Andersen3f980402001-04-04 17:31:15 +0000577 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
578 cmdcnt = 0;
579 tabstop = 8;
580 offset = 0; // no horizontal offset
581 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000582#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000583 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000584 ioq = ioq_start = NULL;
585 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000586 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000587#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000588
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000589#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000590 {
591 char *p, *q;
592 int n = 0;
593
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700594 while ((p = initial_cmds[n]) != NULL) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000595 do {
596 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000597 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000598 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000599 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000600 *p++ = '\0';
601 if (*q)
602 colon(q);
603 } while (p);
604 free(initial_cmds[n]);
605 initial_cmds[n] = NULL;
606 n++;
607 }
608 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000609#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000610 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000611 //------This is the main Vi cmd handling loop -----------------------
612 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000613#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000614 if (crashme > 0) {
615 if ((end - text) > 1) {
616 crash_dummy(); // generate a random command
617 } else {
618 crashme = 0;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000619 string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
620 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000621 refresh(FALSE);
622 }
623 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000624#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000625 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000626#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000627 // save a copy of the current line- for the 'U" command
628 if (begin_line(dot) != cur_line) {
629 cur_line = begin_line(dot);
630 text_yank(begin_line(dot), end_line(dot), Ureg);
631 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000632#endif
633#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000634 // These are commands that change text[].
635 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000636 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000637 && cmd_mode == 0 // command mode
638 && c > '\0' // exclude NUL and non-ASCII chars
639 && c < 0x7f // (Unicode and such)
640 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000641 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000642 start_new_cmd_q(c);
643 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000644#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000645 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000646
Eric Andersen3f980402001-04-04 17:31:15 +0000647 // poll to see if there is input already waiting. if we are
648 // not able to display output fast enough to keep up, skip
649 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200650 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000651 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000652 refresh(FALSE);
653 show_status_line();
654 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000655#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000656 if (crashme > 0)
657 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000658#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000659 }
660 //-------------------------------------------------------------------
661
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000662 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000663 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000664#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000665}
666
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000667//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000668#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000669static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000670{
671 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000672 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000673 IF_FEATURE_VI_YANKMARK(char c;)
674 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000675
676 *addr = -1; // assume no addr
677 if (*p == '.') { // the current line
678 p++;
679 q = begin_line(dot);
680 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000681 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000682#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000683 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000684 p++;
685 c = tolower(*p);
686 p++;
687 if (c >= 'a' && c <= 'z') {
688 // we have a mark
689 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000690 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000691 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000692 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000693 }
694 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000695 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000696#endif
697#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000698 else if (*p == '/') { // a search pattern
699 q = strchrnul(++p, '/');
700 pat = xstrndup(p, q - p); // save copy of pattern
701 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000702 if (*p == '/')
703 p++;
704 q = char_search(dot, pat, FORWARD, FULL);
705 if (q != NULL) {
706 *addr = count_lines(text, q);
707 }
708 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000709 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000710#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000711 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000712 p++;
713 q = begin_line(end - 1);
714 *addr = count_lines(text, q);
715 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000716 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000717 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000718 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200719 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000720 *addr = -1;
721 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000722 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000723}
724
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000725static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000726{
727 //----- get the address' i.e., 1,3 'a,'b -----
728 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000729 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000730 p++; // skip over leading spaces
731 if (*p == '%') { // alias for 1,$
732 p++;
733 *b = 1;
734 *e = count_lines(text, end-1);
735 goto ga0;
736 }
737 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000738 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000739 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000740 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000741 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000742 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000743 p++;
744 // get SECOND addr, if present
745 p = get_one_address(p, e);
746 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000747 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000748 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000749 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000750 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000751}
752
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000753#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000754static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000755 const char *short_opname, int opt)
756{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000757 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000758 int l = strlen(opname) - 1; /* opname have + ' ' */
759
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200760 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000761 if (strncasecmp(a, opname, l) == 0
762 || strncasecmp(a, short_opname, 2) == 0
763 ) {
764 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000765 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000766 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000767 vi_setops |= opt;
768 }
769}
770#endif
771
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000772// buf must be no longer than MAX_INPUT_LEN!
773static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000774{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000775 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000776 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000777 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000778 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000779
780 // :3154 // if (-e line 3154) goto it else stay put
781 // :4,33w! foo // write a portion of buffer to file "foo"
782 // :w // write all of buffer to current file
783 // :q // quit
784 // :q! // quit- dont care about modified file
785 // :'a,'z!sort -u // filter block through sort
786 // :'f // goto mark "f"
787 // :'fl // list literal the mark "f" line
788 // :.r bar // read file "bar" into buffer before dot
789 // :/123/,/abc/d // delete lines from "123" line to "abc" line
790 // :/xyz/ // goto the "xyz" line
791 // :s/find/replace/ // substitute pattern "find" with "replace"
792 // :!<cmd> // run <cmd> then return
793 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000794
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000795 if (!buf[0])
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200796 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000797 if (*buf == ':')
798 buf++; // move past the ':'
799
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000800 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000801 b = e = -1;
802 q = text; // assume 1,$ for the range
803 r = end - 1;
804 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000805 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000806
807 // look for optional address(es) :. :1 :1,9 :'q,'a :%
808 buf = get_address(buf, &b, &e);
809
810 // remember orig command line
811 orig_buf = buf;
812
813 // get the COMMAND into cmd[]
814 buf1 = cmd;
815 while (*buf != '\0') {
816 if (isspace(*buf))
817 break;
818 *buf1++ = *buf++;
819 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000820 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000821 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000822 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000823 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000824 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000825 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000826 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000827 if (buf1) {
828 useforce = TRUE;
829 *buf1 = '\0'; // get rid of !
830 }
831 if (b >= 0) {
832 // if there is only one addr, then the addr
833 // is the line number of the single line the
834 // user wants. So, reset the end
835 // pointer to point at end of the "b" line
836 q = find_line(b); // what line is #b
837 r = end_line(q);
838 li = 1;
839 }
840 if (e >= 0) {
841 // we were given two addrs. change the
842 // end pointer to the addr given by user.
843 r = find_line(e); // what line is #e
844 r = end_line(r);
845 li = e - b + 1;
846 }
847 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000848 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000849 if (i == 0) { // :123CR goto line #123
850 if (b >= 0) {
851 dot = find_line(b); // what line is #b
852 dot_skip_over_ws();
853 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000854 }
855#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200856 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000857 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000858 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000859 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000860 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000861 retcode = system(orig_buf + 1); // run the cmd
862 if (retcode)
863 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000864 rawmode();
865 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000866 }
867#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200868 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000869 if (b < 0) { // no addr given- use defaults
870 b = e = count_lines(text, dot);
871 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000872 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200873 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000874 if (b < 0) { // no addr given- use defaults
875 q = begin_line(dot); // assume .,. for the range
876 r = end_line(dot);
877 }
878 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
879 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200880 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000881 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000882 if (file_modified && !useforce) {
883 status_line_bold("No write since last change (:edit! overrides)");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200884 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000885 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000886 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000887 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000888 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000889 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000890 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000891 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000892 } else {
893 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000894 status_line_bold("No current filename");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200895 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000896 }
897
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000898 if (init_text_buffer(fn) < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200899 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000900
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000901#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000902 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
903 free(reg[Ureg]); // free orig line reg- for 'U'
904 reg[Ureg]= 0;
905 }
906 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
907 free(reg[YDreg]); // free default yank/delete register
908 reg[YDreg]= 0;
909 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000910#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000911 // how many lines in text[]?
912 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000913 status_line("\"%s\"%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000914 IF_FEATURE_VI_READONLY("%s")
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000915 " %dL, %dC", current_filename,
916 (file_size(fn) < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000917 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000918 ((readonly_mode) ? " [Readonly]" : ""),
919 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000920 li, ch);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200921 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000922 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100923 status_line_bold("No address allowed on this command");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200924 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000925 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000926 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000927 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000928 free(current_filename);
929 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000930 } else {
931 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000932 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000933 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200934 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000935 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000936 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000937 cookmode();
938 show_help();
939 rawmode();
940 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200941 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000942 if (b < 0) { // no addr given- use defaults
943 q = begin_line(dot); // assume .,. for the range
944 r = end_line(dot);
945 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000946 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000947 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000948 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000949 int c_is_no_print;
950
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000951 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000952 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000953 if (c_is_no_print) {
954 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000955 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000956 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000957 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000958 write1("$\r");
959 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000960 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000961 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000962 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000963 else
964 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000965 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000966 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000967 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000968 standout_end();
969 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000970 Hit_Return();
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200971 } else if (strncmp(cmd, "quit", i) == 0 // quit
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200972 || strncmp(cmd, "next", i) == 0 // edit next file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000973 ) {
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700974 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000975 if (useforce) {
976 // force end of argv list
977 if (*cmd == 'q') {
978 optind = save_argc;
979 }
980 editing = 0;
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200981 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000982 }
983 // don't exit if the file been modified
984 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000985 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000986 (*cmd == 'q' ? "quit" : "next"));
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200987 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000988 }
989 // are there other file to edit
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700990 n = save_argc - optind - 1;
991 if (*cmd == 'q' && n > 0) {
992 status_line_bold("%d more file(s) to edit", n);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200993 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000994 }
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700995 if (*cmd == 'n' && n <= 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000996 status_line_bold("No more files to edit");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200997 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000998 }
999 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001000 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001001 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001002 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001003 status_line_bold("No filename given");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001004 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001005 }
1006 if (b < 0) { // no addr given- use defaults
1007 q = begin_line(dot); // assume "dot"
1008 }
1009 // read after current line- unless user said ":0r foo"
1010 if (b != 0)
1011 q = next_line(q);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001012 { // dance around potentially-reallocated text[]
1013 uintptr_t ofs = q - text;
1014 ch = file_insert(fn, q, 0);
1015 q = text + ofs;
1016 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001017 if (ch < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001018 goto ret; // nothing was inserted
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001019 // how many lines in text[]?
1020 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001021 status_line("\"%s\""
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001022 IF_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001023 " %dL, %dC", fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001024 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001025 li, ch);
1026 if (ch > 0) {
1027 // if the insert is before "dot" then we need to update
1028 if (q <= dot)
1029 dot += ch;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001030 /*file_modified++; - done by file_insert */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001031 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001032 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001033 if (file_modified && !useforce) {
1034 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001035 } else {
1036 // reset the filenames to edit
1037 optind = fn_start - 1;
1038 editing = 0;
1039 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001040#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001041 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001042#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001043 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001044#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001045 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001046 // only blank is regarded as args delmiter. What about tab '\t' ?
1047 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001048 // print out values of all options
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001049#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001050 status_line_bold(
1051 "%sautoindent "
1052 "%sflash "
1053 "%signorecase "
1054 "%sshowmatch "
1055 "tabstop=%u",
1056 autoindent ? "" : "no",
1057 err_method ? "" : "no",
1058 ignorecase ? "" : "no",
1059 showmatch ? "" : "no",
1060 tabstop
1061 );
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001062#endif
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001063 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001064 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001065#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001066 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001067 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001068 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001069 i = 2; // ":set noautoindent"
1070 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001071 setops(argp, "flash " , i, "fl", VI_ERR_METHOD);
Denis Vlasenkof9234132007-03-21 00:03:42 +00001072 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001073 setops(argp, "showmatch " , i, "sm", VI_SHOWMATCH );
1074 if (strncmp(argp + i, "tabstop=", 8) == 0) {
1075 int t = 0;
1076 sscanf(argp + i+8, "%u", &t);
1077 if (t > 0 && t <= MAX_TABSTOP)
1078 tabstop = t;
Denis Vlasenkof9234132007-03-21 00:03:42 +00001079 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001080 argp = skip_non_whitespace(argp);
1081 argp = skip_whitespace(argp);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001082 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001083#endif /* FEATURE_VI_SETOPTS */
1084#endif /* FEATURE_VI_SET */
1085#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001086 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001087 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001088 int gflag;
1089
1090 // F points to the "find" pattern
1091 // R points to the "replace" pattern
1092 // replace the cmd line delimiters "/" with NULLs
1093 gflag = 0; // global replace flag
1094 c = orig_buf[1]; // what is the delimiter
1095 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001096 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001097 if (!R)
1098 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001099 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001100 buf1 = strchr(R, c);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001101 if (!buf1)
1102 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001103 *buf1++ = '\0'; // terminate "replace"
1104 if (*buf1 == 'g') { // :s/foo/bar/g
1105 buf1++;
1106 gflag++; // turn on gflag
1107 }
1108 q = begin_line(q);
1109 if (b < 0) { // maybe :s/foo/bar/
1110 q = begin_line(dot); // start with cur line
1111 b = count_lines(text, q); // cur line number
1112 }
1113 if (e < 0)
1114 e = b; // maybe :.s/foo/bar/
1115 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1116 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001117 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001118 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001119 if (buf1) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001120 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001121 // we found the "find" pattern - delete it
1122 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001123 // inset the "replace" patern
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001124 bias = string_insert(buf1, R); // insert the string
1125 buf1 += bias;
1126 ls += bias;
1127 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001128 // check for "global" :s/foo/bar/g
1129 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001130 if ((buf1 + strlen(R)) < end_line(ls)) {
1131 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001132 goto vc4; // don't let q move past cur line
1133 }
1134 }
1135 }
1136 q = next_line(ls);
1137 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001138#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001139 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001140 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001141 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1142 || strncmp(cmd, "wq", i) == 0
1143 || strncmp(cmd, "wn", i) == 0
1144 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001145 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001146 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001147 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001148 fn = args;
1149 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001150#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001151 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001152 status_line_bold("\"%s\" File is read only", fn);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001153 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001154 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001155#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001156 // how many lines in text[]?
1157 li = count_lines(q, r);
1158 ch = r - q + 1;
1159 // see if file exists- if not, its just a new file request
1160 if (useforce) {
1161 // if "fn" is not write-able, chmod u+w
1162 // sprintf(syscmd, "chmod u+w %s", fn);
1163 // system(syscmd);
1164 forced = TRUE;
1165 }
1166 l = file_write(fn, q, r);
1167 if (useforce && forced) {
1168 // chmod u-w
1169 // sprintf(syscmd, "chmod u-w %s", fn);
1170 // system(syscmd);
1171 forced = FALSE;
1172 }
Paul Fox61e45db2005-10-09 14:43:22 +00001173 if (l < 0) {
1174 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001175 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001176 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001177 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001178 if (q == text && r == end - 1 && l == ch) {
1179 file_modified = 0;
1180 last_file_modified = -1;
1181 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001182 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n'
1183 || cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N'
1184 )
1185 && l == ch
1186 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00001187 editing = 0;
1188 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001189 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001190#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001191 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001192 if (b < 0) { // no addr given- use defaults
1193 q = begin_line(dot); // assume .,. for the range
1194 r = end_line(dot);
1195 }
1196 text_yank(q, r, YDreg);
1197 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001198 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001199 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001200#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001201 } else {
1202 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001203 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001204 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001205 ret:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001206 dot = bound_dot(dot); // make sure "dot" is valid
1207 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001208#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001209 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001210 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001211#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001212}
Paul Fox61e45db2005-10-09 14:43:22 +00001213
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001214#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001215
1216static void Hit_Return(void)
1217{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001218 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001219
Denis Vlasenkof882f082007-12-23 02:36:51 +00001220 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001221 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001222 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001223 while ((c = get_one_char()) != '\n' && c != '\r')
1224 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001225 redraw(TRUE); // force redraw all
1226}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001227
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001228static int next_tabstop(int col)
1229{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001230 return col + ((tabstop - 1) - (col % tabstop));
1231}
1232
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001233//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001234static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001235{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001236 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001237 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001238 int cnt, ro, co;
1239
1240 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001241
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001242 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001243 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001244 // how many lines do we have to move
1245 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001246 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001247 screenbegin = beg_cur;
1248 if (cnt > (rows - 1) / 2) {
1249 // we moved too many lines. put "dot" in middle of screen
1250 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1251 screenbegin = prev_line(screenbegin);
1252 }
1253 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001254 } else {
1255 char *end_scr; // begin and end of screen
1256 end_scr = end_screen(); // last char of screen
1257 if (beg_cur > end_scr) {
1258 // "d" is after bottom line on screen
1259 // how many lines do we have to move
1260 cnt = count_lines(end_scr, beg_cur);
1261 if (cnt > (rows - 1) / 2)
1262 goto sc1; // too many lines
1263 for (ro = 0; ro < cnt - 1; ro++) {
1264 // move screen begin the same amount
1265 screenbegin = next_line(screenbegin);
1266 // now, move the end of screen
1267 end_scr = next_line(end_scr);
1268 end_scr = end_line(end_scr);
1269 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001270 }
1271 }
1272 // "d" is on screen- find out which row
1273 tp = screenbegin;
1274 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1275 if (tp == beg_cur)
1276 break;
1277 tp = next_line(tp);
1278 }
1279
1280 // find out what col "d" is on
1281 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001282 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001283 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001284 break;
1285 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001286 // handle tabs like real vi
1287 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001288 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001289 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001290 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001291 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1292 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001293 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001294 co++;
1295 tp++;
1296 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001297
1298 // "co" is the column where "dot" is.
1299 // The screen has "columns" columns.
1300 // The currently displayed columns are 0+offset -- columns+ofset
1301 // |-------------------------------------------------------------|
1302 // ^ ^ ^
1303 // offset | |------- columns ----------------|
1304 //
1305 // If "co" is already in this range then we do not have to adjust offset
1306 // but, we do have to subtract the "offset" bias from "co".
1307 // If "co" is outside this range then we have to change "offset".
1308 // If the first char of a line is a tab the cursor will try to stay
1309 // in column 7, but we have to set offset to 0.
1310
1311 if (co < 0 + offset) {
1312 offset = co;
1313 }
1314 if (co >= columns + offset) {
1315 offset = co - columns + 1;
1316 }
1317 // if the first char of the line is a tab, and "dot" is sitting on it
1318 // force offset to 0.
1319 if (d == beg_cur && *d == '\t') {
1320 offset = 0;
1321 }
1322 co -= offset;
1323
1324 *row = ro;
1325 *col = co;
1326}
1327
1328//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001329static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001330{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001331 if (p > text) {
1332 p = memrchr(text, '\n', p - text);
1333 if (!p)
1334 return text;
1335 return p + 1;
1336 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001337 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001338}
1339
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001340static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001341{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001342 if (p < end - 1) {
1343 p = memchr(p, '\n', end - p - 1);
1344 if (!p)
1345 return end - 1;
1346 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001347 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001348}
1349
Denis Vlasenkof882f082007-12-23 02:36:51 +00001350static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001351{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001352 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001353 // Try to stay off of the Newline
1354 if (*p == '\n' && (p - begin_line(p)) > 0)
1355 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001356 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001357}
1358
Denis Vlasenkof882f082007-12-23 02:36:51 +00001359static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001360{
1361 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001362 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001363 p--; // step to prev line
1364 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001365 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001366}
1367
Denis Vlasenkof882f082007-12-23 02:36:51 +00001368static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001369{
1370 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001371 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001372 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001373 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001374}
1375
1376//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001377static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001378{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001379 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001380 int cnt;
1381
1382 // find new bottom line
1383 q = screenbegin;
1384 for (cnt = 0; cnt < rows - 2; cnt++)
1385 q = next_line(q);
1386 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001387 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001388}
1389
Denis Vlasenkof882f082007-12-23 02:36:51 +00001390// count line from start to stop
1391static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001392{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001393 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001394 int cnt;
1395
Denis Vlasenkof882f082007-12-23 02:36:51 +00001396 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001397 q = start;
1398 start = stop;
1399 stop = q;
1400 }
1401 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001402 stop = end_line(stop);
1403 while (start <= stop && start <= end - 1) {
1404 start = end_line(start);
1405 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001406 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001407 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001408 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001409 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001410}
1411
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001412static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001413{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001414 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001415
1416 for (q = text; li > 1; li--) {
1417 q = next_line(q);
1418 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001419 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001420}
1421
1422//----- Dot Movement Routines ----------------------------------
1423static void dot_left(void)
1424{
1425 if (dot > text && dot[-1] != '\n')
1426 dot--;
1427}
1428
1429static void dot_right(void)
1430{
1431 if (dot < end - 1 && *dot != '\n')
1432 dot++;
1433}
1434
1435static void dot_begin(void)
1436{
1437 dot = begin_line(dot); // return pointer to first char cur line
1438}
1439
1440static void dot_end(void)
1441{
1442 dot = end_line(dot); // return pointer to last char cur line
1443}
1444
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001445static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001446{
1447 int co;
1448
1449 p = begin_line(p);
1450 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001451 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001452 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001453 break;
1454 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001455 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001456 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001457 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001458 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001459 co++;
1460 p++;
1461 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001462 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001463}
1464
1465static void dot_next(void)
1466{
1467 dot = next_line(dot);
1468}
1469
1470static void dot_prev(void)
1471{
1472 dot = prev_line(dot);
1473}
1474
1475static void dot_scroll(int cnt, int dir)
1476{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001477 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001478
1479 for (; cnt > 0; cnt--) {
1480 if (dir < 0) {
1481 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001482 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001483 screenbegin = prev_line(screenbegin);
1484 } else {
1485 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001486 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001487 screenbegin = next_line(screenbegin);
1488 }
1489 }
1490 // make sure "dot" stays on the screen so we dont scroll off
1491 if (dot < screenbegin)
1492 dot = screenbegin;
1493 q = end_screen(); // find new bottom line
1494 if (dot > q)
1495 dot = begin_line(q); // is dot is below bottom line?
1496 dot_skip_over_ws();
1497}
1498
1499static void dot_skip_over_ws(void)
1500{
1501 // skip WS
1502 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1503 dot++;
1504}
1505
1506static void dot_delete(void) // delete the char at 'dot'
1507{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001508 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001509}
1510
Denis Vlasenkof882f082007-12-23 02:36:51 +00001511static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001512{
1513 if (p >= end && end > text) {
1514 p = end - 1;
1515 indicate_error('1');
1516 }
1517 if (p < text) {
1518 p = text;
1519 indicate_error('2');
1520 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001521 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001522}
1523
1524//----- Helper Utility Routines --------------------------------
1525
1526//----------------------------------------------------------------
1527//----- Char Routines --------------------------------------------
1528/* Chars that are part of a word-
1529 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1530 * Chars that are Not part of a word (stoppers)
1531 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1532 * Chars that are WhiteSpace
1533 * TAB NEWLINE VT FF RETURN SPACE
1534 * DO NOT COUNT NEWLINE AS WHITESPACE
1535 */
1536
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001537static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001538{
1539 int li;
1540
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001541 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001542 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001543 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001544 // initialize the new screen. assume this will be a empty file.
1545 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001546 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001547 for (li = 1; li < ro - 1; li++) {
1548 screen[(li * co) + 0] = '~';
1549 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001550 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551}
1552
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001553#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001554static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001555{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001556 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001557 return strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001558 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001559 return strncmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001560}
1561
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001562// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001563static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001564{
1565#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001566 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001567 int len;
1568
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001569 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001570 if (dir == FORWARD) {
1571 stop = end - 1; // assume range is p - end-1
1572 if (range == LIMITED)
1573 stop = next_line(p); // range is to next line
1574 for (start = p; start < stop; start++) {
1575 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001576 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001577 }
1578 }
1579 } else if (dir == BACK) {
1580 stop = text; // assume range is text - p
1581 if (range == LIMITED)
1582 stop = prev_line(p); // range is to prev line
1583 for (start = p - len; start >= stop; start--) {
1584 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001585 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001586 }
1587 }
1588 }
1589 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001590 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001591#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001592 char *q;
1593 struct re_pattern_buffer preg;
1594 int i;
1595 int size, range;
1596
1597 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1598 preg.translate = 0;
1599 preg.fastmap = 0;
1600 preg.buffer = 0;
1601 preg.allocated = 0;
1602
1603 // assume a LIMITED forward search
1604 q = next_line(p);
1605 q = end_line(q);
1606 q = end - 1;
1607 if (dir == BACK) {
1608 q = prev_line(p);
1609 q = text;
1610 }
1611 // count the number of chars to search over, forward or backward
1612 size = q - p;
1613 if (size < 0)
1614 size = p - q;
1615 // RANGE could be negative if we are searching backwards
1616 range = q - p;
1617
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001618 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001619 if (q != 0) {
1620 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001621 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001622 i = 0; // return p if pattern not compiled
1623 goto cs1;
1624 }
1625
1626 q = p;
1627 if (range < 0) {
1628 q = p - size;
1629 if (q < text)
1630 q = text;
1631 }
1632 // search for the compiled pattern, preg, in p[]
1633 // range < 0- search backward
1634 // range > 0- search forward
1635 // 0 < start < size
1636 // re_search() < 0 not found or error
1637 // re_search() > 0 index of found pattern
1638 // struct pattern char int int int struct reg
1639 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1640 i = re_search(&preg, q, size, 0, range, 0);
1641 if (i == -1) {
1642 p = 0;
1643 i = 0; // return NULL if pattern not found
1644 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001645 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001646 if (dir == FORWARD) {
1647 p = p + i;
1648 } else {
1649 p = p - i;
1650 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001651 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001652#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001653}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001654#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001655
Denis Vlasenko33875382008-06-21 20:31:50 +00001656static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001657{
1658 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001659 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001660 refresh(FALSE); // show the ^
1661 c = get_one_char();
1662 *p = c;
1663 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001664 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001665 } else if (c == 27) { // Is this an ESC?
1666 cmd_mode = 0;
1667 cmdcnt = 0;
1668 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001669 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001670 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001671 p--;
1672 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001673 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001674 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001675 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001676 p--;
1677 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001678 }
1679 } else {
1680 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001681 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001682
1683 if (c == 13)
1684 c = '\n'; // translate \r to \n
1685 sp = p; // remember addr of insert
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001686 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001687#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001688 if (showmatch && strchr(")]}", *sp) != NULL) {
1689 showmatching(sp);
1690 }
1691 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001692 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001693 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001694 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00001695 len = strspn(q, " \t"); // space or tab
1696 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001697 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001698 bias = text_hole_make(p, len);
1699 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001700 q += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001701 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001702 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001703 }
1704 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001705#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001706 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001707 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001708}
1709
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001710// might reallocate text[]! use p += stupid_insert(p, ...),
1711// and be careful to not use pointers into potentially freed text[]!
1712static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001713{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001714 uintptr_t bias;
1715 bias = text_hole_make(p, 1);
1716 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001717 *p = c;
1718 //file_modified++; - done by text_hole_make()
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001719 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001720}
1721
Denis Vlasenko33875382008-06-21 20:31:50 +00001722static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001723{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001724 char *save_dot, *p, *q, *t;
1725 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001726
1727 save_dot = dot;
1728 p = q = dot;
1729
1730 if (strchr("cdy><", c)) {
1731 // these cmds operate on whole lines
1732 p = q = begin_line(p);
1733 for (cnt = 1; cnt < cmdcnt; cnt++) {
1734 q = next_line(q);
1735 }
1736 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001737 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001738 // These cmds operate on char positions
1739 do_cmd(c); // execute movement cmd
1740 q = dot;
1741 } else if (strchr("wW", c)) {
1742 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001743 // if we are at the next word's first char
1744 // step back one char
1745 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001746 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001747 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1748 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1749 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001750 if (dot > text && *dot == '\n')
1751 dot--; // stay off NL
1752 q = dot;
1753 } else if (strchr("H-k{", c)) {
1754 // these operate on multi-lines backwards
1755 q = end_line(dot); // find NL
1756 do_cmd(c); // execute movement cmd
1757 dot_begin();
1758 p = dot;
1759 } else if (strchr("L+j}\r\n", c)) {
1760 // these operate on multi-lines forwards
1761 p = begin_line(dot);
1762 do_cmd(c); // execute movement cmd
1763 dot_end(); // find NL
1764 q = dot;
1765 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001766 // nothing -- this causes any other values of c to
1767 // represent the one-character range under the
1768 // cursor. this is correct for ' ' and 'l', but
1769 // perhaps no others.
1770 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001772 if (q < p) {
1773 t = q;
1774 q = p;
1775 p = t;
1776 }
1777
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001778 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001779 if (q > p && strchr("^0bBh\b\177", c)) q--;
1780
1781 multiline = 0;
1782 for (t = p; t <= q; t++) {
1783 if (*t == '\n') {
1784 multiline = 1;
1785 break;
1786 }
1787 }
1788
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001789 *start = p;
1790 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001791 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001792 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001793}
1794
Denis Vlasenko33875382008-06-21 20:31:50 +00001795static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001796{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001797 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001798 int test, inc;
1799
1800 inc = dir;
1801 c = c0 = p[0];
1802 ci = p[inc];
1803 test = 0;
1804
1805 if (type == S_BEFORE_WS) {
1806 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001807 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001808 }
1809 if (type == S_TO_WS) {
1810 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001811 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001812 }
1813 if (type == S_OVER_WS) {
1814 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001815 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001816 }
1817 if (type == S_END_PUNCT) {
1818 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001819 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001820 }
1821 if (type == S_END_ALNUM) {
1822 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001823 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001824 }
1825 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001826 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001827}
1828
Denis Vlasenko33875382008-06-21 20:31:50 +00001829static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001830{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001831 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001832
1833 while (st_test(p, type, dir, &c)) {
1834 // make sure we limit search to correct number of lines
1835 if (c == '\n' && --linecnt < 1)
1836 break;
1837 if (dir >= 0 && p >= end - 1)
1838 break;
1839 if (dir < 0 && p <= text)
1840 break;
1841 p += dir; // move to next char
1842 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001843 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001844}
1845
1846// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001847static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001848{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001849 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001850 int dir, level;
1851
1852 match = ')';
1853 level = 1;
1854 dir = 1; // assume forward
1855 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001856 case '(': match = ')'; break;
1857 case '[': match = ']'; break;
1858 case '{': match = '}'; break;
1859 case ')': match = '('; dir = -1; break;
1860 case ']': match = '['; dir = -1; break;
1861 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001862 }
1863 for (q = p + dir; text <= q && q < end; q += dir) {
1864 // look for match, count levels of pairs (( ))
1865 if (*q == c)
1866 level++; // increase pair levels
1867 if (*q == match)
1868 level--; // reduce pair level
1869 if (level == 0)
1870 break; // found matching pair
1871 }
1872 if (level != 0)
1873 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001874 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001875}
1876
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001877#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001878// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001879static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001880{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001881 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001882
1883 // we found half of a pair
1884 q = find_pair(p, *p); // get loc of matching char
1885 if (q == NULL) {
1886 indicate_error('3'); // no matching char
1887 } else {
1888 // "q" now points to matching pair
1889 save_dot = dot; // remember where we are
1890 dot = q; // go to new loc
1891 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001892 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001893 dot = save_dot; // go back to old loc
1894 refresh(FALSE);
1895 }
1896}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001897#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001898
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001899// open a hole in text[]
1900// might reallocate text[]! use p += text_hole_make(p, ...),
1901// and be careful to not use pointers into potentially freed text[]!
1902static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001903{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001904 uintptr_t bias = 0;
1905
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001906 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001907 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001908 end += size; // adjust the new END
1909 if (end >= (text + text_size)) {
1910 char *new_text;
1911 text_size += end - (text + text_size) + 10240;
1912 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001913 bias = (new_text - text);
1914 screenbegin += bias;
1915 dot += bias;
1916 end += bias;
1917 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001918 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001919 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001920 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001921 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001922 file_modified++;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001923 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001924}
1925
1926// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001927static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001928{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001929 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001930 int cnt, hole_size;
1931
1932 // move forwards, from beginning
1933 // assume p <= q
1934 src = q + 1;
1935 dest = p;
1936 if (q < p) { // they are backward- swap them
1937 src = p + 1;
1938 dest = q;
1939 }
1940 hole_size = q - p + 1;
1941 cnt = end - src;
1942 if (src < text || src > end)
1943 goto thd0;
1944 if (dest < text || dest >= end)
1945 goto thd0;
1946 if (src >= end)
1947 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001948 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001949 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001950 end = end - hole_size; // adjust the new END
1951 if (dest >= end)
1952 dest = end - 1; // make sure dest in below end-1
1953 if (end <= text)
1954 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001955 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001956 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001957 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001958}
1959
1960// copy text into register, then delete text.
1961// if dist <= 0, do not include, or go past, a NewLine
1962//
Denis Vlasenko33875382008-06-21 20:31:50 +00001963static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001964{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001965 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001966
1967 // make sure start <= stop
1968 if (start > stop) {
1969 // they are backwards, reverse them
1970 p = start;
1971 start = stop;
1972 stop = p;
1973 }
1974 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001975 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001976 p = start;
1977 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001978 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001979 // dont go past a NewLine
1980 for (; p + 1 <= stop; p++) {
1981 if (p[1] == '\n') {
1982 stop = p; // "stop" just before NewLine
1983 break;
1984 }
1985 }
1986 }
1987 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001988#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001989 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001990#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001991 if (yf == YANKDEL) {
1992 p = text_hole_delete(start, stop);
1993 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001994 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001995}
1996
1997static void show_help(void)
1998{
1999 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002000#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002001 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002002#endif
2003#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002004 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002005#endif
2006#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00002007 "\n\tLine marking with 'x"
2008 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002009#endif
2010#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002011 "\n\tReadonly if vi is called as \"view\""
2012 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002013#endif
2014#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002015 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002016#endif
2017#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002018 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002019#endif
2020#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002021 "\n\tSignal catching- ^C"
2022 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002023#endif
2024#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002025 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002026#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002027 );
2028}
2029
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002030#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002031static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002032{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002033 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002034 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002035 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002036 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002037 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002038 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002039 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002040 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002041 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002042}
2043
2044static void end_cmd_q(void)
2045{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002046#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002047 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002048#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002049 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002050}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002051#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002052
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002053#if ENABLE_FEATURE_VI_YANKMARK \
2054 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2055 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002056// might reallocate text[]! use p += string_insert(p, ...),
2057// and be careful to not use pointers into potentially freed text[]!
2058static uintptr_t string_insert(char *p, const char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002059{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002060 uintptr_t bias;
2061 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002062
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002063 i = strlen(s);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002064 bias = text_hole_make(p, i);
2065 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002066 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002067#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002068 {
2069 int cnt;
2070 for (cnt = 0; *s != '\0'; s++) {
2071 if (*s == '\n')
2072 cnt++;
2073 }
2074 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2075 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002076#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002077 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002078}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002079#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002080
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002081#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002082static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002083{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002084 int cnt = q - p;
2085 if (cnt < 0) { // they are backwards- reverse them
2086 p = q;
2087 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002088 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002089 free(reg[dest]); // if already a yank register, free it
2090 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002091 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002092}
2093
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002094static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002095{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002096 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002097
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002098 c = 'D'; // default to D-reg
2099 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002100 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002101 if (YDreg == 26)
2102 c = 'D';
2103 if (YDreg == 27)
2104 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002105 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002106}
2107
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002108static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002109{
2110 // A context is defined to be "modifying text"
2111 // Any modifying command establishes a new context.
2112
2113 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002114 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002115 // we are trying to modify text[]- make this the current context
2116 mark[27] = mark[26]; // move cur to prev
2117 mark[26] = dot; // move local to cur
2118 context_start = prev_line(prev_line(dot));
2119 context_end = next_line(next_line(dot));
2120 //loiter= start_loiter= now;
2121 }
2122 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002123}
2124
Denis Vlasenkof882f082007-12-23 02:36:51 +00002125static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002126{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002127 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002128
2129 // the current context is in mark[26]
2130 // the previous context is in mark[27]
2131 // only swap context if other context is valid
2132 if (text <= mark[27] && mark[27] <= end - 1) {
2133 tmp = mark[27];
2134 mark[27] = mark[26];
2135 mark[26] = tmp;
2136 p = mark[26]; // where we are going- previous context
2137 context_start = prev_line(prev_line(prev_line(p)));
2138 context_end = next_line(next_line(next_line(p)));
2139 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002140 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002141}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002142#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002143
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002144//----- Set terminal attributes --------------------------------
2145static void rawmode(void)
2146{
2147 tcgetattr(0, &term_orig);
2148 term_vi = term_orig;
2149 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2150 term_vi.c_iflag &= (~IXON & ~ICRNL);
2151 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002152 term_vi.c_cc[VMIN] = 1;
2153 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002154 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002155 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002156}
2157
2158static void cookmode(void)
2159{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002160 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002161 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002162}
2163
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002164#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002165//----- Come here when we get a window resize signal ---------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002166static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002167{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002168 int save_errno = errno;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002169 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002170 signal(SIGWINCH, winch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002171 query_screen_dimensions();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002172 new_screen(rows, columns); // get memory for virtual screen
2173 redraw(TRUE); // re-draw the screen
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002174 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002175}
2176
2177//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002178static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002179{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002180 int save_errno = errno;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002181 rawmode(); // terminal to "raw"
2182 last_status_cksum = 0; // force status update
2183 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002184
2185 signal(SIGTSTP, suspend_sig);
2186 signal(SIGCONT, SIG_DFL);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002187 //kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
2188 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002189}
2190
2191//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002192static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002193{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002194 int save_errno = errno;
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002195 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002196 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002197
2198 signal(SIGCONT, cont_sig);
2199 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002200 kill(my_pid, SIGTSTP);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002201 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002202}
2203
2204//----- Come here when we get a signal ---------------------------
2205static void catch_sig(int sig)
2206{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002207 signal(SIGINT, catch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002208 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002209}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002210#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002211
Denys Vlasenko606291b2009-09-23 23:15:43 +02002212static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002213{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002214 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002215
Denys Vlasenko606291b2009-09-23 23:15:43 +02002216 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002217 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002218 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002219}
2220
2221//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002222static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002223{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002224 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002225
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002226 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002227 c = read_key(STDIN_FILENO, readbuffer, /*timeout off:*/ -2);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002228 if (c == -1) { // EOF/error
2229 go_bottom_and_clear_to_eol();
2230 cookmode(); // terminal to "cooked"
2231 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002232 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002233 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002234}
2235
2236//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002237static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002238{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002239 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002240
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002241#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002242 if (!adding2q) {
2243 // we are not adding to the q.
2244 // but, we may be reading from a q
2245 if (ioq == 0) {
2246 // there is no current q, read from STDIN
2247 c = readit(); // get the users input
2248 } else {
2249 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002250 // careful with correct sign expansion!
2251 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002252 if (c == '\0') {
2253 // the end of the q, read from STDIN
2254 free(ioq_start);
2255 ioq_start = ioq = 0;
2256 c = readit(); // get the users input
2257 }
2258 }
2259 } else {
2260 // adding STDIN chars to q
2261 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002262 if (lmc_len >= MAX_INPUT_LEN - 1) {
2263 status_line_bold("last_modifying_cmd overrun");
2264 } else {
2265 // add new char to q
2266 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002267 }
2268 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002269#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002270 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002271#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002272 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002273}
2274
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002275// Get input line (uses "status line" area)
2276static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002277{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002278 // char [MAX_INPUT_LEN]
2279#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002280
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002281 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002282 int i;
2283
2284 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002285 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002286 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002287 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002288
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002289 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002290 while (i < MAX_INPUT_LEN) {
2291 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002292 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002293 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002294 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002295 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002296 buf[--i] = '\0';
2297 write1("\b \b"); // erase char on screen
2298 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002299 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002300 } else if (c > 0 && c < 256) { // exclude Unicode
2301 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002302 buf[i] = c;
2303 buf[++i] = '\0';
2304 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002305 }
2306 }
2307 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002308 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002309#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002310}
2311
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002312static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002313{
2314 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002315 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002316
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002317 cnt = -1;
Denys Vlasenkodef47832010-04-18 20:39:41 -07002318 if (fn && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002319 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002320 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002321}
2322
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002323// might reallocate text[]!
2324static int file_insert(const char *fn, char *p, int update_ro_status)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002325{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002326 int cnt = -1;
2327 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002328 struct stat statbuf;
2329
2330 /* Validate file */
2331 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002332 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002333 goto fi0;
2334 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002335 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002336 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002337 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002338 goto fi0;
2339 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002340 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002341 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002342 goto fi0;
2343 }
2344
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002345 // read file to buffer
2346 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002347 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002348 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002349 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002350 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002351 size = statbuf.st_size;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002352 p += text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002353 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002354 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002355 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002356 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002357 } else if (cnt < size) {
2358 // There was a partial read, shrink unused space text[]
2359 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denys Vlasenko6331cf02009-11-13 09:08:27 +01002360 status_line_bold("can't read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002361 }
2362 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002363 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002364 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002365 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002366#if ENABLE_FEATURE_VI_READONLY
2367 if (update_ro_status
2368 && ((access(fn, W_OK) < 0) ||
2369 /* root will always have access()
2370 * so we check fileperms too */
2371 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2372 )
2373 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002374 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002375 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002376#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002377 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002378}
2379
Denis Vlasenko33875382008-06-21 20:31:50 +00002380static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002381{
2382 int fd, cnt, charcnt;
2383
2384 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002385 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002386 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002387 }
2388 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002389 /* By popular request we do not open file with O_TRUNC,
2390 * but instead ftruncate() it _after_ successful write.
2391 * Might reduce amount of data lost on power fail etc.
2392 */
2393 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002394 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002395 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002396 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002397 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002398 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002399 if (charcnt == cnt) {
2400 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002401 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002402 } else {
2403 charcnt = 0;
2404 }
2405 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002406 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002407}
2408
2409//----- Terminal Drawing ---------------------------------------
2410// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002411// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002412// screen coordinates
2413// 0,0 ... 0,79
2414// 1,0 ... 1,79
2415// . ... .
2416// . ... .
2417// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002418// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002419
2420//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002421static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002422{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002423 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002424#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2425 enum {
2426 SZ_UP = sizeof(CMup),
2427 SZ_DN = sizeof(CMdown),
2428 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2429 };
2430 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2431#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002432 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002433
2434 if (row < 0) row = 0;
2435 if (row >= rows) row = rows - 1;
2436 if (col < 0) col = 0;
2437 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002438
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002439 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002440 sprintf(cm1, CMrc, row + 1, col + 1);
2441 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002442
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002443#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002444 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002445 char *screenp;
2446 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002447 int diff = Rrow - row;
2448
2449 if (diff < -5 || diff > 5)
2450 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002451
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002452 //----- find the minimum # of chars to move cursor -------------
2453 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2454 cm2[0] = '\0';
2455
2456 // move to the correct row
2457 while (row < Rrow) {
2458 // the cursor has to move up
2459 strcat(cm2, CMup);
2460 Rrow--;
2461 }
2462 while (row > Rrow) {
2463 // the cursor has to move down
2464 strcat(cm2, CMdown);
2465 Rrow++;
2466 }
2467
2468 // now move to the correct column
2469 strcat(cm2, "\r"); // start at col 0
2470 // just send out orignal source char to get to correct place
2471 screenp = &screen[row * columns]; // start of screen line
2472 strncat(cm2, screenp, col);
2473
2474 // pick the shortest cursor motion to send out
2475 if (strlen(cm2) < strlen(cm)) {
2476 cm = cm2;
2477 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002478 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002479 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002480 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002481#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002482 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002483}
2484
2485//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002486static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002487{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002488 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002489}
2490
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002491static void go_bottom_and_clear_to_eol(void)
2492{
2493 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2494 clear_to_eol(); // erase to end of line
2495}
2496
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002497//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002498static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002499{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002500 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002501}
2502
2503//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002504static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002505{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002506 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002507}
2508
2509//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002510static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002511{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002512 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002513}
2514
2515//----- Flash the screen --------------------------------------
2516static void flash(int h)
2517{
2518 standout_start(); // send "start reverse video" sequence
2519 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002520 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002521 standout_end(); // send "end reverse video" sequence
2522 redraw(TRUE);
2523}
2524
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002525static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002526{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002527#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002528 if (crashme > 0)
2529 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002530#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002531 if (!err_method) {
2532 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002533 } else {
2534 flash(10);
2535 }
2536}
2537
2538//----- Screen[] Routines --------------------------------------
2539//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002540static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002541{
2542 memset(screen, ' ', screensize); // clear new screen
2543}
2544
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002545static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002546{
2547 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002548 char *e = buf + count;
2549
Paul Fox8552aec2005-09-16 12:20:05 +00002550 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002551 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002552 return sum;
2553}
2554
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002555//----- Draw the status line at bottom of the screen -------------
2556static void show_status_line(void)
2557{
Paul Foxc3504852005-09-16 12:48:18 +00002558 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002559
Paul Fox8552aec2005-09-16 12:20:05 +00002560 // either we already have an error or status message, or we
2561 // create one.
2562 if (!have_status_msg) {
2563 cnt = format_edit_status();
2564 cksum = bufsum(status_buffer, cnt);
2565 }
2566 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002567 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002568 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002569 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00002570 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002571 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002572 (columns - 1) ) {
2573 have_status_msg = 0;
2574 Hit_Return();
2575 }
2576 have_status_msg = 0;
2577 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002578 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2579 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002580 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002581}
2582
2583//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002584// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002585static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002586{
2587 va_list args;
2588
2589 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002590 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002591 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002592 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002593 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002594
2595 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002596}
2597
Paul Fox8552aec2005-09-16 12:20:05 +00002598// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002599static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002600{
2601 va_list args;
2602
2603 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002604 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002605 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002606
2607 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002608}
2609
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002610// copy s to buf, convert unprintable
2611static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002612{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002613 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002614 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002615
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002616 buf[0] = '\0';
2617 if (!s[0])
2618 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002619
2620 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002621 for (; *s; s++) {
2622 int c_is_no_print;
2623
2624 c = *s;
2625 c_is_no_print = (c & 0x80) && !Isprint(c);
2626 if (c_is_no_print) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002627 strcpy(d, SOn);
2628 d += sizeof(SOn)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002629 c = '.';
2630 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002631 if (c < ' ' || c == 0x7f) {
2632 *d++ = '^';
2633 c |= '@'; /* 0x40 */
2634 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002635 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002636 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002637 *d++ = c;
2638 *d = '\0';
2639 if (c_is_no_print) {
2640 strcpy(d, SOs);
2641 d += sizeof(SOs)-1;
2642 }
2643 if (*s == '\n') {
2644 *d++ = '$';
2645 *d = '\0';
2646 }
2647 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002648 break;
2649 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002650}
2651
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002652static void not_implemented(const char *s)
2653{
2654 char buf[MAX_INPUT_LEN];
2655
2656 print_literal(buf, s);
2657 status_line_bold("\'%s\' is not implemented", buf);
2658}
2659
2660// show file status on status line
2661static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002662{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002663 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002664
2665#define tot format_edit_status__tot
2666
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002667 int cur, percent, ret, trunc_at;
2668
Paul Fox8552aec2005-09-16 12:20:05 +00002669 // file_modified is now a counter rather than a flag. this
2670 // helps reduce the amount of line counting we need to do.
2671 // (this will cause a mis-reporting of modified status
2672 // once every MAXINT editing operations.)
2673
2674 // it would be nice to do a similar optimization here -- if
2675 // we haven't done a motion that could have changed which line
2676 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002677 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002678
2679 // reduce counting -- the total lines can't have
2680 // changed if we haven't done any edits.
2681 if (file_modified != last_file_modified) {
2682 tot = cur + count_lines(dot, end - 1) - 1;
2683 last_file_modified = file_modified;
2684 }
2685
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002686 // current line percent
2687 // ------------- ~~ ----------
2688 // total lines 100
2689 if (tot > 0) {
2690 percent = (100 * cur) / tot;
2691 } else {
2692 cur = tot = 0;
2693 percent = 100;
2694 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002695
Paul Fox8552aec2005-09-16 12:20:05 +00002696 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2697 columns : STATUS_BUFFER_LEN-1;
2698
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002699 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002700#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002701 "%c %s%s%s %d/%d %d%%",
2702#else
2703 "%c %s%s %d/%d %d%%",
2704#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002705 cmd_mode_indicator[cmd_mode & 3],
2706 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002707#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002708 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002709#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002710 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002711 cur, tot, percent);
2712
2713 if (ret >= 0 && ret < trunc_at)
2714 return ret; /* it all fit */
2715
2716 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002717#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002718}
2719
2720//----- Force refresh of all Lines -----------------------------
2721static void redraw(int full_screen)
2722{
2723 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002724 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002725 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002726 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002727 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002728 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002729}
2730
2731//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002732static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002733{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002734 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002735 int co;
2736 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002737 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002738
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002739 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002740 co = 0;
2741 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002742 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002743 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002744 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002745 if (c == '\n')
2746 break;
2747 if ((c & 0x80) && !Isprint(c)) {
2748 c = '.';
2749 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002750 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002751 if (c == '\t') {
2752 c = ' ';
2753 // co % 8 != 7
2754 while ((co % tabstop) != (tabstop - 1)) {
2755 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002756 }
2757 } else {
2758 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002759 if (c == 0x7f)
2760 c = '?';
2761 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002762 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002763 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002764 }
2765 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002766 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002767 // discard scrolled-off-to-the-left portion,
2768 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002769 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002770 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002771 co -= tabstop;
2772 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002773 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002774 if (src >= end)
2775 break;
2776 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002777 // check "short line, gigantic offset" case
2778 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002779 ofs = co;
2780 // discard last scrolled off part
2781 co -= ofs;
2782 dest += ofs;
2783 // fill the rest with spaces
2784 if (co < columns)
2785 memset(&dest[co], ' ', columns - co);
2786 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002787}
2788
2789//----- Refresh the changed screen lines -----------------------
2790// Copy the source line from text[] into the buffer and note
2791// if the current screenline is different from the new buffer.
2792// If they differ then that line needs redrawing on the terminal.
2793//
2794static void refresh(int full_screen)
2795{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002796#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002797
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002798 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002799 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002800
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002801 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002802 unsigned c = columns, r = rows;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002803 query_screen_dimensions();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002804 full_screen |= (c - columns) | (r - rows);
2805 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002806 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2807 tp = screenbegin; // index into text[] of top line
2808
2809 // compare text[] to screen[] and mark screen[] lines that need updating
2810 for (li = 0; li < rows - 1; li++) {
2811 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002812 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002813 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002814 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002815
2816 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002817 if (tp < end) {
2818 char *t = memchr(tp, '\n', end - tp);
2819 if (!t) t = end - 1;
2820 tp = t + 1;
2821 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002822
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002823 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002824 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002825 cs = 0;
2826 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002827 sp = &screen[li * columns]; // start of screen line
2828 if (full_screen) {
2829 // force re-draw of every single column from 0 - columns-1
2830 goto re0;
2831 }
2832 // compare newly formatted buffer with virtual screen
2833 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002834 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002835 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002836 changed = TRUE; // mark for redraw
2837 break;
2838 }
2839 }
2840
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002841 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002842 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002843 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002844 changed = TRUE; // mark for redraw
2845 break;
2846 }
2847 }
2848 // now, cs is index of first diff, and ce is index of last diff
2849
2850 // if horz offset has changed, force a redraw
2851 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002852 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002853 changed = TRUE;
2854 }
2855
2856 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002857 if (cs < 0) cs = 0;
2858 if (ce > columns - 1) ce = columns - 1;
2859 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002860 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002861 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002862 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002863 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002864
2865 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002866 //if (offset != old_offset) {
2867 // // place_cursor is still too stupid
2868 // // to handle offsets correctly
2869 // place_cursor(li, cs, FALSE);
2870 //} else {
2871 place_cursor(li, cs, TRUE);
2872 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002873
2874 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002875 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002876 }
2877 }
2878
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002879 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002880
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002881 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002882#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002883}
2884
Eric Andersen3f980402001-04-04 17:31:15 +00002885//---------------------------------------------------------------------
2886//----- the Ascii Chart -----------------------------------------------
2887//
2888// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2889// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2890// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2891// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2892// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2893// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2894// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2895// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2896// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2897// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2898// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2899// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2900// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2901// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2902// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2903// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2904//---------------------------------------------------------------------
2905
2906//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002907static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00002908{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002909 const char *msg = msg; // for compiler
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002910 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002911 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00002912 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002913 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002914 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00002915
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002916// c1 = c; // quiet the compiler
2917// cnt = yf = 0; // quiet the compiler
2918// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002919 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002920
Paul Fox8552aec2005-09-16 12:20:05 +00002921 show_status_line();
2922
Eric Andersenbff7a602001-11-17 07:15:43 +00002923 /* if this is a cursor key, skip these checks */
2924 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002925 case KEYCODE_UP:
2926 case KEYCODE_DOWN:
2927 case KEYCODE_LEFT:
2928 case KEYCODE_RIGHT:
2929 case KEYCODE_HOME:
2930 case KEYCODE_END:
2931 case KEYCODE_PAGEUP:
2932 case KEYCODE_PAGEDOWN:
2933 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00002934 goto key_cmd_mode;
2935 }
2936
Eric Andersen3f980402001-04-04 17:31:15 +00002937 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002938 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002939 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002940 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002941 // we are 'R'eplacing the current *dot with new char
2942 if (*dot == '\n') {
2943 // don't Replace past E-o-l
2944 cmd_mode = 1; // convert to insert
2945 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002946 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002947 if (c != 27)
2948 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2949 dot = char_insert(dot, c); // insert new char
2950 }
2951 goto dc1;
2952 }
2953 }
2954 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002955 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002956 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002957 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002958 if (1 <= c || Isprint(c)) {
2959 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002960 }
2961 goto dc1;
2962 }
2963
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002964 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00002965 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00002966 //case 0x01: // soh
2967 //case 0x09: // ht
2968 //case 0x0b: // vt
2969 //case 0x0e: // so
2970 //case 0x0f: // si
2971 //case 0x10: // dle
2972 //case 0x11: // dc1
2973 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002974#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00002975 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00002976 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00002977 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002978#endif
Eric Andersen822c3832001-05-07 17:37:43 +00002979 //case 0x16: // syn
2980 //case 0x17: // etb
2981 //case 0x18: // can
2982 //case 0x1c: // fs
2983 //case 0x1d: // gs
2984 //case 0x1e: // rs
2985 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002986 //case '!': // !-
2987 //case '#': // #-
2988 //case '&': // &-
2989 //case '(': // (-
2990 //case ')': // )-
2991 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002992 //case '=': // =-
2993 //case '@': // @-
2994 //case 'F': // F-
2995 //case 'K': // K-
2996 //case 'Q': // Q-
2997 //case 'S': // S-
2998 //case 'T': // T-
2999 //case 'V': // V-
3000 //case '[': // [-
3001 //case '\\': // \-
3002 //case ']': // ]-
3003 //case '_': // _-
3004 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003005 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003006 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003007 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00003008 buf[0] = c;
3009 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003010 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003011 end_cmd_q(); // stop adding to q
3012 case 0x00: // nul- ignore
3013 break;
3014 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003015 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00003016 dot_scroll(rows - 2, -1);
3017 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003018 case 4: // ctrl-D scroll down half screen
3019 dot_scroll((rows - 2) / 2, 1);
3020 break;
3021 case 5: // ctrl-E scroll down one line
3022 dot_scroll(1, 1);
3023 break;
3024 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003025 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003026 dot_scroll(rows - 2, 1);
3027 break;
3028 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003029 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003030 break;
3031 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003032 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003033 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003034 case 0x7f: // DEL- move left (This may be ERASE char)
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003035 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003036 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003037 }
Eric Andersen3f980402001-04-04 17:31:15 +00003038 dot_left();
3039 break;
3040 case 10: // Newline ^J
3041 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003042 case KEYCODE_DOWN: // cursor key Down
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003043 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003044 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003045 }
Eric Andersen3f980402001-04-04 17:31:15 +00003046 dot_next(); // go to next B-o-l
3047 dot = move_to_col(dot, ccol + offset); // try stay in same col
3048 break;
3049 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003050 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003051 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003052 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003053 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003054 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003055 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003056 refresh(TRUE); // this will redraw the entire display
3057 break;
3058 case 13: // Carriage Return ^M
3059 case '+': // +- goto next line
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003060 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003061 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003062 }
Eric Andersen3f980402001-04-04 17:31:15 +00003063 dot_next();
3064 dot_skip_over_ws();
3065 break;
3066 case 21: // ctrl-U scroll up half screen
3067 dot_scroll((rows - 2) / 2, -1);
3068 break;
3069 case 25: // ctrl-Y scroll up one line
3070 dot_scroll(1, -1);
3071 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003072 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003073 if (cmd_mode == 0)
3074 indicate_error(c);
3075 cmd_mode = 0; // stop insrting
3076 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003077 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003078 break;
3079 case ' ': // move right
3080 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003081 case KEYCODE_RIGHT: // Cursor Key Right
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003082 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003083 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003084 }
Eric Andersen3f980402001-04-04 17:31:15 +00003085 dot_right();
3086 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003087#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003088 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003089 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3090 if ((unsigned)c1 <= 25) { // a-z?
3091 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003092 } else {
3093 indicate_error(c);
3094 }
3095 break;
3096 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003097 c1 = (get_one_char() | 0x20) - 'a';
3098 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003099 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003100 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003101 if (text <= q && q < end) {
3102 dot = q;
3103 dot_begin(); // go to B-o-l
3104 dot_skip_over_ws();
3105 }
3106 } else if (c1 == '\'') { // goto previous context
3107 dot = swap_context(dot); // swap current and previous context
3108 dot_begin(); // go to B-o-l
3109 dot_skip_over_ws();
3110 } else {
3111 indicate_error(c);
3112 }
3113 break;
3114 case 'm': // m- Mark a line
3115 // this is really stupid. If there are any inserts or deletes
3116 // between text[0] and dot then this mark will not point to the
3117 // correct location! It could be off by many lines!
3118 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003119 c1 = (get_one_char() | 0x20) - 'a';
3120 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003121 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003122 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003123 } else {
3124 indicate_error(c);
3125 }
3126 break;
3127 case 'P': // P- Put register before
3128 case 'p': // p- put register after
3129 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003130 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003131 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003132 break;
3133 }
3134 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003135 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003136 if (c == 'P') {
3137 dot_begin(); // putting lines- Put above
3138 }
3139 if (c == 'p') {
3140 // are we putting after very last line?
3141 if (end_line(dot) == (end - 1)) {
3142 dot = end; // force dot to end of text[]
3143 } else {
3144 dot_next(); // next line, then put before
3145 }
3146 }
3147 } else {
3148 if (c == 'p')
3149 dot_right(); // move to right, can move to NL
3150 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003151 string_insert(dot, p); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003152 end_cmd_q(); // stop adding to q
3153 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003154 case 'U': // U- Undo; replace current line with original version
3155 if (reg[Ureg] != 0) {
3156 p = begin_line(dot);
3157 q = end_line(dot);
3158 p = text_hole_delete(p, q); // delete cur line
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003159 p += string_insert(p, reg[Ureg]); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003160 dot = p;
3161 dot_skip_over_ws();
3162 }
3163 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003164#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003165 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003166 case KEYCODE_END: // Cursor Key End
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003167 if (--cmdcnt > 0) {
3168 dot_next();
Eric Andersen3f980402001-04-04 17:31:15 +00003169 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003170 }
Glenn L McGrathee829062004-01-21 10:59:45 +00003171 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003172 break;
3173 case '%': // %- find matching char of pair () [] {}
3174 for (q = dot; q < end && *q != '\n'; q++) {
3175 if (strchr("()[]{}", *q) != NULL) {
3176 // we found half of a pair
3177 p = find_pair(q, *q);
3178 if (p == NULL) {
3179 indicate_error(c);
3180 } else {
3181 dot = p;
3182 }
3183 break;
3184 }
3185 }
3186 if (*q == '\n')
3187 indicate_error(c);
3188 break;
3189 case 'f': // f- forward to a user specified char
3190 last_forward_char = get_one_char(); // get the search char
3191 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003192 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003193 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003194 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003195 case ';': // ;- look at rest of line for last forward char
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003196 if (--cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003197 do_cmd(';');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003198 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003199 if (last_forward_char == 0)
3200 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003201 q = dot + 1;
3202 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3203 q++;
3204 }
3205 if (*q == last_forward_char)
3206 dot = q;
3207 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003208 case ',': // repeat latest 'f' in opposite direction
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003209 if (--cmdcnt > 0) {
Paul Foxb5ee8db2008-02-14 01:17:01 +00003210 do_cmd(',');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003211 }
Paul Foxb5ee8db2008-02-14 01:17:01 +00003212 if (last_forward_char == 0)
3213 break;
3214 q = dot - 1;
3215 while (q >= text && *q != '\n' && *q != last_forward_char) {
3216 q--;
3217 }
3218 if (q >= text && *q == last_forward_char)
3219 dot = q;
3220 break;
3221
Eric Andersen3f980402001-04-04 17:31:15 +00003222 case '-': // -- goto prev line
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003223 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003224 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003225 }
Eric Andersen3f980402001-04-04 17:31:15 +00003226 dot_prev();
3227 dot_skip_over_ws();
3228 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003229#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003230 case '.': // .- repeat the last modifying command
3231 // Stuff the last_modifying_cmd back into stdin
3232 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003233 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003234 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003235 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003236 }
3237 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003238#endif
3239#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003240 case '?': // /- search for a pattern
3241 case '/': // /- search for a pattern
3242 buf[0] = c;
3243 buf[1] = '\0';
3244 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003245 if (q[0] && !q[1]) {
3246 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003247 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003248 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003249 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003250 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003251 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003252 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003253 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003254 goto dc3; // now find the pattern
3255 }
3256 // user changed mind and erased the "/"- do nothing
3257 break;
3258 case 'N': // N- backward search for last pattern
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003259 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003260 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003261 }
Eric Andersen3f980402001-04-04 17:31:15 +00003262 dir = BACK; // assume BACKWARD search
3263 p = dot - 1;
3264 if (last_search_pattern[0] == '?') {
3265 dir = FORWARD;
3266 p = dot + 1;
3267 }
3268 goto dc4; // now search for pattern
3269 break;
3270 case 'n': // n- repeat search for last pattern
3271 // search rest of text[] starting at next char
3272 // if search fails return orignal "p" not the "p+1" address
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003273 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003274 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003275 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003276 dc3:
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003277 dir = FORWARD; // assume FORWARD search
3278 p = dot + 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003279 if (last_search_pattern[0] == '?') {
3280 dir = BACK;
3281 p = dot - 1;
3282 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003283 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003284 q = char_search(p, last_search_pattern + 1, dir, FULL);
3285 if (q != NULL) {
3286 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003287 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003288 goto dc2;
3289 }
3290 // no pattern found between "dot" and "end"- continue at top
3291 p = text;
3292 if (dir == BACK) {
3293 p = end - 1;
3294 }
3295 q = char_search(p, last_search_pattern + 1, dir, FULL);
3296 if (q != NULL) { // found something
3297 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003298 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003299 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003300 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003301 }
3302 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003303 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003304 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003305 dc2:
3306 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003307 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003308 break;
3309 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003310 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003311 if (q != NULL) { // found blank line
3312 dot = next_line(q); // move to next blank line
3313 }
3314 break;
3315 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003316 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003317 if (q != NULL) { // found blank line
3318 dot = next_line(q); // move to next blank line
3319 }
3320 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003321#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003322 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003323 case '1': // 1-
3324 case '2': // 2-
3325 case '3': // 3-
3326 case '4': // 4-
3327 case '5': // 5-
3328 case '6': // 6-
3329 case '7': // 7-
3330 case '8': // 8-
3331 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003332 if (c == '0' && cmdcnt < 1) {
3333 dot_begin(); // this was a standalone zero
3334 } else {
3335 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3336 }
3337 break;
3338 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003339 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003340#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003341 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003342#else
Eric Andersen822c3832001-05-07 17:37:43 +00003343 if (*p == ':')
3344 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003345 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003346 if (cnt <= 0)
3347 break;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003348 if (strncmp(p, "quit", cnt) == 0
3349 || strncmp(p, "q!", cnt) == 0 // delete lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003350 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003351 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003352 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003353 } else {
3354 editing = 0;
3355 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003356 } else if (strncmp(p, "write", cnt) == 0
3357 || strncmp(p, "wq", cnt) == 0
3358 || strncmp(p, "wn", cnt) == 0
3359 || (p[0] == 'x' && !p[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003360 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003361 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003362 if (cnt < 0) {
3363 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003364 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003365 } else {
3366 file_modified = 0;
3367 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003368 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003369 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3370 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3371 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003372 editing = 0;
3373 }
Eric Andersen3f980402001-04-04 17:31:15 +00003374 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003375 } else if (strncmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003376 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003377 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003378 dot = find_line(j); // go to line # j
3379 dot_skip_over_ws();
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003380 } else { // unrecognized cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003381 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003382 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003383#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003384 break;
3385 case '<': // <- Left shift something
3386 case '>': // >- Right shift something
3387 cnt = count_lines(text, dot); // remember what line we are on
3388 c1 = get_one_char(); // get the type of thing to delete
3389 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003390 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003391 p = begin_line(p);
3392 q = end_line(q);
3393 i = count_lines(p, q); // # of lines we are shifting
3394 for ( ; i > 0; i--, p = next_line(p)) {
3395 if (c == '<') {
3396 // shift left- remove tab or 8 spaces
3397 if (*p == '\t') {
3398 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003399 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003400 } else if (*p == ' ') {
3401 // we should be calculating columns, not just SPACE
3402 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003403 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003404 }
3405 }
3406 } else if (c == '>') {
3407 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003408 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003409 }
3410 }
3411 dot = find_line(cnt); // what line were we on
3412 dot_skip_over_ws();
3413 end_cmd_q(); // stop adding to q
3414 break;
3415 case 'A': // A- append at e-o-l
3416 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003417 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003418 case 'a': // a- append after current char
3419 if (*dot != '\n')
3420 dot++;
3421 goto dc_i;
3422 break;
3423 case 'B': // B- back a blank-delimited Word
3424 case 'E': // E- end of a blank-delimited word
3425 case 'W': // W- forward a blank-delimited word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003426 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003427 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003428 }
Eric Andersen3f980402001-04-04 17:31:15 +00003429 dir = FORWARD;
3430 if (c == 'B')
3431 dir = BACK;
3432 if (c == 'W' || isspace(dot[dir])) {
3433 dot = skip_thing(dot, 1, dir, S_TO_WS);
3434 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3435 }
3436 if (c != 'W')
3437 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3438 break;
3439 case 'C': // C- Change to e-o-l
3440 case 'D': // D- delete to e-o-l
3441 save_dot = dot;
3442 dot = dollar_line(dot); // move to before NL
3443 // copy text into a register and delete
3444 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3445 if (c == 'C')
3446 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003447#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003448 if (c == 'D')
3449 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003450#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003451 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003452 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003453 c1 = get_one_char();
3454 if (c1 != 'g') {
3455 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003456 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003457 buf[2] = '\0';
3458 not_implemented(buf);
3459 break;
3460 }
3461 if (cmdcnt == 0)
3462 cmdcnt = 1;
3463 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003464 case 'G': // G- goto to a line number (default= E-O-F)
3465 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003466 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003467 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003468 }
3469 dot_skip_over_ws();
3470 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003471 case 'H': // H- goto top line on screen
3472 dot = screenbegin;
3473 if (cmdcnt > (rows - 1)) {
3474 cmdcnt = (rows - 1);
3475 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003476 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003477 do_cmd('+');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003478 }
Eric Andersen3f980402001-04-04 17:31:15 +00003479 dot_skip_over_ws();
3480 break;
3481 case 'I': // I- insert before first non-blank
3482 dot_begin(); // 0
3483 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003484 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003485 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003486 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003487 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003488 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003489 break;
3490 case 'J': // J- join current and next lines together
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003491 if (--cmdcnt > 1) {
Eric Andersen3f980402001-04-04 17:31:15 +00003492 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003493 }
Eric Andersen3f980402001-04-04 17:31:15 +00003494 dot_end(); // move to NL
3495 if (dot < end - 1) { // make sure not last char in text[]
3496 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003497 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003498 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003499 dot_delete();
3500 }
3501 }
3502 end_cmd_q(); // stop adding to q
3503 break;
3504 case 'L': // L- goto bottom line on screen
3505 dot = end_screen();
3506 if (cmdcnt > (rows - 1)) {
3507 cmdcnt = (rows - 1);
3508 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003509 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003510 do_cmd('-');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003511 }
Eric Andersen3f980402001-04-04 17:31:15 +00003512 dot_begin();
3513 dot_skip_over_ws();
3514 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003515 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003516 dot = screenbegin;
3517 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3518 dot = next_line(dot);
3519 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003520 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003521 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003522 p = begin_line(dot);
3523 if (p[-1] == '\n') {
3524 dot_prev();
3525 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3526 dot_end();
3527 dot = char_insert(dot, '\n');
3528 } else {
3529 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003530 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003531 dot_prev(); // -
3532 }
3533 goto dc_i;
3534 break;
3535 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003536 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003537 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003538 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003539 case KEYCODE_DELETE:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003540 c = 'x';
3541 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003542 case 'X': // X- delete char before dot
3543 case 'x': // x- delete the current char
3544 case 's': // s- substitute the current char
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003545 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003546 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003547 }
Eric Andersen3f980402001-04-04 17:31:15 +00003548 dir = 0;
3549 if (c == 'X')
3550 dir = -1;
3551 if (dot[dir] != '\n') {
3552 if (c == 'X')
3553 dot--; // delete prev char
3554 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3555 }
3556 if (c == 's')
3557 goto dc_i; // start insrting
3558 end_cmd_q(); // stop adding to q
3559 break;
3560 case 'Z': // Z- if modified, {write}; exit
3561 // ZZ means to save file (if necessary), then exit
3562 c1 = get_one_char();
3563 if (c1 != 'Z') {
3564 indicate_error(c);
3565 break;
3566 }
Paul Foxf0305b72006-03-28 14:18:21 +00003567 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003568 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003569 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003570 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003571 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003572 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003573 if (cnt < 0) {
3574 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003575 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003576 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003577 editing = 0;
3578 }
3579 } else {
3580 editing = 0;
3581 }
3582 break;
3583 case '^': // ^- move to first non-blank on line
3584 dot_begin();
3585 dot_skip_over_ws();
3586 break;
3587 case 'b': // b- back a word
3588 case 'e': // e- end of word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003589 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003590 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003591 }
Eric Andersen3f980402001-04-04 17:31:15 +00003592 dir = FORWARD;
3593 if (c == 'b')
3594 dir = BACK;
3595 if ((dot + dir) < text || (dot + dir) > end - 1)
3596 break;
3597 dot += dir;
3598 if (isspace(*dot)) {
3599 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3600 }
3601 if (isalnum(*dot) || *dot == '_') {
3602 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3603 } else if (ispunct(*dot)) {
3604 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3605 }
3606 break;
3607 case 'c': // c- change something
3608 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003609#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003610 case 'y': // y- yank something
3611 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003612#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003613 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003614 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003615 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003616#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003617 if (c == 'y' || c == 'Y')
3618 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003619#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003620 c1 = 'y';
3621 if (c != 'Y')
3622 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003623 // determine range, and whether it spans lines
3624 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003625 if (c1 == 27) { // ESC- user changed mind and wants out
3626 c = c1 = 27; // Escape- do nothing
3627 } else if (strchr("wW", c1)) {
3628 if (c == 'c') {
3629 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003630 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003631 if (q <= text || q[-1] == '\n')
3632 break;
3633 q--;
3634 }
3635 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003636 dot = yank_delete(p, q, ml, yf); // delete word
3637 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3638 // partial line copy text into a register and delete
3639 dot = yank_delete(p, q, ml, yf); // delete word
3640 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3641 // whole line copy text into a register and delete
3642 dot = yank_delete(p, q, ml, yf); // delete lines
3643 whole = 1;
3644 } else {
3645 // could not recognize object
3646 c = c1 = 27; // error-
3647 ml = 0;
3648 indicate_error(c);
3649 }
3650 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003651 if (c == 'c') {
3652 dot = char_insert(dot, '\n');
3653 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003654 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003655 dot_prev();
3656 }
3657 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003658 dot_begin();
3659 dot_skip_over_ws();
3660 }
Eric Andersen3f980402001-04-04 17:31:15 +00003661 }
3662 if (c1 != 27) {
3663 // if CHANGING, not deleting, start inserting after the delete
3664 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003665 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003666 goto dc_i; // start inserting
3667 }
3668 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003669 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003670 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003671#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003672 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003673 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003674 }
3675 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003676 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003677 for (cnt = 0; p <= q; p++) {
3678 if (*p == '\n')
3679 cnt++;
3680 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003681 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003682 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003683#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003684 end_cmd_q(); // stop adding to q
3685 }
3686 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003687 }
Eric Andersen3f980402001-04-04 17:31:15 +00003688 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003689 case KEYCODE_UP: // cursor key Up
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003690 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003691 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003692 }
Eric Andersen3f980402001-04-04 17:31:15 +00003693 dot_prev();
3694 dot = move_to_col(dot, ccol + offset); // try stay in same col
3695 break;
3696 case 'r': // r- replace the current char with user input
3697 c1 = get_one_char(); // get the replacement char
3698 if (*dot != '\n') {
3699 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003700 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003701 }
3702 end_cmd_q(); // stop adding to q
3703 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003704 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003705 last_forward_char = get_one_char();
3706 do_cmd(';');
3707 if (*dot == last_forward_char)
3708 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003709 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003710 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003711 case 'w': // w- forward a word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003712 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003713 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003714 }
Eric Andersen3f980402001-04-04 17:31:15 +00003715 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3716 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3717 } else if (ispunct(*dot)) { // we are on PUNCT
3718 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3719 }
3720 if (dot < end - 1)
3721 dot++; // move over word
3722 if (isspace(*dot)) {
3723 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3724 }
3725 break;
3726 case 'z': // z-
3727 c1 = get_one_char(); // get the replacement char
3728 cnt = 0;
3729 if (c1 == '.')
3730 cnt = (rows - 2) / 2; // put dot at center
3731 if (c1 == '-')
3732 cnt = rows - 2; // put dot at bottom
3733 screenbegin = begin_line(dot); // start dot at top
3734 dot_scroll(cnt, -1);
3735 break;
3736 case '|': // |- move to column "cmdcnt"
3737 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3738 break;
3739 case '~': // ~- flip the case of letters a-z -> A-Z
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003740 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003741 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003742 }
Eric Andersen3f980402001-04-04 17:31:15 +00003743 if (islower(*dot)) {
3744 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003745 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003746 } else if (isupper(*dot)) {
3747 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003748 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003749 }
3750 dot_right();
3751 end_cmd_q(); // stop adding to q
3752 break;
3753 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003754 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00003755 dot_begin();
3756 break;
3757 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003758#if 0
3759 case KEYCODE_FUN1: // Function Key F1
3760 case KEYCODE_FUN2: // Function Key F2
3761 case KEYCODE_FUN3: // Function Key F3
3762 case KEYCODE_FUN4: // Function Key F4
3763 case KEYCODE_FUN5: // Function Key F5
3764 case KEYCODE_FUN6: // Function Key F6
3765 case KEYCODE_FUN7: // Function Key F7
3766 case KEYCODE_FUN8: // Function Key F8
3767 case KEYCODE_FUN9: // Function Key F9
3768 case KEYCODE_FUN10: // Function Key F10
3769 case KEYCODE_FUN11: // Function Key F11
3770 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00003771 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003772#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003773 }
3774
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003775 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003776 // if text[] just became empty, add back an empty line
3777 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003778 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003779 dot = text;
3780 }
3781 // it is OK for dot to exactly equal to end, otherwise check dot validity
3782 if (dot != end) {
3783 dot = bound_dot(dot); // make sure "dot" is valid
3784 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003785#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003786 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003787#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003788
3789 if (!isdigit(c))
3790 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3791 cnt = dot - begin_line(dot);
3792 // Try to stay off of the Newline
3793 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3794 dot--;
3795}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003796
Paul Fox35e9c5d2008-03-06 16:26:12 +00003797/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003798#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003799static int totalcmds = 0;
3800static int Mp = 85; // Movement command Probability
3801static int Np = 90; // Non-movement command Probability
3802static int Dp = 96; // Delete command Probability
3803static int Ip = 97; // Insert command Probability
3804static int Yp = 98; // Yank command Probability
3805static int Pp = 99; // Put command Probability
3806static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003807static const char chars[20] = "\t012345 abcdABCD-=.$";
3808static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003809 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003810 "broadcast", "the", "emergency", "of",
3811 "system", "quick", "brown", "fox",
3812 "jumped", "over", "lazy", "dogs",
3813 "back", "January", "Febuary", "March"
3814};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003815static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003816 "You should have received a copy of the GNU General Public License\n",
3817 "char c, cm, *cmd, *cmd1;\n",
3818 "generate a command by percentages\n",
3819 "Numbers may be typed as a prefix to some commands.\n",
3820 "Quit, discarding changes!\n",
3821 "Forced write, if permission originally not valid.\n",
3822 "In general, any ex or ed command (such as substitute or delete).\n",
3823 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3824 "Please get w/ me and I will go over it with you.\n",
3825 "The following is a list of scheduled, committed changes.\n",
3826 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3827 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3828 "Any question about transactions please contact Sterling Huxley.\n",
3829 "I will try to get back to you by Friday, December 31.\n",
3830 "This Change will be implemented on Friday.\n",
3831 "Let me know if you have problems accessing this;\n",
3832 "Sterling Huxley recently added you to the access list.\n",
3833 "Would you like to go to lunch?\n",
3834 "The last command will be automatically run.\n",
3835 "This is too much english for a computer geek.\n",
3836};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003837static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003838 "You should have received a copy of the GNU General Public License\n",
3839 "char c, cm, *cmd, *cmd1;\n",
3840 "generate a command by percentages\n",
3841 "Numbers may be typed as a prefix to some commands.\n",
3842 "Quit, discarding changes!\n",
3843 "Forced write, if permission originally not valid.\n",
3844 "In general, any ex or ed command (such as substitute or delete).\n",
3845 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3846 "Please get w/ me and I will go over it with you.\n",
3847 "The following is a list of scheduled, committed changes.\n",
3848 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3849 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3850 "Any question about transactions please contact Sterling Huxley.\n",
3851 "I will try to get back to you by Friday, December 31.\n",
3852 "This Change will be implemented on Friday.\n",
3853 "Let me know if you have problems accessing this;\n",
3854 "Sterling Huxley recently added you to the access list.\n",
3855 "Would you like to go to lunch?\n",
3856 "The last command will be automatically run.\n",
3857 "This is too much english for a computer geek.\n",
3858};
3859
3860// create a random command to execute
3861static void crash_dummy()
3862{
3863 static int sleeptime; // how long to pause between commands
3864 char c, cm, *cmd, *cmd1;
3865 int i, cnt, thing, rbi, startrbi, percent;
3866
3867 // "dot" movement commands
3868 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3869
3870 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02003871 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003872 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003873 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02003874 readbuffer[0] = 'X';
3875 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003876 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003877 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003878 // generate a command by percentages
3879 percent = (int) lrand48() % 100; // get a number from 0-99
3880 if (percent < Mp) { // Movement commands
3881 // available commands
3882 cmd = cmd1;
3883 M++;
3884 } else if (percent < Np) { // non-movement commands
3885 cmd = "mz<>\'\""; // available commands
3886 N++;
3887 } else if (percent < Dp) { // Delete commands
3888 cmd = "dx"; // available commands
3889 D++;
3890 } else if (percent < Ip) { // Inset commands
3891 cmd = "iIaAsrJ"; // available commands
3892 I++;
3893 } else if (percent < Yp) { // Yank commands
3894 cmd = "yY"; // available commands
3895 Y++;
3896 } else if (percent < Pp) { // Put commands
3897 cmd = "pP"; // available commands
3898 P++;
3899 } else {
3900 // We do not know how to handle this command, try again
3901 U++;
3902 goto cd0;
3903 }
3904 // randomly pick one of the available cmds from "cmd[]"
3905 i = (int) lrand48() % strlen(cmd);
3906 cm = cmd[i];
3907 if (strchr(":\024", cm))
3908 goto cd0; // dont allow colon or ctrl-T commands
3909 readbuffer[rbi++] = cm; // put cmd into input buffer
3910
3911 // now we have the command-
3912 // there are 1, 2, and multi char commands
3913 // find out which and generate the rest of command as necessary
3914 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3915 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3916 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3917 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3918 }
3919 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3920 c = cmd1[thing];
3921 readbuffer[rbi++] = c; // add movement to input buffer
3922 }
3923 if (strchr("iIaAsc", cm)) { // multi-char commands
3924 if (cm == 'c') {
3925 // change some thing
3926 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3927 c = cmd1[thing];
3928 readbuffer[rbi++] = c; // add movement to input buffer
3929 }
3930 thing = (int) lrand48() % 4; // what thing to insert
3931 cnt = (int) lrand48() % 10; // how many to insert
3932 for (i = 0; i < cnt; i++) {
3933 if (thing == 0) { // insert chars
3934 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3935 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003936 strcat(readbuffer, words[(int) lrand48() % 20]);
3937 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003938 sleeptime = 0; // how fast to type
3939 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003940 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003941 sleeptime = 0; // how fast to type
3942 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003943 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003944 sleeptime = 0; // how fast to type
3945 }
3946 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003947 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003948 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02003949 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003950 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003951 totalcmds++;
3952 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003953 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003954}
3955
3956// test to see if there are any errors
3957static void crash_test()
3958{
3959 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003960
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003961 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003962 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003963
3964 msg[0] = '\0';
3965 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003966 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003967 }
3968 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003969 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003970 }
3971 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003972 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003973 }
3974 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003975 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003976 }
3977 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003978 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003979 }
3980 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003981 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003982 }
3983
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003984 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00003985 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003986 totalcmds, last_input_char, msg, SOs, SOn);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003987 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00003988 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003989 if (d[0] == '\n' || d[0] == '\r')
3990 break;
3991 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003992 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003993 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003994 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003995 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003996 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
3997 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
3998 oldtim = tim;
3999 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004000}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004001#endif