blob: 94d36ae99469ce60ecab3e88c248a919bf1f5953 [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 */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000063static const char SOs[] ALIGN1 = "\033[7m";
64static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000065/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000066static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000067/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000068static const char Ceol[] ALIGN1 = "\033[0K";
69static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000070/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000071static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000072/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000073static const char CMup[] ALIGN1 = "\033[A";
74static const char CMdown[] ALIGN1 = "\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
141 int crow, ccol; // cursor is on Crow x Ccol
142 int offset; // chars scrolled off the screen to the left
143 int have_status_msg; // is default edit status needed?
144 // [don't make smallint!]
145 int last_status_cksum; // hash of current status line
146 char *current_filename;
147 char *screenbegin; // index into text[], of top line on the screen
148 char *screen; // pointer to the virtual screen buffer
149 int screensize; // and its size
150 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000151 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000152 char erase_char; // the users erase character
153 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000154
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000155#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000156 smallint adding2q; // are we currently adding user input to q
157 int lmc_len; // length of last_modifying_cmd
158 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000159#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000160#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000161 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000162#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000163#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000164 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000165#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000166#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000167 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000168#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000169
Denis Vlasenkob1759462008-06-20 20:20:54 +0000170 /* former statics */
171#if ENABLE_FEATURE_VI_YANKMARK
172 char *edit_file__cur_line;
173#endif
174 int refresh__old_offset;
175 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000176
Denis Vlasenkob1759462008-06-20 20:20:54 +0000177 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000178#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000179 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000180 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000181 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
182 char *context_start, *context_end;
183#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000184#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000185 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000186#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000187 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000188#if ENABLE_FEATURE_VI_COLON
189 char *initial_cmds[3]; // currently 2 entries, NULL terminated
190#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000191 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000192 // but CRASHME mode uses it as generated command buffer too
193#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000194 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000195#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000196 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000197#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000198#define STATUS_BUFFER_LEN 200
199 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
200#if ENABLE_FEATURE_VI_DOT_CMD
201 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
202#endif
203 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000204
205 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000206};
207#define G (*ptr_to_globals)
208#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000209#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000210#define end (G.end )
211#define dot (G.dot )
212#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000213
214#define vi_setops (G.vi_setops )
215#define editing (G.editing )
216#define cmd_mode (G.cmd_mode )
217#define file_modified (G.file_modified )
218#define last_file_modified (G.last_file_modified )
219#define fn_start (G.fn_start )
220#define save_argc (G.save_argc )
221#define cmdcnt (G.cmdcnt )
222#define rows (G.rows )
223#define columns (G.columns )
224#define crow (G.crow )
225#define ccol (G.ccol )
226#define offset (G.offset )
227#define status_buffer (G.status_buffer )
228#define have_status_msg (G.have_status_msg )
229#define last_status_cksum (G.last_status_cksum )
230#define current_filename (G.current_filename )
231#define screen (G.screen )
232#define screensize (G.screensize )
233#define screenbegin (G.screenbegin )
234#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000235#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000236#define erase_char (G.erase_char )
237#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000238#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000239#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000240#else
241#define readonly_mode 0
242#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000243#define adding2q (G.adding2q )
244#define lmc_len (G.lmc_len )
245#define ioq (G.ioq )
246#define ioq_start (G.ioq_start )
247#define last_row (G.last_row )
248#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000249#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000250
Denis Vlasenkob1759462008-06-20 20:20:54 +0000251#define edit_file__cur_line (G.edit_file__cur_line)
252#define refresh__old_offset (G.refresh__old_offset)
253#define format_edit_status__tot (G.format_edit_status__tot)
254
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000255#define YDreg (G.YDreg )
256#define Ureg (G.Ureg )
257#define mark (G.mark )
258#define context_start (G.context_start )
259#define context_end (G.context_end )
260#define restart (G.restart )
261#define term_orig (G.term_orig )
262#define term_vi (G.term_vi )
263#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000264#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000265#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000266#define last_modifying_cmd (G.last_modifying_cmd )
267#define get_input_line__buf (G.get_input_line__buf)
268
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000269#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000270 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000271 last_file_modified = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000272 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000273 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000274} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000275
Denis Vlasenkob1759462008-06-20 20:20:54 +0000276
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000277static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000278static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000279static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000280static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000281static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
282static char *begin_line(char *); // return pointer to cur line B-o-l
283static char *end_line(char *); // return pointer to cur line E-o-l
284static char *prev_line(char *); // return pointer to prev line B-o-l
285static char *next_line(char *); // return pointer to next line B-o-l
286static char *end_screen(void); // get pointer to last char on screen
287static int count_lines(char *, char *); // count line from start to stop
288static char *find_line(int); // find begining of line #li
289static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000290static void dot_left(void); // move dot left- dont leave line
291static void dot_right(void); // move dot right- dont leave line
292static void dot_begin(void); // move dot to B-o-l
293static void dot_end(void); // move dot to E-o-l
294static void dot_next(void); // move dot to next line B-o-l
295static void dot_prev(void); // move dot to prev line B-o-l
296static void dot_scroll(int, int); // move the screen up or down
297static void dot_skip_over_ws(void); // move dot pat WS
298static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000299static char *bound_dot(char *); // make sure text[0] <= P < "end"
300static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000301static char *char_insert(char *, char); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000302// might reallocate text[]! use p += stupid_insert(p, ...),
303// and be careful to not use pointers into potentially freed text[]!
304static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000305static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000306static int st_test(char *, int, int, char *); // helper for skip_thing()
307static char *skip_thing(char *, int, int, int); // skip some object
308static char *find_pair(char *, char); // find matching pair () [] {}
309static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000310// might reallocate text[]! use p += text_hole_make(p, ...),
311// and be careful to not use pointers into potentially freed text[]!
312static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000313static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000314static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000315static void rawmode(void); // set "raw" mode on tty
316static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000317// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
318static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000319static int readit(void); // read (maybe cursor) key from stdin
320static int get_one_char(void); // read 1 char from stdin
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000321static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000322#if !ENABLE_FEATURE_VI_READONLY
323#define file_insert(fn, p, update_ro_status) file_insert(fn, p)
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000324#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000325// file_insert might reallocate text[]!
326static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000327static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000328#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
329#define place_cursor(a, b, optimize) place_cursor(a, b)
330#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000331static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000332static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000333static void clear_to_eol(void);
334static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000335static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000336static void standout_start(void); // send "start reverse video" sequence
337static void standout_end(void); // send "end reverse video" sequence
338static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000339static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000340static void status_line(const char *, ...); // print to status buf
341static void status_line_bold(const char *, ...);
342static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000343static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000344static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000345static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000346static void refresh(int); // update the terminal from screen[]
347
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000348static void Indicate_Error(void); // use flash or beep to indicate error
349#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000350static void Hit_Return(void);
351
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000352#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000353static char *char_search(char *, const char *, int, int); // search for pattern starting at p
354static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000355#endif
356#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000357static char *get_one_address(char *, int *); // get colon addr, if present
358static char *get_address(char *, int *, int *); // get two colon addrs, if present
359static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000360#endif
361#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000362static void winch_sig(int); // catch window size changes
363static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000364static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000365#endif
366#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000367static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000368static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000369#else
370#define end_cmd_q() ((void)0)
371#endif
372#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000373static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000374#endif
375#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000376// might reallocate text[]! use p += string_insert(p, ...),
377// and be careful to not use pointers into potentially freed text[]!
378static uintptr_t string_insert(char *, const char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000379#endif
380#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000381static char *text_yank(char *, char *, int); // save copy of "p" into a register
382static char what_reg(void); // what is letter of current YDreg
383static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000384#endif
385#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000386static void crash_dummy();
387static void crash_test();
388static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000389#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000390
391
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000392static void write1(const char *out)
393{
394 fputs(out, stdout);
395}
396
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000397int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000398int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000399{
Eric Andersend402edf2001-04-04 19:29:48 +0000400 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000401
402 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000403
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000404#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000405 my_pid = getpid();
406#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000407#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000408 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000409#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000410#ifdef NO_SUCH_APPLET_YET
411 /* If we aren't "vi", we are "view" */
412 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000413 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000414 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000415#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000416
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000417 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000418 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000419 // 2- process EXINIT variable from environment
420 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000421#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000422 {
423 char *p = getenv("EXINIT");
424 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000425 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000426 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000427#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000428 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000429 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000430#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000431 case 'C':
432 crashme = 1;
433 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000434#endif
435#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000436 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000437 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000438 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000439#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000440#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000441 case 'c': // cmd line vi command
442 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000443 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000444 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000445#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000446 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000447 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000448 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000449 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000450 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000451 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000452 }
453 }
454
455 // The argv array can be used by the ":next" and ":rewind" commands
456 // save optind.
457 fn_start = optind; // remember first file name for :next and :rew
458 save_argc = argc;
459
460 //----- This is the main file handling loop --------------
461 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000462 edit_file(0);
463 } else {
464 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000465 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000466 }
467 }
468 //-----------------------------------------------------------
469
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000470 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000471}
472
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000473/* read text from file or create an empty buf */
474/* will also update current_filename */
475static int init_text_buffer(char *fn)
476{
477 int rc;
478 int size = file_size(fn); // file size. -1 means does not exist.
479
480 /* allocate/reallocate text buffer */
481 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000482 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000483 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000484
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000485 if (fn != current_filename) {
486 free(current_filename);
487 current_filename = xstrdup(fn);
488 }
489 if (size < 0) {
490 // file dont exist. Start empty buf with dummy line
491 char_insert(text, '\n');
492 rc = 0;
493 } else {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000494 rc = file_insert(fn, text, 1);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000495 }
496 file_modified = 0;
497 last_file_modified = -1;
498#if ENABLE_FEATURE_VI_YANKMARK
499 /* init the marks. */
500 memset(mark, 0, sizeof(mark));
501#endif
502 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000503}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000504
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700505#if ENABLE_FEATURE_VI_WIN_RESIZE
506static void query_screen_dimensions(void)
507{
508 get_terminal_width_height(STDIN_FILENO, &columns, &rows);
509 if (rows > MAX_SCR_ROWS)
510 rows = MAX_SCR_ROWS;
511 if (columns > MAX_SCR_COLS)
512 columns = MAX_SCR_COLS;
513}
514#else
515# define query_screen_dimensions() ((void)0)
516#endif
517
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000518static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000519{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000520#if ENABLE_FEATURE_VI_YANKMARK
521#define cur_line edit_file__cur_line
522#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000523 int c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000524 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000525#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000526 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000527#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000528
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000529 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000530 rawmode();
531 rows = 24;
532 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000533 size = 0;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700534 query_screen_dimensions();
Eric Andersen3f980402001-04-04 17:31:15 +0000535 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000536 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000537
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000538#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000539 YDreg = 26; // default Yank/Delete reg
540 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000541 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000542#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000543
Eric Andersen3f980402001-04-04 17:31:15 +0000544 last_forward_char = last_input_char = '\0';
545 crow = 0;
546 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000547
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000548#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700549 signal(SIGINT, catch_sig);
Eric Andersen3f980402001-04-04 17:31:15 +0000550 signal(SIGWINCH, winch_sig);
551 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000552 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000553 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000554 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000555 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000556#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000557
Eric Andersen3f980402001-04-04 17:31:15 +0000558 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
559 cmdcnt = 0;
560 tabstop = 8;
561 offset = 0; // no horizontal offset
562 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000563#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000564 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000565 ioq = ioq_start = NULL;
566 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000567 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000568#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000569
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000570#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000571 {
572 char *p, *q;
573 int n = 0;
574
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700575 while ((p = initial_cmds[n]) != NULL) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000576 do {
577 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000578 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000579 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000580 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000581 *p++ = '\0';
582 if (*q)
583 colon(q);
584 } while (p);
585 free(initial_cmds[n]);
586 initial_cmds[n] = NULL;
587 n++;
588 }
589 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000590#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000591 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000592 //------This is the main Vi cmd handling loop -----------------------
593 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000594#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000595 if (crashme > 0) {
596 if ((end - text) > 1) {
597 crash_dummy(); // generate a random command
598 } else {
599 crashme = 0;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000600 string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
601 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000602 refresh(FALSE);
603 }
604 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000605#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000606 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000607#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000608 // save a copy of the current line- for the 'U" command
609 if (begin_line(dot) != cur_line) {
610 cur_line = begin_line(dot);
611 text_yank(begin_line(dot), end_line(dot), Ureg);
612 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000613#endif
614#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000615 // These are commands that change text[].
616 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000617 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000618 && cmd_mode == 0 // command mode
619 && c > '\0' // exclude NUL and non-ASCII chars
620 && c < 0x7f // (Unicode and such)
621 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000622 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000623 start_new_cmd_q(c);
624 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000625#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000626 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000627
Eric Andersen3f980402001-04-04 17:31:15 +0000628 // poll to see if there is input already waiting. if we are
629 // not able to display output fast enough to keep up, skip
630 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200631 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000632 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000633 refresh(FALSE);
634 show_status_line();
635 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000636#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000637 if (crashme > 0)
638 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000639#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000640 }
641 //-------------------------------------------------------------------
642
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000643 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000644 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000645#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000646}
647
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000648//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000649#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000650static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000651{
652 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000653 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000654 IF_FEATURE_VI_YANKMARK(char c;)
655 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000656
657 *addr = -1; // assume no addr
658 if (*p == '.') { // the current line
659 p++;
660 q = begin_line(dot);
661 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000662 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000663#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000664 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000665 p++;
666 c = tolower(*p);
667 p++;
668 if (c >= 'a' && c <= 'z') {
669 // we have a mark
670 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000671 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000672 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000673 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000674 }
675 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000676 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000677#endif
678#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000679 else if (*p == '/') { // a search pattern
680 q = strchrnul(++p, '/');
681 pat = xstrndup(p, q - p); // save copy of pattern
682 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000683 if (*p == '/')
684 p++;
685 q = char_search(dot, pat, FORWARD, FULL);
686 if (q != NULL) {
687 *addr = count_lines(text, q);
688 }
689 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000690 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000691#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000692 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000693 p++;
694 q = begin_line(end - 1);
695 *addr = count_lines(text, q);
696 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000697 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000698 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000699 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200700 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000701 *addr = -1;
702 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000703 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000704}
705
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000706static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000707{
708 //----- get the address' i.e., 1,3 'a,'b -----
709 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000710 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000711 p++; // skip over leading spaces
712 if (*p == '%') { // alias for 1,$
713 p++;
714 *b = 1;
715 *e = count_lines(text, end-1);
716 goto ga0;
717 }
718 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000719 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000720 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000721 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000722 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000723 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000724 p++;
725 // get SECOND addr, if present
726 p = get_one_address(p, e);
727 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000728 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000729 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000730 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000731 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000732}
733
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000734#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000735static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000736 const char *short_opname, int opt)
737{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000738 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000739 int l = strlen(opname) - 1; /* opname have + ' ' */
740
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200741 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000742 if (strncasecmp(a, opname, l) == 0
743 || strncasecmp(a, short_opname, 2) == 0
744 ) {
745 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000746 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000747 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000748 vi_setops |= opt;
749 }
750}
751#endif
752
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000753// buf must be no longer than MAX_INPUT_LEN!
754static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000755{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000756 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000757 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000758 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000759 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000760
761 // :3154 // if (-e line 3154) goto it else stay put
762 // :4,33w! foo // write a portion of buffer to file "foo"
763 // :w // write all of buffer to current file
764 // :q // quit
765 // :q! // quit- dont care about modified file
766 // :'a,'z!sort -u // filter block through sort
767 // :'f // goto mark "f"
768 // :'fl // list literal the mark "f" line
769 // :.r bar // read file "bar" into buffer before dot
770 // :/123/,/abc/d // delete lines from "123" line to "abc" line
771 // :/xyz/ // goto the "xyz" line
772 // :s/find/replace/ // substitute pattern "find" with "replace"
773 // :!<cmd> // run <cmd> then return
774 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000775
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000776 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000777 goto vc1;
778 if (*buf == ':')
779 buf++; // move past the ':'
780
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000781 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000782 b = e = -1;
783 q = text; // assume 1,$ for the range
784 r = end - 1;
785 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000786 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000787
788 // look for optional address(es) :. :1 :1,9 :'q,'a :%
789 buf = get_address(buf, &b, &e);
790
791 // remember orig command line
792 orig_buf = buf;
793
794 // get the COMMAND into cmd[]
795 buf1 = cmd;
796 while (*buf != '\0') {
797 if (isspace(*buf))
798 break;
799 *buf1++ = *buf++;
800 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000801 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000802 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000803 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000804 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000805 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000806 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000807 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000808 if (buf1) {
809 useforce = TRUE;
810 *buf1 = '\0'; // get rid of !
811 }
812 if (b >= 0) {
813 // if there is only one addr, then the addr
814 // is the line number of the single line the
815 // user wants. So, reset the end
816 // pointer to point at end of the "b" line
817 q = find_line(b); // what line is #b
818 r = end_line(q);
819 li = 1;
820 }
821 if (e >= 0) {
822 // we were given two addrs. change the
823 // end pointer to the addr given by user.
824 r = find_line(e); // what line is #e
825 r = end_line(r);
826 li = e - b + 1;
827 }
828 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000829 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000830 if (i == 0) { // :123CR goto line #123
831 if (b >= 0) {
832 dot = find_line(b); // what line is #b
833 dot_skip_over_ws();
834 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000835 }
836#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200837 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000838 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000839 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000840 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000841 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000842 retcode = system(orig_buf + 1); // run the cmd
843 if (retcode)
844 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000845 rawmode();
846 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000847 }
848#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200849 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000850 if (b < 0) { // no addr given- use defaults
851 b = e = count_lines(text, dot);
852 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000853 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200854 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000855 if (b < 0) { // no addr given- use defaults
856 q = begin_line(dot); // assume .,. for the range
857 r = end_line(dot);
858 }
859 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
860 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200861 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000862 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000863 if (file_modified && !useforce) {
864 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000865 goto vc1;
866 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000867 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000868 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000869 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000870 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000871 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000872 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000873 } else {
874 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000875 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000876 goto vc1;
877 }
878
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000879 if (init_text_buffer(fn) < 0)
880 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000881
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000882#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000883 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
884 free(reg[Ureg]); // free orig line reg- for 'U'
885 reg[Ureg]= 0;
886 }
887 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
888 free(reg[YDreg]); // free default yank/delete register
889 reg[YDreg]= 0;
890 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000891#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000892 // how many lines in text[]?
893 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000894 status_line("\"%s\"%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000895 IF_FEATURE_VI_READONLY("%s")
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000896 " %dL, %dC", current_filename,
897 (file_size(fn) < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000898 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000899 ((readonly_mode) ? " [Readonly]" : ""),
900 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000901 li, ch);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200902 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000903 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100904 status_line_bold("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905 goto vc1;
906 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000907 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000908 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000909 free(current_filename);
910 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000911 } else {
912 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000913 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000914 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200915 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000916 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000917 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000918 cookmode();
919 show_help();
920 rawmode();
921 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200922 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000923 if (b < 0) { // no addr given- use defaults
924 q = begin_line(dot); // assume .,. for the range
925 r = end_line(dot);
926 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000927 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000928 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000929 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000930 int c_is_no_print;
931
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000932 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000933 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000934 if (c_is_no_print) {
935 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000936 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000937 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000938 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000939 write1("$\r");
940 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000941 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000942 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000943 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000944 else
945 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000946 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000947 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000948 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000949 standout_end();
950 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000951#if ENABLE_FEATURE_VI_SET
952 vc2:
953#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000954 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200955 } else if (strncmp(cmd, "quit", i) == 0 // Quit
956 || strncmp(cmd, "next", i) == 0 // edit next file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000957 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000958 if (useforce) {
959 // force end of argv list
960 if (*cmd == 'q') {
961 optind = save_argc;
962 }
963 editing = 0;
964 goto vc1;
965 }
966 // don't exit if the file been modified
967 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000968 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000969 (*cmd == 'q' ? "quit" : "next"));
970 goto vc1;
971 }
972 // are there other file to edit
973 if (*cmd == 'q' && optind < save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000974 status_line_bold("%d more file to edit", (save_argc - optind - 1));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000975 goto vc1;
976 }
977 if (*cmd == 'n' && optind >= save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000978 status_line_bold("No more files to edit");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000979 goto vc1;
980 }
981 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200982 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000983 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000984 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000985 status_line_bold("No filename given");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000986 goto vc1;
987 }
988 if (b < 0) { // no addr given- use defaults
989 q = begin_line(dot); // assume "dot"
990 }
991 // read after current line- unless user said ":0r foo"
992 if (b != 0)
993 q = next_line(q);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000994 { // dance around potentially-reallocated text[]
995 uintptr_t ofs = q - text;
996 ch = file_insert(fn, q, 0);
997 q = text + ofs;
998 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000999 if (ch < 0)
1000 goto vc1; // nothing was inserted
1001 // how many lines in text[]?
1002 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001003 status_line("\"%s\""
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001004 IF_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001005 " %dL, %dC", fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001006 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001007 li, ch);
1008 if (ch > 0) {
1009 // if the insert is before "dot" then we need to update
1010 if (q <= dot)
1011 dot += ch;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001012 /*file_modified++; - done by file_insert */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001013 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001014 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001015 if (file_modified && !useforce) {
1016 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001017 } else {
1018 // reset the filenames to edit
1019 optind = fn_start - 1;
1020 editing = 0;
1021 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001022#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001023 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001024#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001025 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001026#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001027 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001028 // only blank is regarded as args delmiter. What about tab '\t' ?
1029 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001030 // print out values of all options
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001031 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001032 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001033#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001034 if (!autoindent)
1035 printf("no");
1036 printf("autoindent ");
1037 if (!err_method)
1038 printf("no");
1039 printf("flash ");
1040 if (!ignorecase)
1041 printf("no");
1042 printf("ignorecase ");
1043 if (!showmatch)
1044 printf("no");
1045 printf("showmatch ");
1046 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001047#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001048 printf("\r\n");
1049 goto vc2;
1050 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001051#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001052 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001053 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001054 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001055 i = 2; // ":set noautoindent"
1056 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1057 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1058 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1059 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1060 /* tabstopXXXX */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001061 if (strncmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001062 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001063 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001064 tabstop = ch;
1065 }
1066 while (*argp && *argp != ' ')
1067 argp++; // skip to arg delimiter (i.e. blank)
1068 while (*argp && *argp == ' ')
1069 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001070 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001071#endif /* FEATURE_VI_SETOPTS */
1072#endif /* FEATURE_VI_SET */
1073#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001074 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001075 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001076 int gflag;
1077
1078 // F points to the "find" pattern
1079 // R points to the "replace" pattern
1080 // replace the cmd line delimiters "/" with NULLs
1081 gflag = 0; // global replace flag
1082 c = orig_buf[1]; // what is the delimiter
1083 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001084 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001085 if (!R)
1086 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001087 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001088 buf1 = strchr(R, c);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001089 if (!buf1)
1090 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001091 *buf1++ = '\0'; // terminate "replace"
1092 if (*buf1 == 'g') { // :s/foo/bar/g
1093 buf1++;
1094 gflag++; // turn on gflag
1095 }
1096 q = begin_line(q);
1097 if (b < 0) { // maybe :s/foo/bar/
1098 q = begin_line(dot); // start with cur line
1099 b = count_lines(text, q); // cur line number
1100 }
1101 if (e < 0)
1102 e = b; // maybe :.s/foo/bar/
1103 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1104 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001105 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001106 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001107 if (buf1) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001108 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001109 // we found the "find" pattern - delete it
1110 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001111 // inset the "replace" patern
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001112 bias = string_insert(buf1, R); // insert the string
1113 buf1 += bias;
1114 ls += bias;
1115 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001116 // check for "global" :s/foo/bar/g
1117 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001118 if ((buf1 + strlen(R)) < end_line(ls)) {
1119 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001120 goto vc4; // don't let q move past cur line
1121 }
1122 }
1123 }
1124 q = next_line(ls);
1125 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001126#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001127 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001128 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001129 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1130 || strncmp(cmd, "wq", i) == 0
1131 || strncmp(cmd, "wn", i) == 0
1132 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001133 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001134 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001135 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001136 fn = args;
1137 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001138#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001139 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001140 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001141 goto vc3;
1142 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001143#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001144 // how many lines in text[]?
1145 li = count_lines(q, r);
1146 ch = r - q + 1;
1147 // see if file exists- if not, its just a new file request
1148 if (useforce) {
1149 // if "fn" is not write-able, chmod u+w
1150 // sprintf(syscmd, "chmod u+w %s", fn);
1151 // system(syscmd);
1152 forced = TRUE;
1153 }
1154 l = file_write(fn, q, r);
1155 if (useforce && forced) {
1156 // chmod u-w
1157 // sprintf(syscmd, "chmod u-w %s", fn);
1158 // system(syscmd);
1159 forced = FALSE;
1160 }
Paul Fox61e45db2005-10-09 14:43:22 +00001161 if (l < 0) {
1162 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001163 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001164 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001165 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001166 if (q == text && r == end - 1 && l == ch) {
1167 file_modified = 0;
1168 last_file_modified = -1;
1169 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001170 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n'
1171 || cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N'
1172 )
1173 && l == ch
1174 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00001175 editing = 0;
1176 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001177 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001178#if ENABLE_FEATURE_VI_READONLY
1179 vc3:;
1180#endif
1181#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001182 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001183 if (b < 0) { // no addr given- use defaults
1184 q = begin_line(dot); // assume .,. for the range
1185 r = end_line(dot);
1186 }
1187 text_yank(q, r, YDreg);
1188 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001189 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001190 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001191#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001192 } else {
1193 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001194 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001195 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001196 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001197 dot = bound_dot(dot); // make sure "dot" is valid
1198 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001199#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001200 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001201 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001202#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001203}
Paul Fox61e45db2005-10-09 14:43:22 +00001204
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001205#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001206
1207static void Hit_Return(void)
1208{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001209 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001210
Denis Vlasenkof882f082007-12-23 02:36:51 +00001211 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001212 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001213 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001214 while ((c = get_one_char()) != '\n' && c != '\r')
1215 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001216 redraw(TRUE); // force redraw all
1217}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001218
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001219static int next_tabstop(int col)
1220{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001221 return col + ((tabstop - 1) - (col % tabstop));
1222}
1223
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001224//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001225static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001226{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001227 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001228 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001229 int cnt, ro, co;
1230
1231 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001232
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001233 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001234 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001235 // how many lines do we have to move
1236 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001237 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001238 screenbegin = beg_cur;
1239 if (cnt > (rows - 1) / 2) {
1240 // we moved too many lines. put "dot" in middle of screen
1241 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1242 screenbegin = prev_line(screenbegin);
1243 }
1244 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001245 } else {
1246 char *end_scr; // begin and end of screen
1247 end_scr = end_screen(); // last char of screen
1248 if (beg_cur > end_scr) {
1249 // "d" is after bottom line on screen
1250 // how many lines do we have to move
1251 cnt = count_lines(end_scr, beg_cur);
1252 if (cnt > (rows - 1) / 2)
1253 goto sc1; // too many lines
1254 for (ro = 0; ro < cnt - 1; ro++) {
1255 // move screen begin the same amount
1256 screenbegin = next_line(screenbegin);
1257 // now, move the end of screen
1258 end_scr = next_line(end_scr);
1259 end_scr = end_line(end_scr);
1260 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001261 }
1262 }
1263 // "d" is on screen- find out which row
1264 tp = screenbegin;
1265 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1266 if (tp == beg_cur)
1267 break;
1268 tp = next_line(tp);
1269 }
1270
1271 // find out what col "d" is on
1272 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001273 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001274 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001275 break;
1276 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001277 // handle tabs like real vi
1278 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001279 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001280 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001281 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001282 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1283 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001284 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001285 co++;
1286 tp++;
1287 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001288
1289 // "co" is the column where "dot" is.
1290 // The screen has "columns" columns.
1291 // The currently displayed columns are 0+offset -- columns+ofset
1292 // |-------------------------------------------------------------|
1293 // ^ ^ ^
1294 // offset | |------- columns ----------------|
1295 //
1296 // If "co" is already in this range then we do not have to adjust offset
1297 // but, we do have to subtract the "offset" bias from "co".
1298 // If "co" is outside this range then we have to change "offset".
1299 // If the first char of a line is a tab the cursor will try to stay
1300 // in column 7, but we have to set offset to 0.
1301
1302 if (co < 0 + offset) {
1303 offset = co;
1304 }
1305 if (co >= columns + offset) {
1306 offset = co - columns + 1;
1307 }
1308 // if the first char of the line is a tab, and "dot" is sitting on it
1309 // force offset to 0.
1310 if (d == beg_cur && *d == '\t') {
1311 offset = 0;
1312 }
1313 co -= offset;
1314
1315 *row = ro;
1316 *col = co;
1317}
1318
1319//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001320static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001321{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001322 if (p > text) {
1323 p = memrchr(text, '\n', p - text);
1324 if (!p)
1325 return text;
1326 return p + 1;
1327 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001328 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001329}
1330
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001331static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001332{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001333 if (p < end - 1) {
1334 p = memchr(p, '\n', end - p - 1);
1335 if (!p)
1336 return end - 1;
1337 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001338 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001339}
1340
Denis Vlasenkof882f082007-12-23 02:36:51 +00001341static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001342{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001343 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001344 // Try to stay off of the Newline
1345 if (*p == '\n' && (p - begin_line(p)) > 0)
1346 p--;
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 *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001351{
1352 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001353 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001354 p--; // step to prev line
1355 p = begin_line(p); // goto begining of prev line
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 *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001360{
1361 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001362 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001363 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001364 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001365}
1366
1367//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001368static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001369{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001370 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001371 int cnt;
1372
1373 // find new bottom line
1374 q = screenbegin;
1375 for (cnt = 0; cnt < rows - 2; cnt++)
1376 q = next_line(q);
1377 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001378 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001379}
1380
Denis Vlasenkof882f082007-12-23 02:36:51 +00001381// count line from start to stop
1382static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001383{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001384 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001385 int cnt;
1386
Denis Vlasenkof882f082007-12-23 02:36:51 +00001387 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001388 q = start;
1389 start = stop;
1390 stop = q;
1391 }
1392 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001393 stop = end_line(stop);
1394 while (start <= stop && start <= end - 1) {
1395 start = end_line(start);
1396 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001397 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001398 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001399 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001400 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001401}
1402
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001403static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001404{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001405 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001406
1407 for (q = text; li > 1; li--) {
1408 q = next_line(q);
1409 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001410 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001411}
1412
1413//----- Dot Movement Routines ----------------------------------
1414static void dot_left(void)
1415{
1416 if (dot > text && dot[-1] != '\n')
1417 dot--;
1418}
1419
1420static void dot_right(void)
1421{
1422 if (dot < end - 1 && *dot != '\n')
1423 dot++;
1424}
1425
1426static void dot_begin(void)
1427{
1428 dot = begin_line(dot); // return pointer to first char cur line
1429}
1430
1431static void dot_end(void)
1432{
1433 dot = end_line(dot); // return pointer to last char cur line
1434}
1435
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001436static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001437{
1438 int co;
1439
1440 p = begin_line(p);
1441 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001442 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001443 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001444 break;
1445 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001446 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001447 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001448 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001449 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001450 co++;
1451 p++;
1452 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001453 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001454}
1455
1456static void dot_next(void)
1457{
1458 dot = next_line(dot);
1459}
1460
1461static void dot_prev(void)
1462{
1463 dot = prev_line(dot);
1464}
1465
1466static void dot_scroll(int cnt, int dir)
1467{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001468 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001469
1470 for (; cnt > 0; cnt--) {
1471 if (dir < 0) {
1472 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001473 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001474 screenbegin = prev_line(screenbegin);
1475 } else {
1476 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001477 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001478 screenbegin = next_line(screenbegin);
1479 }
1480 }
1481 // make sure "dot" stays on the screen so we dont scroll off
1482 if (dot < screenbegin)
1483 dot = screenbegin;
1484 q = end_screen(); // find new bottom line
1485 if (dot > q)
1486 dot = begin_line(q); // is dot is below bottom line?
1487 dot_skip_over_ws();
1488}
1489
1490static void dot_skip_over_ws(void)
1491{
1492 // skip WS
1493 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1494 dot++;
1495}
1496
1497static void dot_delete(void) // delete the char at 'dot'
1498{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001499 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001500}
1501
Denis Vlasenkof882f082007-12-23 02:36:51 +00001502static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001503{
1504 if (p >= end && end > text) {
1505 p = end - 1;
1506 indicate_error('1');
1507 }
1508 if (p < text) {
1509 p = text;
1510 indicate_error('2');
1511 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001512 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001513}
1514
1515//----- Helper Utility Routines --------------------------------
1516
1517//----------------------------------------------------------------
1518//----- Char Routines --------------------------------------------
1519/* Chars that are part of a word-
1520 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1521 * Chars that are Not part of a word (stoppers)
1522 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1523 * Chars that are WhiteSpace
1524 * TAB NEWLINE VT FF RETURN SPACE
1525 * DO NOT COUNT NEWLINE AS WHITESPACE
1526 */
1527
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001528static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001529{
1530 int li;
1531
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001532 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001533 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001534 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001535 // initialize the new screen. assume this will be a empty file.
1536 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001537 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001538 for (li = 1; li < ro - 1; li++) {
1539 screen[(li * co) + 0] = '~';
1540 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001541 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001542}
1543
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001544#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001545static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001546{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001547 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001548 return strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001549 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001550 return strncmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551}
1552
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001553// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001554static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001555{
1556#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001557 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001558 int len;
1559
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001560 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001561 if (dir == FORWARD) {
1562 stop = end - 1; // assume range is p - end-1
1563 if (range == LIMITED)
1564 stop = next_line(p); // range is to next line
1565 for (start = p; start < stop; start++) {
1566 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001567 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001568 }
1569 }
1570 } else if (dir == BACK) {
1571 stop = text; // assume range is text - p
1572 if (range == LIMITED)
1573 stop = prev_line(p); // range is to prev line
1574 for (start = p - len; 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 }
1580 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001581 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001582#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001583 char *q;
1584 struct re_pattern_buffer preg;
1585 int i;
1586 int size, range;
1587
1588 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1589 preg.translate = 0;
1590 preg.fastmap = 0;
1591 preg.buffer = 0;
1592 preg.allocated = 0;
1593
1594 // assume a LIMITED forward search
1595 q = next_line(p);
1596 q = end_line(q);
1597 q = end - 1;
1598 if (dir == BACK) {
1599 q = prev_line(p);
1600 q = text;
1601 }
1602 // count the number of chars to search over, forward or backward
1603 size = q - p;
1604 if (size < 0)
1605 size = p - q;
1606 // RANGE could be negative if we are searching backwards
1607 range = q - p;
1608
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001609 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001610 if (q != 0) {
1611 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001612 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001613 i = 0; // return p if pattern not compiled
1614 goto cs1;
1615 }
1616
1617 q = p;
1618 if (range < 0) {
1619 q = p - size;
1620 if (q < text)
1621 q = text;
1622 }
1623 // search for the compiled pattern, preg, in p[]
1624 // range < 0- search backward
1625 // range > 0- search forward
1626 // 0 < start < size
1627 // re_search() < 0 not found or error
1628 // re_search() > 0 index of found pattern
1629 // struct pattern char int int int struct reg
1630 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1631 i = re_search(&preg, q, size, 0, range, 0);
1632 if (i == -1) {
1633 p = 0;
1634 i = 0; // return NULL if pattern not found
1635 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001636 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001637 if (dir == FORWARD) {
1638 p = p + i;
1639 } else {
1640 p = p - i;
1641 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001642 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001643#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001644}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001645#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001646
Denis Vlasenko33875382008-06-21 20:31:50 +00001647static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001648{
1649 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001650 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001651 refresh(FALSE); // show the ^
1652 c = get_one_char();
1653 *p = c;
1654 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001655 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001656 } else if (c == 27) { // Is this an ESC?
1657 cmd_mode = 0;
1658 cmdcnt = 0;
1659 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001660 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001661 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001662 p--;
1663 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001664 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001665 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001666 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001667 p--;
1668 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001669 }
1670 } else {
1671 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001672 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001673
1674 if (c == 13)
1675 c = '\n'; // translate \r to \n
1676 sp = p; // remember addr of insert
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001677 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001678#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001679 if (showmatch && strchr(")]}", *sp) != NULL) {
1680 showmatching(sp);
1681 }
1682 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001683 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001684 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001685 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00001686 len = strspn(q, " \t"); // space or tab
1687 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001688 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001689 bias = text_hole_make(p, len);
1690 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001691 q += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001692 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001693 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001694 }
1695 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001696#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001697 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001698 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001699}
1700
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001701// might reallocate text[]! use p += stupid_insert(p, ...),
1702// and be careful to not use pointers into potentially freed text[]!
1703static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001704{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001705 uintptr_t bias;
1706 bias = text_hole_make(p, 1);
1707 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001708 *p = c;
1709 //file_modified++; - done by text_hole_make()
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001710 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001711}
1712
Denis Vlasenko33875382008-06-21 20:31:50 +00001713static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001714{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001715 char *save_dot, *p, *q, *t;
1716 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001717
1718 save_dot = dot;
1719 p = q = dot;
1720
1721 if (strchr("cdy><", c)) {
1722 // these cmds operate on whole lines
1723 p = q = begin_line(p);
1724 for (cnt = 1; cnt < cmdcnt; cnt++) {
1725 q = next_line(q);
1726 }
1727 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001728 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001729 // These cmds operate on char positions
1730 do_cmd(c); // execute movement cmd
1731 q = dot;
1732 } else if (strchr("wW", c)) {
1733 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001734 // if we are at the next word's first char
1735 // step back one char
1736 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001737 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001738 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1739 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1740 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001741 if (dot > text && *dot == '\n')
1742 dot--; // stay off NL
1743 q = dot;
1744 } else if (strchr("H-k{", c)) {
1745 // these operate on multi-lines backwards
1746 q = end_line(dot); // find NL
1747 do_cmd(c); // execute movement cmd
1748 dot_begin();
1749 p = dot;
1750 } else if (strchr("L+j}\r\n", c)) {
1751 // these operate on multi-lines forwards
1752 p = begin_line(dot);
1753 do_cmd(c); // execute movement cmd
1754 dot_end(); // find NL
1755 q = dot;
1756 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001757 // nothing -- this causes any other values of c to
1758 // represent the one-character range under the
1759 // cursor. this is correct for ' ' and 'l', but
1760 // perhaps no others.
1761 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001762 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001763 if (q < p) {
1764 t = q;
1765 q = p;
1766 p = t;
1767 }
1768
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001769 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001770 if (q > p && strchr("^0bBh\b\177", c)) q--;
1771
1772 multiline = 0;
1773 for (t = p; t <= q; t++) {
1774 if (*t == '\n') {
1775 multiline = 1;
1776 break;
1777 }
1778 }
1779
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001780 *start = p;
1781 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001782 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001783 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001784}
1785
Denis Vlasenko33875382008-06-21 20:31:50 +00001786static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001787{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001788 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001789 int test, inc;
1790
1791 inc = dir;
1792 c = c0 = p[0];
1793 ci = p[inc];
1794 test = 0;
1795
1796 if (type == S_BEFORE_WS) {
1797 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001798 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001799 }
1800 if (type == S_TO_WS) {
1801 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001802 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001803 }
1804 if (type == S_OVER_WS) {
1805 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001806 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001807 }
1808 if (type == S_END_PUNCT) {
1809 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001810 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001811 }
1812 if (type == S_END_ALNUM) {
1813 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001814 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001815 }
1816 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001817 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001818}
1819
Denis Vlasenko33875382008-06-21 20:31:50 +00001820static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001821{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001822 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001823
1824 while (st_test(p, type, dir, &c)) {
1825 // make sure we limit search to correct number of lines
1826 if (c == '\n' && --linecnt < 1)
1827 break;
1828 if (dir >= 0 && p >= end - 1)
1829 break;
1830 if (dir < 0 && p <= text)
1831 break;
1832 p += dir; // move to next char
1833 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001834 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001835}
1836
1837// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001838static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001839{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001840 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001841 int dir, level;
1842
1843 match = ')';
1844 level = 1;
1845 dir = 1; // assume forward
1846 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001847 case '(': match = ')'; break;
1848 case '[': match = ']'; break;
1849 case '{': match = '}'; break;
1850 case ')': match = '('; dir = -1; break;
1851 case ']': match = '['; dir = -1; break;
1852 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001853 }
1854 for (q = p + dir; text <= q && q < end; q += dir) {
1855 // look for match, count levels of pairs (( ))
1856 if (*q == c)
1857 level++; // increase pair levels
1858 if (*q == match)
1859 level--; // reduce pair level
1860 if (level == 0)
1861 break; // found matching pair
1862 }
1863 if (level != 0)
1864 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001865 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001866}
1867
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001868#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001869// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001870static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001871{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001872 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001873
1874 // we found half of a pair
1875 q = find_pair(p, *p); // get loc of matching char
1876 if (q == NULL) {
1877 indicate_error('3'); // no matching char
1878 } else {
1879 // "q" now points to matching pair
1880 save_dot = dot; // remember where we are
1881 dot = q; // go to new loc
1882 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001883 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001884 dot = save_dot; // go back to old loc
1885 refresh(FALSE);
1886 }
1887}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001888#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001889
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001890// open a hole in text[]
1891// might reallocate text[]! use p += text_hole_make(p, ...),
1892// and be careful to not use pointers into potentially freed text[]!
1893static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001894{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001895 uintptr_t bias = 0;
1896
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001897 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001898 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001899 end += size; // adjust the new END
1900 if (end >= (text + text_size)) {
1901 char *new_text;
1902 text_size += end - (text + text_size) + 10240;
1903 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001904 bias = (new_text - text);
1905 screenbegin += bias;
1906 dot += bias;
1907 end += bias;
1908 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001909 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001910 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001911 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001912 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001913 file_modified++;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001914 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001915}
1916
1917// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001918static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001919{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001920 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001921 int cnt, hole_size;
1922
1923 // move forwards, from beginning
1924 // assume p <= q
1925 src = q + 1;
1926 dest = p;
1927 if (q < p) { // they are backward- swap them
1928 src = p + 1;
1929 dest = q;
1930 }
1931 hole_size = q - p + 1;
1932 cnt = end - src;
1933 if (src < text || src > end)
1934 goto thd0;
1935 if (dest < text || dest >= end)
1936 goto thd0;
1937 if (src >= end)
1938 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001939 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001940 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001941 end = end - hole_size; // adjust the new END
1942 if (dest >= end)
1943 dest = end - 1; // make sure dest in below end-1
1944 if (end <= text)
1945 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001946 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001947 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001948 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001949}
1950
1951// copy text into register, then delete text.
1952// if dist <= 0, do not include, or go past, a NewLine
1953//
Denis Vlasenko33875382008-06-21 20:31:50 +00001954static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001955{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001956 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001957
1958 // make sure start <= stop
1959 if (start > stop) {
1960 // they are backwards, reverse them
1961 p = start;
1962 start = stop;
1963 stop = p;
1964 }
1965 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001966 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001967 p = start;
1968 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001969 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001970 // dont go past a NewLine
1971 for (; p + 1 <= stop; p++) {
1972 if (p[1] == '\n') {
1973 stop = p; // "stop" just before NewLine
1974 break;
1975 }
1976 }
1977 }
1978 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001979#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001980 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001981#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001982 if (yf == YANKDEL) {
1983 p = text_hole_delete(start, stop);
1984 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001985 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001986}
1987
1988static void show_help(void)
1989{
1990 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001991#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001992 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001993#endif
1994#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001995 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001996#endif
1997#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001998 "\n\tLine marking with 'x"
1999 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002000#endif
2001#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002002 "\n\tReadonly if vi is called as \"view\""
2003 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002004#endif
2005#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002006 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002007#endif
2008#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002009 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002010#endif
2011#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002012 "\n\tSignal catching- ^C"
2013 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002014#endif
2015#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002016 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002017#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002018 );
2019}
2020
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002021#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002022static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002023{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002024 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002025 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002026 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002027 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002028 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002029 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002030 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002031 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002032 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002033}
2034
2035static void end_cmd_q(void)
2036{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002037#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002038 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002039#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002040 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002041}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002042#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002043
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002044#if ENABLE_FEATURE_VI_YANKMARK \
2045 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2046 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002047// might reallocate text[]! use p += string_insert(p, ...),
2048// and be careful to not use pointers into potentially freed text[]!
2049static uintptr_t string_insert(char *p, const char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002050{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002051 uintptr_t bias;
2052 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002053
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002054 i = strlen(s);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002055 bias = text_hole_make(p, i);
2056 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002057 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002058#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002059 {
2060 int cnt;
2061 for (cnt = 0; *s != '\0'; s++) {
2062 if (*s == '\n')
2063 cnt++;
2064 }
2065 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2066 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002067#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002068 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002069}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002070#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002071
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002072#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002073static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002074{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002075 int cnt = q - p;
2076 if (cnt < 0) { // they are backwards- reverse them
2077 p = q;
2078 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002079 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002080 free(reg[dest]); // if already a yank register, free it
2081 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002082 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002083}
2084
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002085static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002086{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002087 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002088
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002089 c = 'D'; // default to D-reg
2090 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002091 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002092 if (YDreg == 26)
2093 c = 'D';
2094 if (YDreg == 27)
2095 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002096 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002097}
2098
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002099static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002100{
2101 // A context is defined to be "modifying text"
2102 // Any modifying command establishes a new context.
2103
2104 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002105 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002106 // we are trying to modify text[]- make this the current context
2107 mark[27] = mark[26]; // move cur to prev
2108 mark[26] = dot; // move local to cur
2109 context_start = prev_line(prev_line(dot));
2110 context_end = next_line(next_line(dot));
2111 //loiter= start_loiter= now;
2112 }
2113 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002114}
2115
Denis Vlasenkof882f082007-12-23 02:36:51 +00002116static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002117{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002118 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002119
2120 // the current context is in mark[26]
2121 // the previous context is in mark[27]
2122 // only swap context if other context is valid
2123 if (text <= mark[27] && mark[27] <= end - 1) {
2124 tmp = mark[27];
2125 mark[27] = mark[26];
2126 mark[26] = tmp;
2127 p = mark[26]; // where we are going- previous context
2128 context_start = prev_line(prev_line(prev_line(p)));
2129 context_end = next_line(next_line(next_line(p)));
2130 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002131 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002132}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002133#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002134
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002135//----- Set terminal attributes --------------------------------
2136static void rawmode(void)
2137{
2138 tcgetattr(0, &term_orig);
2139 term_vi = term_orig;
2140 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2141 term_vi.c_iflag &= (~IXON & ~ICRNL);
2142 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002143 term_vi.c_cc[VMIN] = 1;
2144 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002145 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002146 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002147}
2148
2149static void cookmode(void)
2150{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002151 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002152 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002153}
2154
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002155#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002156//----- Come here when we get a window resize signal ---------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002157static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002158{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002159 int save_errno = errno;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002160 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002161 signal(SIGWINCH, winch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002162 query_screen_dimensions();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002163 new_screen(rows, columns); // get memory for virtual screen
2164 redraw(TRUE); // re-draw the screen
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002165 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002166}
2167
2168//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002169static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002170{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002171 int save_errno = errno;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002172 rawmode(); // terminal to "raw"
2173 last_status_cksum = 0; // force status update
2174 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002175
2176 signal(SIGTSTP, suspend_sig);
2177 signal(SIGCONT, SIG_DFL);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002178 //kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
2179 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002180}
2181
2182//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002183static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002184{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002185 int save_errno = errno;
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002186 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002187 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002188
2189 signal(SIGCONT, cont_sig);
2190 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002191 kill(my_pid, SIGTSTP);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002192 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002193}
2194
2195//----- Come here when we get a signal ---------------------------
2196static void catch_sig(int sig)
2197{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002198 signal(SIGINT, catch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002199 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002200}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002201#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002202
Denys Vlasenko606291b2009-09-23 23:15:43 +02002203static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002204{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002205 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002206
Denys Vlasenko606291b2009-09-23 23:15:43 +02002207 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002208 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002209 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002210}
2211
2212//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002213static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002214{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002215 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002216
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002217 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002218 c = read_key(STDIN_FILENO, readbuffer, /*timeout off:*/ -2);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002219 if (c == -1) { // EOF/error
2220 go_bottom_and_clear_to_eol();
2221 cookmode(); // terminal to "cooked"
2222 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002223 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002224 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002225}
2226
2227//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002228static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002229{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002230 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002231
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002232#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002233 if (!adding2q) {
2234 // we are not adding to the q.
2235 // but, we may be reading from a q
2236 if (ioq == 0) {
2237 // there is no current q, read from STDIN
2238 c = readit(); // get the users input
2239 } else {
2240 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002241 // careful with correct sign expansion!
2242 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002243 if (c == '\0') {
2244 // the end of the q, read from STDIN
2245 free(ioq_start);
2246 ioq_start = ioq = 0;
2247 c = readit(); // get the users input
2248 }
2249 }
2250 } else {
2251 // adding STDIN chars to q
2252 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002253 if (lmc_len >= MAX_INPUT_LEN - 1) {
2254 status_line_bold("last_modifying_cmd overrun");
2255 } else {
2256 // add new char to q
2257 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002258 }
2259 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002260#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002261 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002262#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002263 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002264}
2265
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002266// Get input line (uses "status line" area)
2267static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002268{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002269 // char [MAX_INPUT_LEN]
2270#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002271
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002272 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002273 int i;
2274
2275 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002276 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002277 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002278 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002279
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002280 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002281 while (i < MAX_INPUT_LEN) {
2282 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002283 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002284 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002285 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002286 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002287 buf[--i] = '\0';
2288 write1("\b \b"); // erase char on screen
2289 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002290 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002291 } else if (c > 0 && c < 256) { // exclude Unicode
2292 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002293 buf[i] = c;
2294 buf[++i] = '\0';
2295 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002296 }
2297 }
2298 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002299 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002300#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002301}
2302
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002303static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002304{
2305 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002306 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002307
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002308 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002309 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002310 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002311 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002312}
2313
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002314// might reallocate text[]!
2315static int file_insert(const char *fn, char *p, int update_ro_status)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002316{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002317 int cnt = -1;
2318 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002319 struct stat statbuf;
2320
2321 /* Validate file */
2322 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002323 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002324 goto fi0;
2325 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002326 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002327 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002328 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002329 goto fi0;
2330 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002331 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002332 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002333 goto fi0;
2334 }
2335
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002336 // read file to buffer
2337 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002338 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002339 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002340 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002341 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002342 size = statbuf.st_size;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002343 p += text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002344 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002345 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002346 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002347 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002348 } else if (cnt < size) {
2349 // There was a partial read, shrink unused space text[]
2350 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denys Vlasenko6331cf02009-11-13 09:08:27 +01002351 status_line_bold("can't read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002352 }
2353 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002354 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002355 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002356 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002357#if ENABLE_FEATURE_VI_READONLY
2358 if (update_ro_status
2359 && ((access(fn, W_OK) < 0) ||
2360 /* root will always have access()
2361 * so we check fileperms too */
2362 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2363 )
2364 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002365 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002366 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002367#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002368 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002369}
2370
Denis Vlasenko33875382008-06-21 20:31:50 +00002371static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002372{
2373 int fd, cnt, charcnt;
2374
2375 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002376 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002377 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002378 }
2379 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002380 /* By popular request we do not open file with O_TRUNC,
2381 * but instead ftruncate() it _after_ successful write.
2382 * Might reduce amount of data lost on power fail etc.
2383 */
2384 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002385 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002386 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002387 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002388 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002389 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002390 if (charcnt == cnt) {
2391 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002392 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002393 } else {
2394 charcnt = 0;
2395 }
2396 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002397 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002398}
2399
2400//----- Terminal Drawing ---------------------------------------
2401// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002402// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002403// screen coordinates
2404// 0,0 ... 0,79
2405// 1,0 ... 1,79
2406// . ... .
2407// . ... .
2408// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002409// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002410
2411//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002412static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002413{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002414 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002415#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2416 enum {
2417 SZ_UP = sizeof(CMup),
2418 SZ_DN = sizeof(CMdown),
2419 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2420 };
2421 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2422#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002423 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002424
2425 if (row < 0) row = 0;
2426 if (row >= rows) row = rows - 1;
2427 if (col < 0) col = 0;
2428 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002429
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002430 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002431 sprintf(cm1, CMrc, row + 1, col + 1);
2432 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002433
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002434#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002435 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002436 char *screenp;
2437 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002438 int diff = Rrow - row;
2439
2440 if (diff < -5 || diff > 5)
2441 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002442
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002443 //----- find the minimum # of chars to move cursor -------------
2444 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2445 cm2[0] = '\0';
2446
2447 // move to the correct row
2448 while (row < Rrow) {
2449 // the cursor has to move up
2450 strcat(cm2, CMup);
2451 Rrow--;
2452 }
2453 while (row > Rrow) {
2454 // the cursor has to move down
2455 strcat(cm2, CMdown);
2456 Rrow++;
2457 }
2458
2459 // now move to the correct column
2460 strcat(cm2, "\r"); // start at col 0
2461 // just send out orignal source char to get to correct place
2462 screenp = &screen[row * columns]; // start of screen line
2463 strncat(cm2, screenp, col);
2464
2465 // pick the shortest cursor motion to send out
2466 if (strlen(cm2) < strlen(cm)) {
2467 cm = cm2;
2468 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002469 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002470 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002471 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002472#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002473 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002474}
2475
2476//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002477static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002478{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002479 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002480}
2481
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002482static void go_bottom_and_clear_to_eol(void)
2483{
2484 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2485 clear_to_eol(); // erase to end of line
2486}
2487
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002488//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002489static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002490{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002491 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002492}
2493
2494//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002495static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002496{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002497 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002498}
2499
2500//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002501static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002502{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002503 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002504}
2505
2506//----- Flash the screen --------------------------------------
2507static void flash(int h)
2508{
2509 standout_start(); // send "start reverse video" sequence
2510 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002511 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002512 standout_end(); // send "end reverse video" sequence
2513 redraw(TRUE);
2514}
2515
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002516static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002517{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002518#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002519 if (crashme > 0)
2520 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002521#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002522 if (!err_method) {
2523 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002524 } else {
2525 flash(10);
2526 }
2527}
2528
2529//----- Screen[] Routines --------------------------------------
2530//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002531static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002532{
2533 memset(screen, ' ', screensize); // clear new screen
2534}
2535
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002536static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002537{
2538 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002539 char *e = buf + count;
2540
Paul Fox8552aec2005-09-16 12:20:05 +00002541 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002542 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002543 return sum;
2544}
2545
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002546//----- Draw the status line at bottom of the screen -------------
2547static void show_status_line(void)
2548{
Paul Foxc3504852005-09-16 12:48:18 +00002549 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002550
Paul Fox8552aec2005-09-16 12:20:05 +00002551 // either we already have an error or status message, or we
2552 // create one.
2553 if (!have_status_msg) {
2554 cnt = format_edit_status();
2555 cksum = bufsum(status_buffer, cnt);
2556 }
2557 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002558 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002559 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002560 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00002561 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002562 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002563 (columns - 1) ) {
2564 have_status_msg = 0;
2565 Hit_Return();
2566 }
2567 have_status_msg = 0;
2568 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002569 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2570 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002571 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002572}
2573
2574//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002575// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002576static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002577{
2578 va_list args;
2579
2580 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002581 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002582 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002583 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002584 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002585
2586 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002587}
2588
Paul Fox8552aec2005-09-16 12:20:05 +00002589// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002590static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002591{
2592 va_list args;
2593
2594 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002595 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002596 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002597
2598 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002599}
2600
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002601// copy s to buf, convert unprintable
2602static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002603{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002604 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002605 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002606
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002607 buf[0] = '\0';
2608 if (!s[0])
2609 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002610
2611 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002612 for (; *s; s++) {
2613 int c_is_no_print;
2614
2615 c = *s;
2616 c_is_no_print = (c & 0x80) && !Isprint(c);
2617 if (c_is_no_print) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002618 strcpy(d, SOn);
2619 d += sizeof(SOn)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002620 c = '.';
2621 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002622 if (c < ' ' || c == 0x7f) {
2623 *d++ = '^';
2624 c |= '@'; /* 0x40 */
2625 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002626 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002627 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002628 *d++ = c;
2629 *d = '\0';
2630 if (c_is_no_print) {
2631 strcpy(d, SOs);
2632 d += sizeof(SOs)-1;
2633 }
2634 if (*s == '\n') {
2635 *d++ = '$';
2636 *d = '\0';
2637 }
2638 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002639 break;
2640 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002641}
2642
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002643static void not_implemented(const char *s)
2644{
2645 char buf[MAX_INPUT_LEN];
2646
2647 print_literal(buf, s);
2648 status_line_bold("\'%s\' is not implemented", buf);
2649}
2650
2651// show file status on status line
2652static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002653{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002654 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002655
2656#define tot format_edit_status__tot
2657
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002658 int cur, percent, ret, trunc_at;
2659
Paul Fox8552aec2005-09-16 12:20:05 +00002660 // file_modified is now a counter rather than a flag. this
2661 // helps reduce the amount of line counting we need to do.
2662 // (this will cause a mis-reporting of modified status
2663 // once every MAXINT editing operations.)
2664
2665 // it would be nice to do a similar optimization here -- if
2666 // we haven't done a motion that could have changed which line
2667 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002668 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002669
2670 // reduce counting -- the total lines can't have
2671 // changed if we haven't done any edits.
2672 if (file_modified != last_file_modified) {
2673 tot = cur + count_lines(dot, end - 1) - 1;
2674 last_file_modified = file_modified;
2675 }
2676
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002677 // current line percent
2678 // ------------- ~~ ----------
2679 // total lines 100
2680 if (tot > 0) {
2681 percent = (100 * cur) / tot;
2682 } else {
2683 cur = tot = 0;
2684 percent = 100;
2685 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002686
Paul Fox8552aec2005-09-16 12:20:05 +00002687 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2688 columns : STATUS_BUFFER_LEN-1;
2689
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002690 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002691#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002692 "%c %s%s%s %d/%d %d%%",
2693#else
2694 "%c %s%s %d/%d %d%%",
2695#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002696 cmd_mode_indicator[cmd_mode & 3],
2697 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002698#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002699 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002700#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002701 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002702 cur, tot, percent);
2703
2704 if (ret >= 0 && ret < trunc_at)
2705 return ret; /* it all fit */
2706
2707 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002708#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002709}
2710
2711//----- Force refresh of all Lines -----------------------------
2712static void redraw(int full_screen)
2713{
2714 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002715 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002716 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002717 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002718 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002719 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002720}
2721
2722//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002723static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002724{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002725 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002726 int co;
2727 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002728 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002729
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002730 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002731 co = 0;
2732 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002733 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002734 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002735 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002736 if (c == '\n')
2737 break;
2738 if ((c & 0x80) && !Isprint(c)) {
2739 c = '.';
2740 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002741 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002742 if (c == '\t') {
2743 c = ' ';
2744 // co % 8 != 7
2745 while ((co % tabstop) != (tabstop - 1)) {
2746 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002747 }
2748 } else {
2749 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002750 if (c == 0x7f)
2751 c = '?';
2752 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002753 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002754 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002755 }
2756 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002757 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002758 // discard scrolled-off-to-the-left portion,
2759 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002760 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002761 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002762 co -= tabstop;
2763 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002764 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002765 if (src >= end)
2766 break;
2767 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002768 // check "short line, gigantic offset" case
2769 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002770 ofs = co;
2771 // discard last scrolled off part
2772 co -= ofs;
2773 dest += ofs;
2774 // fill the rest with spaces
2775 if (co < columns)
2776 memset(&dest[co], ' ', columns - co);
2777 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002778}
2779
2780//----- Refresh the changed screen lines -----------------------
2781// Copy the source line from text[] into the buffer and note
2782// if the current screenline is different from the new buffer.
2783// If they differ then that line needs redrawing on the terminal.
2784//
2785static void refresh(int full_screen)
2786{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002787#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002788
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002789 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002790 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002791
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002792 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002793 unsigned c = columns, r = rows;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002794 query_screen_dimensions();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002795 full_screen |= (c - columns) | (r - rows);
2796 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002797 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2798 tp = screenbegin; // index into text[] of top line
2799
2800 // compare text[] to screen[] and mark screen[] lines that need updating
2801 for (li = 0; li < rows - 1; li++) {
2802 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002803 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002804 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002805 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002806
2807 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002808 if (tp < end) {
2809 char *t = memchr(tp, '\n', end - tp);
2810 if (!t) t = end - 1;
2811 tp = t + 1;
2812 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002813
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002814 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002815 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002816 cs = 0;
2817 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002818 sp = &screen[li * columns]; // start of screen line
2819 if (full_screen) {
2820 // force re-draw of every single column from 0 - columns-1
2821 goto re0;
2822 }
2823 // compare newly formatted buffer with virtual screen
2824 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002825 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002826 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002827 changed = TRUE; // mark for redraw
2828 break;
2829 }
2830 }
2831
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002832 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002833 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002834 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002835 changed = TRUE; // mark for redraw
2836 break;
2837 }
2838 }
2839 // now, cs is index of first diff, and ce is index of last diff
2840
2841 // if horz offset has changed, force a redraw
2842 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002843 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002844 changed = TRUE;
2845 }
2846
2847 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002848 if (cs < 0) cs = 0;
2849 if (ce > columns - 1) ce = columns - 1;
2850 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002851 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002852 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002853 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002854 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002855
2856 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002857 //if (offset != old_offset) {
2858 // // place_cursor is still too stupid
2859 // // to handle offsets correctly
2860 // place_cursor(li, cs, FALSE);
2861 //} else {
2862 place_cursor(li, cs, TRUE);
2863 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002864
2865 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002866 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002867 }
2868 }
2869
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002870 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002871
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002872 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002873#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002874}
2875
Eric Andersen3f980402001-04-04 17:31:15 +00002876//---------------------------------------------------------------------
2877//----- the Ascii Chart -----------------------------------------------
2878//
2879// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2880// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2881// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2882// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2883// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2884// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2885// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2886// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2887// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2888// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2889// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2890// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2891// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2892// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2893// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2894// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2895//---------------------------------------------------------------------
2896
2897//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002898static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00002899{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002900 const char *msg = msg; // for compiler
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002901 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002902 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00002903 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002904 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002905 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00002906
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002907// c1 = c; // quiet the compiler
2908// cnt = yf = 0; // quiet the compiler
2909// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002910 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002911
Paul Fox8552aec2005-09-16 12:20:05 +00002912 show_status_line();
2913
Eric Andersenbff7a602001-11-17 07:15:43 +00002914 /* if this is a cursor key, skip these checks */
2915 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002916 case KEYCODE_UP:
2917 case KEYCODE_DOWN:
2918 case KEYCODE_LEFT:
2919 case KEYCODE_RIGHT:
2920 case KEYCODE_HOME:
2921 case KEYCODE_END:
2922 case KEYCODE_PAGEUP:
2923 case KEYCODE_PAGEDOWN:
2924 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00002925 goto key_cmd_mode;
2926 }
2927
Eric Andersen3f980402001-04-04 17:31:15 +00002928 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002929 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002930 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002931 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002932 // we are 'R'eplacing the current *dot with new char
2933 if (*dot == '\n') {
2934 // don't Replace past E-o-l
2935 cmd_mode = 1; // convert to insert
2936 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002937 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002938 if (c != 27)
2939 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2940 dot = char_insert(dot, c); // insert new char
2941 }
2942 goto dc1;
2943 }
2944 }
2945 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002946 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002947 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002948 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002949 if (1 <= c || Isprint(c)) {
2950 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002951 }
2952 goto dc1;
2953 }
2954
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002955 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00002956 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00002957 //case 0x01: // soh
2958 //case 0x09: // ht
2959 //case 0x0b: // vt
2960 //case 0x0e: // so
2961 //case 0x0f: // si
2962 //case 0x10: // dle
2963 //case 0x11: // dc1
2964 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002965#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00002966 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00002967 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00002968 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002969#endif
Eric Andersen822c3832001-05-07 17:37:43 +00002970 //case 0x16: // syn
2971 //case 0x17: // etb
2972 //case 0x18: // can
2973 //case 0x1c: // fs
2974 //case 0x1d: // gs
2975 //case 0x1e: // rs
2976 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002977 //case '!': // !-
2978 //case '#': // #-
2979 //case '&': // &-
2980 //case '(': // (-
2981 //case ')': // )-
2982 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002983 //case '=': // =-
2984 //case '@': // @-
2985 //case 'F': // F-
2986 //case 'K': // K-
2987 //case 'Q': // Q-
2988 //case 'S': // S-
2989 //case 'T': // T-
2990 //case 'V': // V-
2991 //case '[': // [-
2992 //case '\\': // \-
2993 //case ']': // ]-
2994 //case '_': // _-
2995 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00002996 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002997 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02002998 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00002999 buf[0] = c;
3000 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003001 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003002 end_cmd_q(); // stop adding to q
3003 case 0x00: // nul- ignore
3004 break;
3005 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003006 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00003007 dot_scroll(rows - 2, -1);
3008 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003009 case 4: // ctrl-D scroll down half screen
3010 dot_scroll((rows - 2) / 2, 1);
3011 break;
3012 case 5: // ctrl-E scroll down one line
3013 dot_scroll(1, 1);
3014 break;
3015 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003016 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003017 dot_scroll(rows - 2, 1);
3018 break;
3019 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003020 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003021 break;
3022 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003023 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003024 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003025 case 0x7f: // DEL- move left (This may be ERASE char)
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003026 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003027 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003028 }
Eric Andersen3f980402001-04-04 17:31:15 +00003029 dot_left();
3030 break;
3031 case 10: // Newline ^J
3032 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003033 case KEYCODE_DOWN: // cursor key Down
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003034 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003035 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003036 }
Eric Andersen3f980402001-04-04 17:31:15 +00003037 dot_next(); // go to next B-o-l
3038 dot = move_to_col(dot, ccol + offset); // try stay in same col
3039 break;
3040 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003041 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003042 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003043 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003044 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003045 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003046 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003047 refresh(TRUE); // this will redraw the entire display
3048 break;
3049 case 13: // Carriage Return ^M
3050 case '+': // +- goto next line
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003051 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003052 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003053 }
Eric Andersen3f980402001-04-04 17:31:15 +00003054 dot_next();
3055 dot_skip_over_ws();
3056 break;
3057 case 21: // ctrl-U scroll up half screen
3058 dot_scroll((rows - 2) / 2, -1);
3059 break;
3060 case 25: // ctrl-Y scroll up one line
3061 dot_scroll(1, -1);
3062 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003063 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003064 if (cmd_mode == 0)
3065 indicate_error(c);
3066 cmd_mode = 0; // stop insrting
3067 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003068 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003069 break;
3070 case ' ': // move right
3071 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003072 case KEYCODE_RIGHT: // Cursor Key Right
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003073 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003074 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003075 }
Eric Andersen3f980402001-04-04 17:31:15 +00003076 dot_right();
3077 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003078#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003079 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003080 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3081 if ((unsigned)c1 <= 25) { // a-z?
3082 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003083 } else {
3084 indicate_error(c);
3085 }
3086 break;
3087 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003088 c1 = (get_one_char() | 0x20) - 'a';
3089 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003090 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003091 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003092 if (text <= q && q < end) {
3093 dot = q;
3094 dot_begin(); // go to B-o-l
3095 dot_skip_over_ws();
3096 }
3097 } else if (c1 == '\'') { // goto previous context
3098 dot = swap_context(dot); // swap current and previous context
3099 dot_begin(); // go to B-o-l
3100 dot_skip_over_ws();
3101 } else {
3102 indicate_error(c);
3103 }
3104 break;
3105 case 'm': // m- Mark a line
3106 // this is really stupid. If there are any inserts or deletes
3107 // between text[0] and dot then this mark will not point to the
3108 // correct location! It could be off by many lines!
3109 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003110 c1 = (get_one_char() | 0x20) - 'a';
3111 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003112 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003113 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003114 } else {
3115 indicate_error(c);
3116 }
3117 break;
3118 case 'P': // P- Put register before
3119 case 'p': // p- put register after
3120 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003121 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003122 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003123 break;
3124 }
3125 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003126 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003127 if (c == 'P') {
3128 dot_begin(); // putting lines- Put above
3129 }
3130 if (c == 'p') {
3131 // are we putting after very last line?
3132 if (end_line(dot) == (end - 1)) {
3133 dot = end; // force dot to end of text[]
3134 } else {
3135 dot_next(); // next line, then put before
3136 }
3137 }
3138 } else {
3139 if (c == 'p')
3140 dot_right(); // move to right, can move to NL
3141 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003142 string_insert(dot, p); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003143 end_cmd_q(); // stop adding to q
3144 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003145 case 'U': // U- Undo; replace current line with original version
3146 if (reg[Ureg] != 0) {
3147 p = begin_line(dot);
3148 q = end_line(dot);
3149 p = text_hole_delete(p, q); // delete cur line
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003150 p += string_insert(p, reg[Ureg]); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003151 dot = p;
3152 dot_skip_over_ws();
3153 }
3154 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003155#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003156 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003157 case KEYCODE_END: // Cursor Key End
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003158 if (--cmdcnt > 0) {
3159 dot_next();
Eric Andersen3f980402001-04-04 17:31:15 +00003160 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003161 }
Glenn L McGrathee829062004-01-21 10:59:45 +00003162 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003163 break;
3164 case '%': // %- find matching char of pair () [] {}
3165 for (q = dot; q < end && *q != '\n'; q++) {
3166 if (strchr("()[]{}", *q) != NULL) {
3167 // we found half of a pair
3168 p = find_pair(q, *q);
3169 if (p == NULL) {
3170 indicate_error(c);
3171 } else {
3172 dot = p;
3173 }
3174 break;
3175 }
3176 }
3177 if (*q == '\n')
3178 indicate_error(c);
3179 break;
3180 case 'f': // f- forward to a user specified char
3181 last_forward_char = get_one_char(); // get the search char
3182 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003183 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003184 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003185 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003186 case ';': // ;- look at rest of line for last forward char
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003187 if (--cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003188 do_cmd(';');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003189 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003190 if (last_forward_char == 0)
3191 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003192 q = dot + 1;
3193 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3194 q++;
3195 }
3196 if (*q == last_forward_char)
3197 dot = q;
3198 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003199 case ',': // repeat latest 'f' in opposite direction
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003200 if (--cmdcnt > 0) {
Paul Foxb5ee8db2008-02-14 01:17:01 +00003201 do_cmd(',');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003202 }
Paul Foxb5ee8db2008-02-14 01:17:01 +00003203 if (last_forward_char == 0)
3204 break;
3205 q = dot - 1;
3206 while (q >= text && *q != '\n' && *q != last_forward_char) {
3207 q--;
3208 }
3209 if (q >= text && *q == last_forward_char)
3210 dot = q;
3211 break;
3212
Eric Andersen3f980402001-04-04 17:31:15 +00003213 case '-': // -- goto prev line
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003214 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003215 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003216 }
Eric Andersen3f980402001-04-04 17:31:15 +00003217 dot_prev();
3218 dot_skip_over_ws();
3219 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003220#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003221 case '.': // .- repeat the last modifying command
3222 // Stuff the last_modifying_cmd back into stdin
3223 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003224 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003225 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003226 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003227 }
3228 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003229#endif
3230#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003231 case '?': // /- search for a pattern
3232 case '/': // /- search for a pattern
3233 buf[0] = c;
3234 buf[1] = '\0';
3235 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003236 if (q[0] && !q[1]) {
3237 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003238 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003239 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003240 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003241 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003242 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003243 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003244 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003245 goto dc3; // now find the pattern
3246 }
3247 // user changed mind and erased the "/"- do nothing
3248 break;
3249 case 'N': // N- backward search for last pattern
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003250 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003251 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003252 }
Eric Andersen3f980402001-04-04 17:31:15 +00003253 dir = BACK; // assume BACKWARD search
3254 p = dot - 1;
3255 if (last_search_pattern[0] == '?') {
3256 dir = FORWARD;
3257 p = dot + 1;
3258 }
3259 goto dc4; // now search for pattern
3260 break;
3261 case 'n': // n- repeat search for last pattern
3262 // search rest of text[] starting at next char
3263 // if search fails return orignal "p" not the "p+1" address
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003264 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003265 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003266 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003267 dc3:
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003268 dir = FORWARD; // assume FORWARD search
3269 p = dot + 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003270 if (last_search_pattern[0] == '?') {
3271 dir = BACK;
3272 p = dot - 1;
3273 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003274 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003275 q = char_search(p, last_search_pattern + 1, dir, FULL);
3276 if (q != NULL) {
3277 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003278 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003279 goto dc2;
3280 }
3281 // no pattern found between "dot" and "end"- continue at top
3282 p = text;
3283 if (dir == BACK) {
3284 p = end - 1;
3285 }
3286 q = char_search(p, last_search_pattern + 1, dir, FULL);
3287 if (q != NULL) { // found something
3288 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003289 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003290 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003291 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003292 }
3293 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003294 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003295 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003296 dc2:
3297 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003298 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003299 break;
3300 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003301 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003302 if (q != NULL) { // found blank line
3303 dot = next_line(q); // move to next blank line
3304 }
3305 break;
3306 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003307 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003308 if (q != NULL) { // found blank line
3309 dot = next_line(q); // move to next blank line
3310 }
3311 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003312#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003313 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003314 case '1': // 1-
3315 case '2': // 2-
3316 case '3': // 3-
3317 case '4': // 4-
3318 case '5': // 5-
3319 case '6': // 6-
3320 case '7': // 7-
3321 case '8': // 8-
3322 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003323 if (c == '0' && cmdcnt < 1) {
3324 dot_begin(); // this was a standalone zero
3325 } else {
3326 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3327 }
3328 break;
3329 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003330 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003331#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003332 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003333#else
Eric Andersen822c3832001-05-07 17:37:43 +00003334 if (*p == ':')
3335 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003336 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003337 if (cnt <= 0)
3338 break;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003339 if (strncmp(p, "quit", cnt) == 0
3340 || strncmp(p, "q!", cnt) == 0 // delete lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003341 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003342 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003343 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003344 } else {
3345 editing = 0;
3346 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003347 } else if (strncmp(p, "write", cnt) == 0
3348 || strncmp(p, "wq", cnt) == 0
3349 || strncmp(p, "wn", cnt) == 0
3350 || (p[0] == 'x' && !p[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003351 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003352 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003353 if (cnt < 0) {
3354 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003355 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003356 } else {
3357 file_modified = 0;
3358 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003359 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003360 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3361 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3362 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003363 editing = 0;
3364 }
Eric Andersen3f980402001-04-04 17:31:15 +00003365 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003366 } else if (strncmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003367 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003368 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003369 dot = find_line(j); // go to line # j
3370 dot_skip_over_ws();
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003371 } else { // unrecognized cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003372 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003373 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003374#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003375 break;
3376 case '<': // <- Left shift something
3377 case '>': // >- Right shift something
3378 cnt = count_lines(text, dot); // remember what line we are on
3379 c1 = get_one_char(); // get the type of thing to delete
3380 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003381 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003382 p = begin_line(p);
3383 q = end_line(q);
3384 i = count_lines(p, q); // # of lines we are shifting
3385 for ( ; i > 0; i--, p = next_line(p)) {
3386 if (c == '<') {
3387 // shift left- remove tab or 8 spaces
3388 if (*p == '\t') {
3389 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003390 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003391 } else if (*p == ' ') {
3392 // we should be calculating columns, not just SPACE
3393 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003394 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003395 }
3396 }
3397 } else if (c == '>') {
3398 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003399 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003400 }
3401 }
3402 dot = find_line(cnt); // what line were we on
3403 dot_skip_over_ws();
3404 end_cmd_q(); // stop adding to q
3405 break;
3406 case 'A': // A- append at e-o-l
3407 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003408 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003409 case 'a': // a- append after current char
3410 if (*dot != '\n')
3411 dot++;
3412 goto dc_i;
3413 break;
3414 case 'B': // B- back a blank-delimited Word
3415 case 'E': // E- end of a blank-delimited word
3416 case 'W': // W- forward a blank-delimited word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003417 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003418 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003419 }
Eric Andersen3f980402001-04-04 17:31:15 +00003420 dir = FORWARD;
3421 if (c == 'B')
3422 dir = BACK;
3423 if (c == 'W' || isspace(dot[dir])) {
3424 dot = skip_thing(dot, 1, dir, S_TO_WS);
3425 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3426 }
3427 if (c != 'W')
3428 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3429 break;
3430 case 'C': // C- Change to e-o-l
3431 case 'D': // D- delete to e-o-l
3432 save_dot = dot;
3433 dot = dollar_line(dot); // move to before NL
3434 // copy text into a register and delete
3435 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3436 if (c == 'C')
3437 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003438#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003439 if (c == 'D')
3440 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003441#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003442 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003443 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003444 c1 = get_one_char();
3445 if (c1 != 'g') {
3446 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003447 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003448 buf[2] = '\0';
3449 not_implemented(buf);
3450 break;
3451 }
3452 if (cmdcnt == 0)
3453 cmdcnt = 1;
3454 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003455 case 'G': // G- goto to a line number (default= E-O-F)
3456 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003457 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003458 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003459 }
3460 dot_skip_over_ws();
3461 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003462 case 'H': // H- goto top line on screen
3463 dot = screenbegin;
3464 if (cmdcnt > (rows - 1)) {
3465 cmdcnt = (rows - 1);
3466 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003467 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003468 do_cmd('+');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003469 }
Eric Andersen3f980402001-04-04 17:31:15 +00003470 dot_skip_over_ws();
3471 break;
3472 case 'I': // I- insert before first non-blank
3473 dot_begin(); // 0
3474 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003475 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003476 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003477 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003478 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003479 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003480 break;
3481 case 'J': // J- join current and next lines together
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003482 if (--cmdcnt > 1) {
Eric Andersen3f980402001-04-04 17:31:15 +00003483 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003484 }
Eric Andersen3f980402001-04-04 17:31:15 +00003485 dot_end(); // move to NL
3486 if (dot < end - 1) { // make sure not last char in text[]
3487 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003488 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003489 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003490 dot_delete();
3491 }
3492 }
3493 end_cmd_q(); // stop adding to q
3494 break;
3495 case 'L': // L- goto bottom line on screen
3496 dot = end_screen();
3497 if (cmdcnt > (rows - 1)) {
3498 cmdcnt = (rows - 1);
3499 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003500 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003501 do_cmd('-');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003502 }
Eric Andersen3f980402001-04-04 17:31:15 +00003503 dot_begin();
3504 dot_skip_over_ws();
3505 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003506 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003507 dot = screenbegin;
3508 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3509 dot = next_line(dot);
3510 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003511 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003512 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003513 p = begin_line(dot);
3514 if (p[-1] == '\n') {
3515 dot_prev();
3516 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3517 dot_end();
3518 dot = char_insert(dot, '\n');
3519 } else {
3520 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003521 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003522 dot_prev(); // -
3523 }
3524 goto dc_i;
3525 break;
3526 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003527 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003528 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003529 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003530 case KEYCODE_DELETE:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003531 c = 'x';
3532 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003533 case 'X': // X- delete char before dot
3534 case 'x': // x- delete the current char
3535 case 's': // s- substitute the current char
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003536 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003537 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003538 }
Eric Andersen3f980402001-04-04 17:31:15 +00003539 dir = 0;
3540 if (c == 'X')
3541 dir = -1;
3542 if (dot[dir] != '\n') {
3543 if (c == 'X')
3544 dot--; // delete prev char
3545 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3546 }
3547 if (c == 's')
3548 goto dc_i; // start insrting
3549 end_cmd_q(); // stop adding to q
3550 break;
3551 case 'Z': // Z- if modified, {write}; exit
3552 // ZZ means to save file (if necessary), then exit
3553 c1 = get_one_char();
3554 if (c1 != 'Z') {
3555 indicate_error(c);
3556 break;
3557 }
Paul Foxf0305b72006-03-28 14:18:21 +00003558 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003559 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003560 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003561 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003562 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003563 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003564 if (cnt < 0) {
3565 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003566 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003567 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003568 editing = 0;
3569 }
3570 } else {
3571 editing = 0;
3572 }
3573 break;
3574 case '^': // ^- move to first non-blank on line
3575 dot_begin();
3576 dot_skip_over_ws();
3577 break;
3578 case 'b': // b- back a word
3579 case 'e': // e- end of word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003580 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003581 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003582 }
Eric Andersen3f980402001-04-04 17:31:15 +00003583 dir = FORWARD;
3584 if (c == 'b')
3585 dir = BACK;
3586 if ((dot + dir) < text || (dot + dir) > end - 1)
3587 break;
3588 dot += dir;
3589 if (isspace(*dot)) {
3590 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3591 }
3592 if (isalnum(*dot) || *dot == '_') {
3593 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3594 } else if (ispunct(*dot)) {
3595 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3596 }
3597 break;
3598 case 'c': // c- change something
3599 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003600#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003601 case 'y': // y- yank something
3602 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003603#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003604 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003605 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003606 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003607#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003608 if (c == 'y' || c == 'Y')
3609 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003610#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003611 c1 = 'y';
3612 if (c != 'Y')
3613 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003614 // determine range, and whether it spans lines
3615 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003616 if (c1 == 27) { // ESC- user changed mind and wants out
3617 c = c1 = 27; // Escape- do nothing
3618 } else if (strchr("wW", c1)) {
3619 if (c == 'c') {
3620 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003621 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003622 if (q <= text || q[-1] == '\n')
3623 break;
3624 q--;
3625 }
3626 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003627 dot = yank_delete(p, q, ml, yf); // delete word
3628 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3629 // partial line copy text into a register and delete
3630 dot = yank_delete(p, q, ml, yf); // delete word
3631 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3632 // whole line copy text into a register and delete
3633 dot = yank_delete(p, q, ml, yf); // delete lines
3634 whole = 1;
3635 } else {
3636 // could not recognize object
3637 c = c1 = 27; // error-
3638 ml = 0;
3639 indicate_error(c);
3640 }
3641 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003642 if (c == 'c') {
3643 dot = char_insert(dot, '\n');
3644 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003645 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003646 dot_prev();
3647 }
3648 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003649 dot_begin();
3650 dot_skip_over_ws();
3651 }
Eric Andersen3f980402001-04-04 17:31:15 +00003652 }
3653 if (c1 != 27) {
3654 // if CHANGING, not deleting, start inserting after the delete
3655 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003656 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003657 goto dc_i; // start inserting
3658 }
3659 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003660 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003661 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003662#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003663 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003664 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003665 }
3666 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003667 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003668 for (cnt = 0; p <= q; p++) {
3669 if (*p == '\n')
3670 cnt++;
3671 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003672 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003673 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003674#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003675 end_cmd_q(); // stop adding to q
3676 }
3677 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003678 }
Eric Andersen3f980402001-04-04 17:31:15 +00003679 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003680 case KEYCODE_UP: // cursor key Up
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003681 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003682 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003683 }
Eric Andersen3f980402001-04-04 17:31:15 +00003684 dot_prev();
3685 dot = move_to_col(dot, ccol + offset); // try stay in same col
3686 break;
3687 case 'r': // r- replace the current char with user input
3688 c1 = get_one_char(); // get the replacement char
3689 if (*dot != '\n') {
3690 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003691 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003692 }
3693 end_cmd_q(); // stop adding to q
3694 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003695 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003696 last_forward_char = get_one_char();
3697 do_cmd(';');
3698 if (*dot == last_forward_char)
3699 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003700 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003701 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003702 case 'w': // w- forward a word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003703 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003704 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003705 }
Eric Andersen3f980402001-04-04 17:31:15 +00003706 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3707 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3708 } else if (ispunct(*dot)) { // we are on PUNCT
3709 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3710 }
3711 if (dot < end - 1)
3712 dot++; // move over word
3713 if (isspace(*dot)) {
3714 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3715 }
3716 break;
3717 case 'z': // z-
3718 c1 = get_one_char(); // get the replacement char
3719 cnt = 0;
3720 if (c1 == '.')
3721 cnt = (rows - 2) / 2; // put dot at center
3722 if (c1 == '-')
3723 cnt = rows - 2; // put dot at bottom
3724 screenbegin = begin_line(dot); // start dot at top
3725 dot_scroll(cnt, -1);
3726 break;
3727 case '|': // |- move to column "cmdcnt"
3728 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3729 break;
3730 case '~': // ~- flip the case of letters a-z -> A-Z
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003731 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003732 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003733 }
Eric Andersen3f980402001-04-04 17:31:15 +00003734 if (islower(*dot)) {
3735 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003736 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003737 } else if (isupper(*dot)) {
3738 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003739 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003740 }
3741 dot_right();
3742 end_cmd_q(); // stop adding to q
3743 break;
3744 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003745 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00003746 dot_begin();
3747 break;
3748 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003749#if 0
3750 case KEYCODE_FUN1: // Function Key F1
3751 case KEYCODE_FUN2: // Function Key F2
3752 case KEYCODE_FUN3: // Function Key F3
3753 case KEYCODE_FUN4: // Function Key F4
3754 case KEYCODE_FUN5: // Function Key F5
3755 case KEYCODE_FUN6: // Function Key F6
3756 case KEYCODE_FUN7: // Function Key F7
3757 case KEYCODE_FUN8: // Function Key F8
3758 case KEYCODE_FUN9: // Function Key F9
3759 case KEYCODE_FUN10: // Function Key F10
3760 case KEYCODE_FUN11: // Function Key F11
3761 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00003762 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003763#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003764 }
3765
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003766 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003767 // if text[] just became empty, add back an empty line
3768 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003769 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003770 dot = text;
3771 }
3772 // it is OK for dot to exactly equal to end, otherwise check dot validity
3773 if (dot != end) {
3774 dot = bound_dot(dot); // make sure "dot" is valid
3775 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003776#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003777 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003778#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003779
3780 if (!isdigit(c))
3781 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3782 cnt = dot - begin_line(dot);
3783 // Try to stay off of the Newline
3784 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3785 dot--;
3786}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003787
Paul Fox35e9c5d2008-03-06 16:26:12 +00003788/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003789#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003790static int totalcmds = 0;
3791static int Mp = 85; // Movement command Probability
3792static int Np = 90; // Non-movement command Probability
3793static int Dp = 96; // Delete command Probability
3794static int Ip = 97; // Insert command Probability
3795static int Yp = 98; // Yank command Probability
3796static int Pp = 99; // Put command Probability
3797static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003798static const char chars[20] = "\t012345 abcdABCD-=.$";
3799static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003800 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003801 "broadcast", "the", "emergency", "of",
3802 "system", "quick", "brown", "fox",
3803 "jumped", "over", "lazy", "dogs",
3804 "back", "January", "Febuary", "March"
3805};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003806static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003807 "You should have received a copy of the GNU General Public License\n",
3808 "char c, cm, *cmd, *cmd1;\n",
3809 "generate a command by percentages\n",
3810 "Numbers may be typed as a prefix to some commands.\n",
3811 "Quit, discarding changes!\n",
3812 "Forced write, if permission originally not valid.\n",
3813 "In general, any ex or ed command (such as substitute or delete).\n",
3814 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3815 "Please get w/ me and I will go over it with you.\n",
3816 "The following is a list of scheduled, committed changes.\n",
3817 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3818 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3819 "Any question about transactions please contact Sterling Huxley.\n",
3820 "I will try to get back to you by Friday, December 31.\n",
3821 "This Change will be implemented on Friday.\n",
3822 "Let me know if you have problems accessing this;\n",
3823 "Sterling Huxley recently added you to the access list.\n",
3824 "Would you like to go to lunch?\n",
3825 "The last command will be automatically run.\n",
3826 "This is too much english for a computer geek.\n",
3827};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003828static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003829 "You should have received a copy of the GNU General Public License\n",
3830 "char c, cm, *cmd, *cmd1;\n",
3831 "generate a command by percentages\n",
3832 "Numbers may be typed as a prefix to some commands.\n",
3833 "Quit, discarding changes!\n",
3834 "Forced write, if permission originally not valid.\n",
3835 "In general, any ex or ed command (such as substitute or delete).\n",
3836 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3837 "Please get w/ me and I will go over it with you.\n",
3838 "The following is a list of scheduled, committed changes.\n",
3839 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3840 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3841 "Any question about transactions please contact Sterling Huxley.\n",
3842 "I will try to get back to you by Friday, December 31.\n",
3843 "This Change will be implemented on Friday.\n",
3844 "Let me know if you have problems accessing this;\n",
3845 "Sterling Huxley recently added you to the access list.\n",
3846 "Would you like to go to lunch?\n",
3847 "The last command will be automatically run.\n",
3848 "This is too much english for a computer geek.\n",
3849};
3850
3851// create a random command to execute
3852static void crash_dummy()
3853{
3854 static int sleeptime; // how long to pause between commands
3855 char c, cm, *cmd, *cmd1;
3856 int i, cnt, thing, rbi, startrbi, percent;
3857
3858 // "dot" movement commands
3859 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3860
3861 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02003862 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003863 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003864 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02003865 readbuffer[0] = 'X';
3866 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003867 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003868 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003869 // generate a command by percentages
3870 percent = (int) lrand48() % 100; // get a number from 0-99
3871 if (percent < Mp) { // Movement commands
3872 // available commands
3873 cmd = cmd1;
3874 M++;
3875 } else if (percent < Np) { // non-movement commands
3876 cmd = "mz<>\'\""; // available commands
3877 N++;
3878 } else if (percent < Dp) { // Delete commands
3879 cmd = "dx"; // available commands
3880 D++;
3881 } else if (percent < Ip) { // Inset commands
3882 cmd = "iIaAsrJ"; // available commands
3883 I++;
3884 } else if (percent < Yp) { // Yank commands
3885 cmd = "yY"; // available commands
3886 Y++;
3887 } else if (percent < Pp) { // Put commands
3888 cmd = "pP"; // available commands
3889 P++;
3890 } else {
3891 // We do not know how to handle this command, try again
3892 U++;
3893 goto cd0;
3894 }
3895 // randomly pick one of the available cmds from "cmd[]"
3896 i = (int) lrand48() % strlen(cmd);
3897 cm = cmd[i];
3898 if (strchr(":\024", cm))
3899 goto cd0; // dont allow colon or ctrl-T commands
3900 readbuffer[rbi++] = cm; // put cmd into input buffer
3901
3902 // now we have the command-
3903 // there are 1, 2, and multi char commands
3904 // find out which and generate the rest of command as necessary
3905 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3906 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3907 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3908 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3909 }
3910 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3911 c = cmd1[thing];
3912 readbuffer[rbi++] = c; // add movement to input buffer
3913 }
3914 if (strchr("iIaAsc", cm)) { // multi-char commands
3915 if (cm == 'c') {
3916 // change some thing
3917 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3918 c = cmd1[thing];
3919 readbuffer[rbi++] = c; // add movement to input buffer
3920 }
3921 thing = (int) lrand48() % 4; // what thing to insert
3922 cnt = (int) lrand48() % 10; // how many to insert
3923 for (i = 0; i < cnt; i++) {
3924 if (thing == 0) { // insert chars
3925 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3926 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003927 strcat(readbuffer, words[(int) lrand48() % 20]);
3928 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003929 sleeptime = 0; // how fast to type
3930 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003931 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003932 sleeptime = 0; // how fast to type
3933 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003934 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003935 sleeptime = 0; // how fast to type
3936 }
3937 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003938 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003939 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02003940 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003941 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003942 totalcmds++;
3943 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003944 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003945}
3946
3947// test to see if there are any errors
3948static void crash_test()
3949{
3950 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003951
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003952 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003953 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003954
3955 msg[0] = '\0';
3956 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003957 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003958 }
3959 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003960 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003961 }
3962 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003963 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003964 }
3965 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003966 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003967 }
3968 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003969 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003970 }
3971 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003972 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003973 }
3974
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003975 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00003976 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003977 totalcmds, last_input_char, msg, SOs, SOn);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003978 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00003979 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003980 if (d[0] == '\n' || d[0] == '\r')
3981 break;
3982 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003983 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003984 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003985 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003986 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003987 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
3988 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
3989 oldtim = tim;
3990 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003991}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003992#endif