blob: fd8bd0f782e6b6389265476cc40e089e6cbdf83e [file] [log] [blame]
Rob Landleye5e1a102006-06-21 01:15:36 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3f980402001-04-04 17:31:15 +00002/*
3 * tiny vi.c: A small 'vi' clone
4 * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
5 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen3f980402001-04-04 17:31:15 +00007 */
8
Eric Andersen3f980402001-04-04 17:31:15 +00009/*
Eric Andersen3f980402001-04-04 17:31:15 +000010 * Things To Do:
11 * EXINIT
Eric Andersen1c0d3112001-04-16 15:46:44 +000012 * $HOME/.exrc and ./.exrc
Eric Andersen3f980402001-04-04 17:31:15 +000013 * add magic to search /foo.*bar
14 * add :help command
15 * :map macros
Eric Andersen3f980402001-04-04 17:31:15 +000016 * if mark[] values were line numbers rather than pointers
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
Pere Orga6a3e01d2011-04-01 22:56:30 +020024//usage:#define vi_trivial_usage
25//usage: "[OPTIONS] [FILE]..."
26//usage:#define vi_full_usage "\n\n"
27//usage: "Edit FILE\n"
28//usage: "\nOptions:"
29//usage: IF_FEATURE_VI_COLON(
30//usage: "\n -c Initial command to run ($EXINIT also available)"
31//usage: )
32//usage: IF_FEATURE_VI_READONLY(
33//usage: "\n -R Read-only"
34//usage: )
35//usage: "\n -H Short help regarding available features"
36
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000037#include "libbb.h"
Eric Andersen3f980402001-04-04 17:31:15 +000038
Paul Fox35e9c5d2008-03-06 16:26:12 +000039/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000040#define ENABLE_FEATURE_VI_CRASHME 0
41
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000042
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000043#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000044
45#if ENABLE_FEATURE_VI_8BIT
Denys Vlasenkoc2704542009-11-20 19:14:19 +010046//FIXME: this does not work properly for Unicode anyway
47# define Isprint(c) (isprint)(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000048#else
Denys Vlasenkoc2704542009-11-20 19:14:19 +010049# define Isprint(c) isprint_asciionly(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000050#endif
51
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000052#else
53
54/* 0x9b is Meta-ESC */
55#if ENABLE_FEATURE_VI_8BIT
56#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
57#else
58#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
59#endif
60
61#endif
62
63
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000064enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000065 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000066 // User input len. Need not be extra big.
67 // Lines in file being edited *can* be bigger than this.
68 MAX_INPUT_LEN = 128,
69 // Sanity limits. We have only one buffer of this size.
70 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
71 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000072};
Eric Andersen3f980402001-04-04 17:31:15 +000073
Glenn L McGrath09adaca2002-12-02 21:18:10 +000074/* vt102 typical ESC sequence */
75/* terminal standout start/normal ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020076#define SOs "\033[7m"
77#define SOn "\033[0m"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000078/* terminal bell sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020079#define bell "\007"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000080/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020081#define Ceol "\033[K"
82#define Ceos "\033[J"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000083/* Cursor motion arbitrary destination ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020084#define CMrc "\033[%u;%uH"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000085/* Cursor motion up and down ESC sequence */
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020086#define CMup "\033[A"
87#define CMdown "\n"
Glenn L McGrath09adaca2002-12-02 21:18:10 +000088
Denis Vlasenkoded6ad32008-10-14 12:26:30 +000089#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
90// cmds modifying text[]
91// vda: removed "aAiIs" as they switch us into insert mode
92// and remembering input for replay after them makes no sense
93static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~";
94#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +000095
Rob Landleybc68cd12006-03-10 19:22:06 +000096enum {
97 YANKONLY = FALSE,
98 YANKDEL = TRUE,
99 FORWARD = 1, // code depends on "1" for array index
100 BACK = -1, // code depends on "-1" for array index
101 LIMITED = 0, // how much of text[] in char_search
102 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000103
Rob Landleybc68cd12006-03-10 19:22:06 +0000104 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
105 S_TO_WS = 2, // used in skip_thing() for moving "dot"
106 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
107 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000108 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000109};
Eric Andersen3f980402001-04-04 17:31:15 +0000110
Denis Vlasenkob1759462008-06-20 20:20:54 +0000111
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000112/* vi.c expects chars to be unsigned. */
113/* busybox build system provides that, but it's better */
114/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000115
Denis Vlasenkob1759462008-06-20 20:20:54 +0000116struct globals {
117 /* many references - keep near the top of globals */
118 char *text, *end; // pointers to the user data in memory
119 char *dot; // where all the action takes place
120 int text_size; // size of the allocated buffer
121
122 /* the rest */
123 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000124#define VI_AUTOINDENT 1
125#define VI_SHOWMATCH 2
126#define VI_IGNORECASE 4
127#define VI_ERR_METHOD 8
128#define autoindent (vi_setops & VI_AUTOINDENT)
129#define showmatch (vi_setops & VI_SHOWMATCH )
130#define ignorecase (vi_setops & VI_IGNORECASE)
131/* indicate error with beep or flash */
132#define err_method (vi_setops & VI_ERR_METHOD)
133
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000134#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000135 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000136#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
137#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
138#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000139#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000140#define SET_READONLY_FILE(flags) ((void)0)
141#define SET_READONLY_MODE(flags) ((void)0)
142#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000143#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000144
Denis Vlasenkob1759462008-06-20 20:20:54 +0000145 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000146 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000147 smallint cmd_mode; // 0=command 1=insert 2=replace
148 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000149 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000150 int fn_start; // index of first cmd line file name
151 int save_argc; // how many file names on cmd line
152 int cmdcnt; // repetition count
153 unsigned rows, columns; // the terminal screen is this size
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700154#if ENABLE_FEATURE_VI_ASK_TERMINAL
155 int get_rowcol_error;
156#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000157 int crow, ccol; // cursor is on Crow x Ccol
158 int offset; // chars scrolled off the screen to the left
159 int have_status_msg; // is default edit status needed?
160 // [don't make smallint!]
161 int last_status_cksum; // hash of current status line
162 char *current_filename;
163 char *screenbegin; // index into text[], of top line on the screen
164 char *screen; // pointer to the virtual screen buffer
165 int screensize; // and its size
166 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000167 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000168 char erase_char; // the users erase character
169 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000170
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000171#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000172 smallint adding2q; // are we currently adding user input to q
173 int lmc_len; // length of last_modifying_cmd
174 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000175#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000176#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000177 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000178#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000179#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000180 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000181#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000182#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000183 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000184#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000185
Denis Vlasenkob1759462008-06-20 20:20:54 +0000186 /* former statics */
187#if ENABLE_FEATURE_VI_YANKMARK
188 char *edit_file__cur_line;
189#endif
190 int refresh__old_offset;
191 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000192
Denis Vlasenkob1759462008-06-20 20:20:54 +0000193 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000194#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000195 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000196 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000197 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
198 char *context_start, *context_end;
199#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000200#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000201 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000202#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000203 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000204#if ENABLE_FEATURE_VI_COLON
205 char *initial_cmds[3]; // currently 2 entries, NULL terminated
206#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000207 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000208 // but CRASHME mode uses it as generated command buffer too
209#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000210 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000211#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000212 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000213#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000214#define STATUS_BUFFER_LEN 200
215 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
216#if ENABLE_FEATURE_VI_DOT_CMD
217 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
218#endif
219 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000220
221 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000222};
223#define G (*ptr_to_globals)
224#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000225#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000226#define end (G.end )
227#define dot (G.dot )
228#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000229
230#define vi_setops (G.vi_setops )
231#define editing (G.editing )
232#define cmd_mode (G.cmd_mode )
233#define file_modified (G.file_modified )
234#define last_file_modified (G.last_file_modified )
235#define fn_start (G.fn_start )
236#define save_argc (G.save_argc )
237#define cmdcnt (G.cmdcnt )
238#define rows (G.rows )
239#define columns (G.columns )
240#define crow (G.crow )
241#define ccol (G.ccol )
242#define offset (G.offset )
243#define status_buffer (G.status_buffer )
244#define have_status_msg (G.have_status_msg )
245#define last_status_cksum (G.last_status_cksum )
246#define current_filename (G.current_filename )
247#define screen (G.screen )
248#define screensize (G.screensize )
249#define screenbegin (G.screenbegin )
250#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000251#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000252#define erase_char (G.erase_char )
253#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000254#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000255#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000256#else
257#define readonly_mode 0
258#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000259#define adding2q (G.adding2q )
260#define lmc_len (G.lmc_len )
261#define ioq (G.ioq )
262#define ioq_start (G.ioq_start )
263#define last_row (G.last_row )
264#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000265#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000266
Denis Vlasenkob1759462008-06-20 20:20:54 +0000267#define edit_file__cur_line (G.edit_file__cur_line)
268#define refresh__old_offset (G.refresh__old_offset)
269#define format_edit_status__tot (G.format_edit_status__tot)
270
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000271#define YDreg (G.YDreg )
272#define Ureg (G.Ureg )
273#define mark (G.mark )
274#define context_start (G.context_start )
275#define context_end (G.context_end )
276#define restart (G.restart )
277#define term_orig (G.term_orig )
278#define term_vi (G.term_vi )
279#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000280#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000281#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000282#define last_modifying_cmd (G.last_modifying_cmd )
283#define get_input_line__buf (G.get_input_line__buf)
284
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000285#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000286 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000287 last_file_modified = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000288 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000289 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000290} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000291
Denis Vlasenkob1759462008-06-20 20:20:54 +0000292
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000293static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000294static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000295static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000296static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000297static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
298static char *begin_line(char *); // return pointer to cur line B-o-l
299static char *end_line(char *); // return pointer to cur line E-o-l
300static char *prev_line(char *); // return pointer to prev line B-o-l
301static char *next_line(char *); // return pointer to next line B-o-l
302static char *end_screen(void); // get pointer to last char on screen
303static int count_lines(char *, char *); // count line from start to stop
304static char *find_line(int); // find begining of line #li
305static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000306static void dot_left(void); // move dot left- dont leave line
307static void dot_right(void); // move dot right- dont leave line
308static void dot_begin(void); // move dot to B-o-l
309static void dot_end(void); // move dot to E-o-l
310static void dot_next(void); // move dot to next line B-o-l
311static void dot_prev(void); // move dot to prev line B-o-l
312static void dot_scroll(int, int); // move the screen up or down
313static void dot_skip_over_ws(void); // move dot pat WS
314static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000315static char *bound_dot(char *); // make sure text[0] <= P < "end"
316static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000317static char *char_insert(char *, char); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000318// might reallocate text[]! use p += stupid_insert(p, ...),
319// and be careful to not use pointers into potentially freed text[]!
320static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000321static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000322static int st_test(char *, int, int, char *); // helper for skip_thing()
323static char *skip_thing(char *, int, int, int); // skip some object
324static char *find_pair(char *, char); // find matching pair () [] {}
325static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000326// might reallocate text[]! use p += text_hole_make(p, ...),
327// and be careful to not use pointers into potentially freed text[]!
328static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000329static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000330static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000331static void rawmode(void); // set "raw" mode on tty
332static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000333// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
334static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000335static int readit(void); // read (maybe cursor) key from stdin
336static int get_one_char(void); // read 1 char from stdin
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000337static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000338#if !ENABLE_FEATURE_VI_READONLY
339#define file_insert(fn, p, update_ro_status) file_insert(fn, p)
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000340#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000341// file_insert might reallocate text[]!
342static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000343static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000344#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
345#define place_cursor(a, b, optimize) place_cursor(a, b)
346#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000347static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000348static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000349static void clear_to_eol(void);
350static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000351static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000352static void standout_start(void); // send "start reverse video" sequence
353static void standout_end(void); // send "end reverse video" sequence
354static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000355static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000356static void status_line(const char *, ...); // print to status buf
357static void status_line_bold(const char *, ...);
358static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000359static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000360static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000361static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000362static void refresh(int); // update the terminal from screen[]
363
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000364static void Indicate_Error(void); // use flash or beep to indicate error
365#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000366static void Hit_Return(void);
367
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000368#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000369static char *char_search(char *, const char *, int, int); // search for pattern starting at p
370static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000371#endif
372#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000373static char *get_one_address(char *, int *); // get colon addr, if present
374static char *get_address(char *, int *, int *); // get two colon addrs, if present
375static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000376#endif
377#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000378static void winch_sig(int); // catch window size changes
379static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000380static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000381#endif
382#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000383static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000384static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000385#else
386#define end_cmd_q() ((void)0)
387#endif
388#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000389static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000390#endif
391#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000392// might reallocate text[]! use p += string_insert(p, ...),
393// and be careful to not use pointers into potentially freed text[]!
394static uintptr_t string_insert(char *, const char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000395#endif
396#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000397static char *text_yank(char *, char *, int); // save copy of "p" into a register
398static char what_reg(void); // what is letter of current YDreg
399static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000400#endif
401#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000402static void crash_dummy();
403static void crash_test();
404static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000405#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000406
407
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000408static void write1(const char *out)
409{
410 fputs(out, stdout);
411}
412
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000413int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000414int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000415{
Eric Andersend402edf2001-04-04 19:29:48 +0000416 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000417
418 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000419
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000420#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000421 my_pid = getpid();
422#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000423#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000424 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000425#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000426#ifdef NO_SUCH_APPLET_YET
427 /* If we aren't "vi", we are "view" */
428 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000429 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000430 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000431#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000432
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000433 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000434 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000435 // 2- process EXINIT variable from environment
436 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000437#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000438 {
439 char *p = getenv("EXINIT");
440 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000441 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000442 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000443#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000444 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000445 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000446#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000447 case 'C':
448 crashme = 1;
449 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000450#endif
451#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000452 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000453 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000454 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000455#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000456#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000457 case 'c': // cmd line vi command
458 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000459 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000460 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000461#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000462 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000463 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000464 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000465 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000466 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000467 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000468 }
469 }
470
471 // The argv array can be used by the ":next" and ":rewind" commands
472 // save optind.
473 fn_start = optind; // remember first file name for :next and :rew
474 save_argc = argc;
475
476 //----- This is the main file handling loop --------------
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700477 while (1) {
478 edit_file(argv[optind]); /* param might be NULL */
479 if (++optind >= argc)
480 break;
Eric Andersen3f980402001-04-04 17:31:15 +0000481 }
482 //-----------------------------------------------------------
483
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000484 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000485}
486
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000487/* read text from file or create an empty buf */
488/* will also update current_filename */
489static int init_text_buffer(char *fn)
490{
491 int rc;
492 int size = file_size(fn); // file size. -1 means does not exist.
493
494 /* allocate/reallocate text buffer */
495 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000496 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000497 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000498
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000499 if (fn != current_filename) {
500 free(current_filename);
501 current_filename = xstrdup(fn);
502 }
503 if (size < 0) {
504 // file dont exist. Start empty buf with dummy line
505 char_insert(text, '\n');
506 rc = 0;
507 } else {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000508 rc = file_insert(fn, text, 1);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000509 }
510 file_modified = 0;
511 last_file_modified = -1;
512#if ENABLE_FEATURE_VI_YANKMARK
513 /* init the marks. */
514 memset(mark, 0, sizeof(mark));
515#endif
516 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000517}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000518
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700519#if ENABLE_FEATURE_VI_WIN_RESIZE
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200520static int query_screen_dimensions(void)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700521{
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200522 int err = get_terminal_width_height(STDIN_FILENO, &columns, &rows);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700523 if (rows > MAX_SCR_ROWS)
524 rows = MAX_SCR_ROWS;
525 if (columns > MAX_SCR_COLS)
526 columns = MAX_SCR_COLS;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200527 return err;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700528}
529#else
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200530# define query_screen_dimensions() (0)
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700531#endif
532
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000533static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000534{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000535#if ENABLE_FEATURE_VI_YANKMARK
536#define cur_line edit_file__cur_line
537#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000538 int c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000539 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000540#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000541 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000542#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000543
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000544 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000545 rawmode();
546 rows = 24;
547 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000548 size = 0;
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200549 IF_FEATURE_VI_ASK_TERMINAL(G.get_rowcol_error =) query_screen_dimensions();
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700550#if ENABLE_FEATURE_VI_ASK_TERMINAL
551 if (G.get_rowcol_error /* TODO? && no input on stdin */) {
552 uint64_t k;
553 write1("\033[999;999H" "\033[6n");
554 fflush_all();
555 k = read_key(STDIN_FILENO, readbuffer, /*timeout_ms:*/ 100);
556 if ((int32_t)k == KEYCODE_CURSOR_POS) {
557 uint32_t rc = (k >> 32);
558 columns = (rc & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200559 if (columns > MAX_SCR_COLS)
560 columns = MAX_SCR_COLS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700561 rows = ((rc >> 16) & 0x7fff);
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +0200562 if (rows > MAX_SCR_ROWS)
563 rows = MAX_SCR_ROWS;
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700564 }
Denys Vlasenkoc175c462010-04-18 22:09:30 -0700565 }
566#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000567 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000568 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000569
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000570#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000571 YDreg = 26; // default Yank/Delete reg
572 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000573 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000574#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000575
Eric Andersen3f980402001-04-04 17:31:15 +0000576 last_forward_char = last_input_char = '\0';
577 crow = 0;
578 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000579
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000580#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700581 signal(SIGINT, catch_sig);
Eric Andersen3f980402001-04-04 17:31:15 +0000582 signal(SIGWINCH, winch_sig);
583 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000584 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000585 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000586 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000587 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000588#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000589
Eric Andersen3f980402001-04-04 17:31:15 +0000590 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
591 cmdcnt = 0;
592 tabstop = 8;
593 offset = 0; // no horizontal offset
594 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000595#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000596 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000597 ioq = ioq_start = NULL;
598 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000599 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000600#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000601
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000602#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000603 {
604 char *p, *q;
605 int n = 0;
606
Denys Vlasenko2bb651a2010-04-16 20:55:52 -0700607 while ((p = initial_cmds[n]) != NULL) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000608 do {
609 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000610 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000611 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000612 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000613 *p++ = '\0';
614 if (*q)
615 colon(q);
616 } while (p);
617 free(initial_cmds[n]);
618 initial_cmds[n] = NULL;
619 n++;
620 }
621 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000622#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000623 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000624 //------This is the main Vi cmd handling loop -----------------------
625 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000626#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000627 if (crashme > 0) {
628 if ((end - text) > 1) {
629 crash_dummy(); // generate a random command
630 } else {
631 crashme = 0;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000632 string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
633 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000634 refresh(FALSE);
635 }
636 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000637#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000638 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000639#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000640 // save a copy of the current line- for the 'U" command
641 if (begin_line(dot) != cur_line) {
642 cur_line = begin_line(dot);
643 text_yank(begin_line(dot), end_line(dot), Ureg);
644 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000645#endif
646#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000647 // These are commands that change text[].
648 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000649 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000650 && cmd_mode == 0 // command mode
651 && c > '\0' // exclude NUL and non-ASCII chars
652 && c < 0x7f // (Unicode and such)
653 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000654 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000655 start_new_cmd_q(c);
656 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000657#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000658 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000659
Eric Andersen3f980402001-04-04 17:31:15 +0000660 // poll to see if there is input already waiting. if we are
661 // not able to display output fast enough to keep up, skip
662 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200663 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000664 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000665 refresh(FALSE);
666 show_status_line();
667 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000668#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000669 if (crashme > 0)
670 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000671#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000672 }
673 //-------------------------------------------------------------------
674
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000675 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000676 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000677#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000678}
679
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000680//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000681#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000682static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000683{
684 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000685 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000686 IF_FEATURE_VI_YANKMARK(char c;)
687 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000688
689 *addr = -1; // assume no addr
690 if (*p == '.') { // the current line
691 p++;
692 q = begin_line(dot);
693 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000694 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000695#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000696 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000697 p++;
698 c = tolower(*p);
699 p++;
700 if (c >= 'a' && c <= 'z') {
701 // we have a mark
702 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000703 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000704 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000705 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000706 }
707 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000708 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000709#endif
710#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000711 else if (*p == '/') { // a search pattern
712 q = strchrnul(++p, '/');
713 pat = xstrndup(p, q - p); // save copy of pattern
714 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000715 if (*p == '/')
716 p++;
717 q = char_search(dot, pat, FORWARD, FULL);
718 if (q != NULL) {
719 *addr = count_lines(text, q);
720 }
721 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000722 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000723#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000724 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000725 p++;
726 q = begin_line(end - 1);
727 *addr = count_lines(text, q);
728 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000729 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000730 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000731 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200732 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000733 *addr = -1;
734 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000735 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000736}
737
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000738static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000739{
740 //----- get the address' i.e., 1,3 'a,'b -----
741 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000742 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000743 p++; // skip over leading spaces
744 if (*p == '%') { // alias for 1,$
745 p++;
746 *b = 1;
747 *e = count_lines(text, end-1);
748 goto ga0;
749 }
750 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000751 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000752 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000753 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000754 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000755 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000756 p++;
757 // get SECOND addr, if present
758 p = get_one_address(p, e);
759 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000760 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000761 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000762 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000763 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000764}
765
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000766#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000767static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000768 const char *short_opname, int opt)
769{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000770 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000771 int l = strlen(opname) - 1; /* opname have + ' ' */
772
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200773 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000774 if (strncasecmp(a, opname, l) == 0
775 || strncasecmp(a, short_opname, 2) == 0
776 ) {
777 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000778 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000779 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000780 vi_setops |= opt;
781 }
782}
783#endif
784
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000785// buf must be no longer than MAX_INPUT_LEN!
786static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000787{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000788 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000789 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000790 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000791 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000792
793 // :3154 // if (-e line 3154) goto it else stay put
794 // :4,33w! foo // write a portion of buffer to file "foo"
795 // :w // write all of buffer to current file
796 // :q // quit
797 // :q! // quit- dont care about modified file
798 // :'a,'z!sort -u // filter block through sort
799 // :'f // goto mark "f"
800 // :'fl // list literal the mark "f" line
801 // :.r bar // read file "bar" into buffer before dot
802 // :/123/,/abc/d // delete lines from "123" line to "abc" line
803 // :/xyz/ // goto the "xyz" line
804 // :s/find/replace/ // substitute pattern "find" with "replace"
805 // :!<cmd> // run <cmd> then return
806 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000807
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000808 if (!buf[0])
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200809 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000810 if (*buf == ':')
811 buf++; // move past the ':'
812
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000813 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000814 b = e = -1;
815 q = text; // assume 1,$ for the range
816 r = end - 1;
817 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000818 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000819
820 // look for optional address(es) :. :1 :1,9 :'q,'a :%
821 buf = get_address(buf, &b, &e);
822
823 // remember orig command line
824 orig_buf = buf;
825
826 // get the COMMAND into cmd[]
827 buf1 = cmd;
828 while (*buf != '\0') {
829 if (isspace(*buf))
830 break;
831 *buf1++ = *buf++;
832 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000833 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000834 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000835 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000836 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000837 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000838 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000839 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000840 if (buf1) {
841 useforce = TRUE;
842 *buf1 = '\0'; // get rid of !
843 }
844 if (b >= 0) {
845 // if there is only one addr, then the addr
846 // is the line number of the single line the
847 // user wants. So, reset the end
848 // pointer to point at end of the "b" line
849 q = find_line(b); // what line is #b
850 r = end_line(q);
851 li = 1;
852 }
853 if (e >= 0) {
854 // we were given two addrs. change the
855 // end pointer to the addr given by user.
856 r = find_line(e); // what line is #e
857 r = end_line(r);
858 li = e - b + 1;
859 }
860 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000861 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000862 if (i == 0) { // :123CR goto line #123
863 if (b >= 0) {
864 dot = find_line(b); // what line is #b
865 dot_skip_over_ws();
866 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000867 }
868#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200869 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000870 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000871 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000872 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000873 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000874 retcode = system(orig_buf + 1); // run the cmd
875 if (retcode)
876 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000877 rawmode();
878 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000879 }
880#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200881 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000882 if (b < 0) { // no addr given- use defaults
883 b = e = count_lines(text, dot);
884 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000885 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200886 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000887 if (b < 0) { // no addr given- use defaults
888 q = begin_line(dot); // assume .,. for the range
889 r = end_line(dot);
890 }
891 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
892 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200893 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000894 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000895 if (file_modified && !useforce) {
896 status_line_bold("No write since last change (:edit! overrides)");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200897 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000898 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000899 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000900 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000901 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000902 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000903 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000904 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905 } else {
906 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000907 status_line_bold("No current filename");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200908 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000909 }
910
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000911 if (init_text_buffer(fn) < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200912 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000913
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000914#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000915 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
916 free(reg[Ureg]); // free orig line reg- for 'U'
917 reg[Ureg]= 0;
918 }
919 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
920 free(reg[YDreg]); // free default yank/delete register
921 reg[YDreg]= 0;
922 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000923#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000924 // how many lines in text[]?
925 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000926 status_line("\"%s\"%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000927 IF_FEATURE_VI_READONLY("%s")
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000928 " %dL, %dC", current_filename,
929 (file_size(fn) < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000930 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000931 ((readonly_mode) ? " [Readonly]" : ""),
932 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000933 li, ch);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200934 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000935 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100936 status_line_bold("No address allowed on this command");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200937 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000938 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000939 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000940 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000941 free(current_filename);
942 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000943 } else {
944 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000945 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000946 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200947 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000948 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000949 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000950 cookmode();
951 show_help();
952 rawmode();
953 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200954 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000955 if (b < 0) { // no addr given- use defaults
956 q = begin_line(dot); // assume .,. for the range
957 r = end_line(dot);
958 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000959 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000960 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000961 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000962 int c_is_no_print;
963
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000964 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000965 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000966 if (c_is_no_print) {
967 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000968 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000969 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000970 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000971 write1("$\r");
972 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000973 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000974 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000975 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000976 else
977 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000978 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000979 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000980 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000981 standout_end();
982 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000983 Hit_Return();
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200984 } else if (strncmp(cmd, "quit", i) == 0 // quit
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200985 || strncmp(cmd, "next", i) == 0 // edit next file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000986 ) {
Denys Vlasenko04cecd52010-04-16 22:13:55 -0700987 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000988 if (useforce) {
989 // force end of argv list
990 if (*cmd == 'q') {
991 optind = save_argc;
992 }
993 editing = 0;
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +0200994 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000995 }
996 // don't exit if the file been modified
997 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000998 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000999 (*cmd == 'q' ? "quit" : "next"));
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001000 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001001 }
1002 // are there other file to edit
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001003 n = save_argc - optind - 1;
1004 if (*cmd == 'q' && n > 0) {
1005 status_line_bold("%d more file(s) to edit", n);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001006 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001007 }
Denys Vlasenko04cecd52010-04-16 22:13:55 -07001008 if (*cmd == 'n' && n <= 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001009 status_line_bold("No more files to edit");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001010 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001011 }
1012 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001013 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001014 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001015 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001016 status_line_bold("No filename given");
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001017 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001018 }
1019 if (b < 0) { // no addr given- use defaults
1020 q = begin_line(dot); // assume "dot"
1021 }
1022 // read after current line- unless user said ":0r foo"
1023 if (b != 0)
1024 q = next_line(q);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001025 { // dance around potentially-reallocated text[]
1026 uintptr_t ofs = q - text;
1027 ch = file_insert(fn, q, 0);
1028 q = text + ofs;
1029 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001030 if (ch < 0)
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001031 goto ret; // nothing was inserted
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001032 // how many lines in text[]?
1033 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001034 status_line("\"%s\""
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001035 IF_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001036 " %dL, %dC", fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001037 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001038 li, ch);
1039 if (ch > 0) {
1040 // if the insert is before "dot" then we need to update
1041 if (q <= dot)
1042 dot += ch;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001043 /*file_modified++; - done by file_insert */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001044 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001045 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001046 if (file_modified && !useforce) {
1047 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001048 } else {
1049 // reset the filenames to edit
1050 optind = fn_start - 1;
1051 editing = 0;
1052 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001053#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001054 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001055#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001056 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001057#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001058 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001059 // only blank is regarded as args delmiter. What about tab '\t' ?
1060 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001061 // print out values of all options
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001062#if ENABLE_FEATURE_VI_SETOPTS
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001063 status_line_bold(
1064 "%sautoindent "
1065 "%sflash "
1066 "%signorecase "
1067 "%sshowmatch "
1068 "tabstop=%u",
1069 autoindent ? "" : "no",
1070 err_method ? "" : "no",
1071 ignorecase ? "" : "no",
1072 showmatch ? "" : "no",
1073 tabstop
1074 );
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001075#endif
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001076 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001077 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001078#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001079 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001080 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001081 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001082 i = 2; // ":set noautoindent"
1083 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001084 setops(argp, "flash " , i, "fl", VI_ERR_METHOD);
Denis Vlasenkof9234132007-03-21 00:03:42 +00001085 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001086 setops(argp, "showmatch " , i, "sm", VI_SHOWMATCH );
1087 if (strncmp(argp + i, "tabstop=", 8) == 0) {
1088 int t = 0;
1089 sscanf(argp + i+8, "%u", &t);
1090 if (t > 0 && t <= MAX_TABSTOP)
1091 tabstop = t;
Denis Vlasenkof9234132007-03-21 00:03:42 +00001092 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001093 argp = skip_non_whitespace(argp);
1094 argp = skip_whitespace(argp);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001095 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001096#endif /* FEATURE_VI_SETOPTS */
1097#endif /* FEATURE_VI_SET */
1098#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001099 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001100 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001101 int gflag;
1102
1103 // F points to the "find" pattern
1104 // R points to the "replace" pattern
1105 // replace the cmd line delimiters "/" with NULLs
1106 gflag = 0; // global replace flag
1107 c = orig_buf[1]; // what is the delimiter
1108 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001109 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001110 if (!R)
1111 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001112 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001113 buf1 = strchr(R, c);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001114 if (!buf1)
1115 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001116 *buf1++ = '\0'; // terminate "replace"
1117 if (*buf1 == 'g') { // :s/foo/bar/g
1118 buf1++;
1119 gflag++; // turn on gflag
1120 }
1121 q = begin_line(q);
1122 if (b < 0) { // maybe :s/foo/bar/
1123 q = begin_line(dot); // start with cur line
1124 b = count_lines(text, q); // cur line number
1125 }
1126 if (e < 0)
1127 e = b; // maybe :.s/foo/bar/
1128 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1129 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001130 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001131 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001132 if (buf1) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001133 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001134 // we found the "find" pattern - delete it
1135 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001136 // inset the "replace" patern
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001137 bias = string_insert(buf1, R); // insert the string
1138 buf1 += bias;
1139 ls += bias;
1140 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001141 // check for "global" :s/foo/bar/g
1142 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001143 if ((buf1 + strlen(R)) < end_line(ls)) {
1144 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001145 goto vc4; // don't let q move past cur line
1146 }
1147 }
1148 }
1149 q = next_line(ls);
1150 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001151#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001152 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001153 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001154 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1155 || strncmp(cmd, "wq", i) == 0
1156 || strncmp(cmd, "wn", i) == 0
1157 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001158 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001159 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001160 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001161 fn = args;
1162 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001163#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001164 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001165 status_line_bold("\"%s\" File is read only", fn);
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001166 goto ret;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001167 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001168#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001169 // how many lines in text[]?
1170 li = count_lines(q, r);
1171 ch = r - q + 1;
1172 // see if file exists- if not, its just a new file request
1173 if (useforce) {
1174 // if "fn" is not write-able, chmod u+w
1175 // sprintf(syscmd, "chmod u+w %s", fn);
1176 // system(syscmd);
1177 forced = TRUE;
1178 }
1179 l = file_write(fn, q, r);
1180 if (useforce && forced) {
1181 // chmod u-w
1182 // sprintf(syscmd, "chmod u-w %s", fn);
1183 // system(syscmd);
1184 forced = FALSE;
1185 }
Paul Fox61e45db2005-10-09 14:43:22 +00001186 if (l < 0) {
1187 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001188 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001189 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001190 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001191 if (q == text && r == end - 1 && l == ch) {
1192 file_modified = 0;
1193 last_file_modified = -1;
1194 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001195 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n'
1196 || cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N'
1197 )
1198 && l == ch
1199 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00001200 editing = 0;
1201 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001202 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001203#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001204 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001205 if (b < 0) { // no addr given- use defaults
1206 q = begin_line(dot); // assume .,. for the range
1207 r = end_line(dot);
1208 }
1209 text_yank(q, r, YDreg);
1210 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001211 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001212 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001213#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001214 } else {
1215 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001216 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001217 }
Denys Vlasenko9f82d0b2010-05-19 01:54:37 +02001218 ret:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001219 dot = bound_dot(dot); // make sure "dot" is valid
1220 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001221#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001222 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001223 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001224#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001225}
Paul Fox61e45db2005-10-09 14:43:22 +00001226
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001227#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001228
1229static void Hit_Return(void)
1230{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001231 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001232
Denis Vlasenkof882f082007-12-23 02:36:51 +00001233 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001234 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001235 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001236 while ((c = get_one_char()) != '\n' && c != '\r')
1237 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001238 redraw(TRUE); // force redraw all
1239}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001240
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001241static int next_tabstop(int col)
1242{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001243 return col + ((tabstop - 1) - (col % tabstop));
1244}
1245
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001246//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001247static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001248{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001249 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001250 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001251 int cnt, ro, co;
1252
1253 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001254
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001255 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001256 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001257 // how many lines do we have to move
1258 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001259 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001260 screenbegin = beg_cur;
1261 if (cnt > (rows - 1) / 2) {
1262 // we moved too many lines. put "dot" in middle of screen
1263 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1264 screenbegin = prev_line(screenbegin);
1265 }
1266 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001267 } else {
1268 char *end_scr; // begin and end of screen
1269 end_scr = end_screen(); // last char of screen
1270 if (beg_cur > end_scr) {
1271 // "d" is after bottom line on screen
1272 // how many lines do we have to move
1273 cnt = count_lines(end_scr, beg_cur);
1274 if (cnt > (rows - 1) / 2)
1275 goto sc1; // too many lines
1276 for (ro = 0; ro < cnt - 1; ro++) {
1277 // move screen begin the same amount
1278 screenbegin = next_line(screenbegin);
1279 // now, move the end of screen
1280 end_scr = next_line(end_scr);
1281 end_scr = end_line(end_scr);
1282 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001283 }
1284 }
1285 // "d" is on screen- find out which row
1286 tp = screenbegin;
1287 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1288 if (tp == beg_cur)
1289 break;
1290 tp = next_line(tp);
1291 }
1292
1293 // find out what col "d" is on
1294 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001295 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001296 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001297 break;
1298 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001299 // handle tabs like real vi
1300 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001301 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001302 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001303 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001304 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1305 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001306 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001307 co++;
1308 tp++;
1309 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001310
1311 // "co" is the column where "dot" is.
1312 // The screen has "columns" columns.
1313 // The currently displayed columns are 0+offset -- columns+ofset
1314 // |-------------------------------------------------------------|
1315 // ^ ^ ^
1316 // offset | |------- columns ----------------|
1317 //
1318 // If "co" is already in this range then we do not have to adjust offset
1319 // but, we do have to subtract the "offset" bias from "co".
1320 // If "co" is outside this range then we have to change "offset".
1321 // If the first char of a line is a tab the cursor will try to stay
1322 // in column 7, but we have to set offset to 0.
1323
1324 if (co < 0 + offset) {
1325 offset = co;
1326 }
1327 if (co >= columns + offset) {
1328 offset = co - columns + 1;
1329 }
1330 // if the first char of the line is a tab, and "dot" is sitting on it
1331 // force offset to 0.
1332 if (d == beg_cur && *d == '\t') {
1333 offset = 0;
1334 }
1335 co -= offset;
1336
1337 *row = ro;
1338 *col = co;
1339}
1340
1341//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001342static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001343{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001344 if (p > text) {
1345 p = memrchr(text, '\n', p - text);
1346 if (!p)
1347 return text;
1348 return p + 1;
1349 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001350 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001351}
1352
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001353static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001354{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001355 if (p < end - 1) {
1356 p = memchr(p, '\n', end - p - 1);
1357 if (!p)
1358 return end - 1;
1359 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001360 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001361}
1362
Denis Vlasenkof882f082007-12-23 02:36:51 +00001363static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001364{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001365 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001366 // Try to stay off of the Newline
1367 if (*p == '\n' && (p - begin_line(p)) > 0)
1368 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001369 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001370}
1371
Denis Vlasenkof882f082007-12-23 02:36:51 +00001372static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001373{
1374 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001375 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001376 p--; // step to prev line
1377 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001378 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001379}
1380
Denis Vlasenkof882f082007-12-23 02:36:51 +00001381static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001382{
1383 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001384 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001385 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001386 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001387}
1388
1389//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001390static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001391{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001392 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001393 int cnt;
1394
1395 // find new bottom line
1396 q = screenbegin;
1397 for (cnt = 0; cnt < rows - 2; cnt++)
1398 q = next_line(q);
1399 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001400 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001401}
1402
Denis Vlasenkof882f082007-12-23 02:36:51 +00001403// count line from start to stop
1404static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001405{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001406 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001407 int cnt;
1408
Denis Vlasenkof882f082007-12-23 02:36:51 +00001409 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001410 q = start;
1411 start = stop;
1412 stop = q;
1413 }
1414 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001415 stop = end_line(stop);
1416 while (start <= stop && start <= end - 1) {
1417 start = end_line(start);
1418 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001419 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001420 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001421 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001422 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001423}
1424
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001425static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001426{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001427 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001428
1429 for (q = text; li > 1; li--) {
1430 q = next_line(q);
1431 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001432 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001433}
1434
1435//----- Dot Movement Routines ----------------------------------
1436static void dot_left(void)
1437{
1438 if (dot > text && dot[-1] != '\n')
1439 dot--;
1440}
1441
1442static void dot_right(void)
1443{
1444 if (dot < end - 1 && *dot != '\n')
1445 dot++;
1446}
1447
1448static void dot_begin(void)
1449{
1450 dot = begin_line(dot); // return pointer to first char cur line
1451}
1452
1453static void dot_end(void)
1454{
1455 dot = end_line(dot); // return pointer to last char cur line
1456}
1457
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001458static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001459{
1460 int co;
1461
1462 p = begin_line(p);
1463 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001464 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001465 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001466 break;
1467 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001468 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001469 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001470 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001471 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001472 co++;
1473 p++;
1474 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001475 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001476}
1477
1478static void dot_next(void)
1479{
1480 dot = next_line(dot);
1481}
1482
1483static void dot_prev(void)
1484{
1485 dot = prev_line(dot);
1486}
1487
1488static void dot_scroll(int cnt, int dir)
1489{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001490 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001491
1492 for (; cnt > 0; cnt--) {
1493 if (dir < 0) {
1494 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001495 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001496 screenbegin = prev_line(screenbegin);
1497 } else {
1498 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001499 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001500 screenbegin = next_line(screenbegin);
1501 }
1502 }
1503 // make sure "dot" stays on the screen so we dont scroll off
1504 if (dot < screenbegin)
1505 dot = screenbegin;
1506 q = end_screen(); // find new bottom line
1507 if (dot > q)
1508 dot = begin_line(q); // is dot is below bottom line?
1509 dot_skip_over_ws();
1510}
1511
1512static void dot_skip_over_ws(void)
1513{
1514 // skip WS
1515 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1516 dot++;
1517}
1518
1519static void dot_delete(void) // delete the char at 'dot'
1520{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001521 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001522}
1523
Denis Vlasenkof882f082007-12-23 02:36:51 +00001524static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001525{
1526 if (p >= end && end > text) {
1527 p = end - 1;
1528 indicate_error('1');
1529 }
1530 if (p < text) {
1531 p = text;
1532 indicate_error('2');
1533 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001534 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001535}
1536
1537//----- Helper Utility Routines --------------------------------
1538
1539//----------------------------------------------------------------
1540//----- Char Routines --------------------------------------------
1541/* Chars that are part of a word-
1542 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1543 * Chars that are Not part of a word (stoppers)
1544 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1545 * Chars that are WhiteSpace
1546 * TAB NEWLINE VT FF RETURN SPACE
1547 * DO NOT COUNT NEWLINE AS WHITESPACE
1548 */
1549
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001550static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551{
1552 int li;
1553
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001554 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001555 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001556 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001557 // initialize the new screen. assume this will be a empty file.
1558 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001559 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001560 for (li = 1; li < ro - 1; li++) {
1561 screen[(li * co) + 0] = '~';
1562 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001563 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001564}
1565
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001566#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001567static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001568{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001569 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001570 return strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001571 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001572 return strncmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001573}
1574
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001575// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001576static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001577{
1578#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001579 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001580 int len;
1581
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001582 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001583 if (dir == FORWARD) {
1584 stop = end - 1; // assume range is p - end-1
1585 if (range == LIMITED)
1586 stop = next_line(p); // range is to next line
1587 for (start = p; start < stop; start++) {
1588 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001589 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001590 }
1591 }
1592 } else if (dir == BACK) {
1593 stop = text; // assume range is text - p
1594 if (range == LIMITED)
1595 stop = prev_line(p); // range is to prev line
1596 for (start = p - len; start >= stop; start--) {
1597 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001598 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001599 }
1600 }
1601 }
1602 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001603 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001604#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001605 char *q;
1606 struct re_pattern_buffer preg;
1607 int i;
1608 int size, range;
1609
1610 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1611 preg.translate = 0;
1612 preg.fastmap = 0;
1613 preg.buffer = 0;
1614 preg.allocated = 0;
1615
1616 // assume a LIMITED forward search
1617 q = next_line(p);
1618 q = end_line(q);
1619 q = end - 1;
1620 if (dir == BACK) {
1621 q = prev_line(p);
1622 q = text;
1623 }
1624 // count the number of chars to search over, forward or backward
1625 size = q - p;
1626 if (size < 0)
1627 size = p - q;
1628 // RANGE could be negative if we are searching backwards
1629 range = q - p;
1630
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001631 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001632 if (q != 0) {
1633 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001634 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001635 i = 0; // return p if pattern not compiled
1636 goto cs1;
1637 }
1638
1639 q = p;
1640 if (range < 0) {
1641 q = p - size;
1642 if (q < text)
1643 q = text;
1644 }
1645 // search for the compiled pattern, preg, in p[]
1646 // range < 0- search backward
1647 // range > 0- search forward
1648 // 0 < start < size
1649 // re_search() < 0 not found or error
1650 // re_search() > 0 index of found pattern
1651 // struct pattern char int int int struct reg
1652 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1653 i = re_search(&preg, q, size, 0, range, 0);
1654 if (i == -1) {
1655 p = 0;
1656 i = 0; // return NULL if pattern not found
1657 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001658 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001659 if (dir == FORWARD) {
1660 p = p + i;
1661 } else {
1662 p = p - i;
1663 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001664 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001665#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001666}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001667#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001668
Denis Vlasenko33875382008-06-21 20:31:50 +00001669static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001670{
1671 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001672 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001673 refresh(FALSE); // show the ^
1674 c = get_one_char();
1675 *p = c;
1676 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001677 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001678 } else if (c == 27) { // Is this an ESC?
1679 cmd_mode = 0;
1680 cmdcnt = 0;
1681 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001682 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001683 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001684 p--;
1685 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001686 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001687 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001688 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001689 p--;
1690 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001691 }
1692 } else {
1693 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001694 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001695
1696 if (c == 13)
1697 c = '\n'; // translate \r to \n
1698 sp = p; // remember addr of insert
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001699 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001700#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001701 if (showmatch && strchr(")]}", *sp) != NULL) {
1702 showmatching(sp);
1703 }
1704 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001705 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001706 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001707 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00001708 len = strspn(q, " \t"); // space or tab
1709 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001710 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001711 bias = text_hole_make(p, len);
1712 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001713 q += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001714 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001715 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001716 }
1717 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001718#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001719 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001720 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001721}
1722
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001723// might reallocate text[]! use p += stupid_insert(p, ...),
1724// and be careful to not use pointers into potentially freed text[]!
1725static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001726{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001727 uintptr_t bias;
1728 bias = text_hole_make(p, 1);
1729 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001730 *p = c;
1731 //file_modified++; - done by text_hole_make()
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001732 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001733}
1734
Denis Vlasenko33875382008-06-21 20:31:50 +00001735static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001736{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001737 char *save_dot, *p, *q, *t;
1738 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001739
1740 save_dot = dot;
1741 p = q = dot;
1742
1743 if (strchr("cdy><", c)) {
1744 // these cmds operate on whole lines
1745 p = q = begin_line(p);
1746 for (cnt = 1; cnt < cmdcnt; cnt++) {
1747 q = next_line(q);
1748 }
1749 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001750 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001751 // These cmds operate on char positions
1752 do_cmd(c); // execute movement cmd
1753 q = dot;
1754 } else if (strchr("wW", c)) {
1755 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001756 // if we are at the next word's first char
1757 // step back one char
1758 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001759 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001760 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1761 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1762 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001763 if (dot > text && *dot == '\n')
1764 dot--; // stay off NL
1765 q = dot;
1766 } else if (strchr("H-k{", c)) {
1767 // these operate on multi-lines backwards
1768 q = end_line(dot); // find NL
1769 do_cmd(c); // execute movement cmd
1770 dot_begin();
1771 p = dot;
1772 } else if (strchr("L+j}\r\n", c)) {
1773 // these operate on multi-lines forwards
1774 p = begin_line(dot);
1775 do_cmd(c); // execute movement cmd
1776 dot_end(); // find NL
1777 q = dot;
1778 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001779 // nothing -- this causes any other values of c to
1780 // represent the one-character range under the
1781 // cursor. this is correct for ' ' and 'l', but
1782 // perhaps no others.
1783 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001784 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001785 if (q < p) {
1786 t = q;
1787 q = p;
1788 p = t;
1789 }
1790
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001791 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001792 if (q > p && strchr("^0bBh\b\177", c)) q--;
1793
1794 multiline = 0;
1795 for (t = p; t <= q; t++) {
1796 if (*t == '\n') {
1797 multiline = 1;
1798 break;
1799 }
1800 }
1801
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001802 *start = p;
1803 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001804 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001805 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001806}
1807
Denis Vlasenko33875382008-06-21 20:31:50 +00001808static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001809{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001810 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001811 int test, inc;
1812
1813 inc = dir;
1814 c = c0 = p[0];
1815 ci = p[inc];
1816 test = 0;
1817
1818 if (type == S_BEFORE_WS) {
1819 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001820 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001821 }
1822 if (type == S_TO_WS) {
1823 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001824 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001825 }
1826 if (type == S_OVER_WS) {
1827 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001828 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001829 }
1830 if (type == S_END_PUNCT) {
1831 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001832 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001833 }
1834 if (type == S_END_ALNUM) {
1835 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001836 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001837 }
1838 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001839 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001840}
1841
Denis Vlasenko33875382008-06-21 20:31:50 +00001842static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001843{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001844 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001845
1846 while (st_test(p, type, dir, &c)) {
1847 // make sure we limit search to correct number of lines
1848 if (c == '\n' && --linecnt < 1)
1849 break;
1850 if (dir >= 0 && p >= end - 1)
1851 break;
1852 if (dir < 0 && p <= text)
1853 break;
1854 p += dir; // move to next char
1855 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001856 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001857}
1858
1859// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001860static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001861{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001862 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001863 int dir, level;
1864
1865 match = ')';
1866 level = 1;
1867 dir = 1; // assume forward
1868 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001869 case '(': match = ')'; break;
1870 case '[': match = ']'; break;
1871 case '{': match = '}'; break;
1872 case ')': match = '('; dir = -1; break;
1873 case ']': match = '['; dir = -1; break;
1874 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001875 }
1876 for (q = p + dir; text <= q && q < end; q += dir) {
1877 // look for match, count levels of pairs (( ))
1878 if (*q == c)
1879 level++; // increase pair levels
1880 if (*q == match)
1881 level--; // reduce pair level
1882 if (level == 0)
1883 break; // found matching pair
1884 }
1885 if (level != 0)
1886 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001887 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001888}
1889
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001890#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001891// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001892static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001893{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001894 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001895
1896 // we found half of a pair
1897 q = find_pair(p, *p); // get loc of matching char
1898 if (q == NULL) {
1899 indicate_error('3'); // no matching char
1900 } else {
1901 // "q" now points to matching pair
1902 save_dot = dot; // remember where we are
1903 dot = q; // go to new loc
1904 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001905 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001906 dot = save_dot; // go back to old loc
1907 refresh(FALSE);
1908 }
1909}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001910#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001911
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001912// open a hole in text[]
1913// might reallocate text[]! use p += text_hole_make(p, ...),
1914// and be careful to not use pointers into potentially freed text[]!
1915static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001916{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001917 uintptr_t bias = 0;
1918
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001919 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001920 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001921 end += size; // adjust the new END
1922 if (end >= (text + text_size)) {
1923 char *new_text;
1924 text_size += end - (text + text_size) + 10240;
1925 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001926 bias = (new_text - text);
1927 screenbegin += bias;
1928 dot += bias;
1929 end += bias;
1930 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001931 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001932 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001933 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001934 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001935 file_modified++;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001936 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001937}
1938
1939// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001940static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001941{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001942 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001943 int cnt, hole_size;
1944
1945 // move forwards, from beginning
1946 // assume p <= q
1947 src = q + 1;
1948 dest = p;
1949 if (q < p) { // they are backward- swap them
1950 src = p + 1;
1951 dest = q;
1952 }
1953 hole_size = q - p + 1;
1954 cnt = end - src;
1955 if (src < text || src > end)
1956 goto thd0;
1957 if (dest < text || dest >= end)
1958 goto thd0;
1959 if (src >= end)
1960 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001961 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001962 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001963 end = end - hole_size; // adjust the new END
1964 if (dest >= end)
1965 dest = end - 1; // make sure dest in below end-1
1966 if (end <= text)
1967 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001968 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001969 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001970 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001971}
1972
1973// copy text into register, then delete text.
1974// if dist <= 0, do not include, or go past, a NewLine
1975//
Denis Vlasenko33875382008-06-21 20:31:50 +00001976static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001977{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001978 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001979
1980 // make sure start <= stop
1981 if (start > stop) {
1982 // they are backwards, reverse them
1983 p = start;
1984 start = stop;
1985 stop = p;
1986 }
1987 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001988 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001989 p = start;
1990 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001991 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001992 // dont go past a NewLine
1993 for (; p + 1 <= stop; p++) {
1994 if (p[1] == '\n') {
1995 stop = p; // "stop" just before NewLine
1996 break;
1997 }
1998 }
1999 }
2000 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002001#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002002 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002003#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002004 if (yf == YANKDEL) {
2005 p = text_hole_delete(start, stop);
2006 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002007 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002008}
2009
2010static void show_help(void)
2011{
2012 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002013#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002014 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002015#endif
2016#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002017 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002018#endif
2019#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00002020 "\n\tLine marking with 'x"
2021 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002022#endif
2023#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002024 "\n\tReadonly if vi is called as \"view\""
2025 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002026#endif
2027#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002028 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002029#endif
2030#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002031 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002032#endif
2033#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002034 "\n\tSignal catching- ^C"
2035 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002036#endif
2037#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002038 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002039#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002040 );
2041}
2042
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002043#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002044static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002045{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002046 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002047 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002048 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002049 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002050 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002051 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002052 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002053 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002054 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002055}
2056
2057static void end_cmd_q(void)
2058{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002059#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002060 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002061#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002062 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002063}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002064#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002065
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002066#if ENABLE_FEATURE_VI_YANKMARK \
2067 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2068 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002069// might reallocate text[]! use p += string_insert(p, ...),
2070// and be careful to not use pointers into potentially freed text[]!
2071static uintptr_t string_insert(char *p, const char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002072{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002073 uintptr_t bias;
2074 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002075
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002076 i = strlen(s);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002077 bias = text_hole_make(p, i);
2078 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002079 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002080#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002081 {
2082 int cnt;
2083 for (cnt = 0; *s != '\0'; s++) {
2084 if (*s == '\n')
2085 cnt++;
2086 }
2087 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2088 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002089#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002090 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002091}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002092#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002093
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002094#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002095static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002096{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002097 int cnt = q - p;
2098 if (cnt < 0) { // they are backwards- reverse them
2099 p = q;
2100 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002101 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002102 free(reg[dest]); // if already a yank register, free it
2103 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002104 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002105}
2106
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002107static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002108{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002109 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002110
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002111 c = 'D'; // default to D-reg
2112 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002113 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002114 if (YDreg == 26)
2115 c = 'D';
2116 if (YDreg == 27)
2117 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002118 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002119}
2120
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002121static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002122{
2123 // A context is defined to be "modifying text"
2124 // Any modifying command establishes a new context.
2125
2126 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002127 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002128 // we are trying to modify text[]- make this the current context
2129 mark[27] = mark[26]; // move cur to prev
2130 mark[26] = dot; // move local to cur
2131 context_start = prev_line(prev_line(dot));
2132 context_end = next_line(next_line(dot));
2133 //loiter= start_loiter= now;
2134 }
2135 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002136}
2137
Denis Vlasenkof882f082007-12-23 02:36:51 +00002138static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002139{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002140 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002141
2142 // the current context is in mark[26]
2143 // the previous context is in mark[27]
2144 // only swap context if other context is valid
2145 if (text <= mark[27] && mark[27] <= end - 1) {
2146 tmp = mark[27];
2147 mark[27] = mark[26];
2148 mark[26] = tmp;
2149 p = mark[26]; // where we are going- previous context
2150 context_start = prev_line(prev_line(prev_line(p)));
2151 context_end = next_line(next_line(next_line(p)));
2152 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002153 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002154}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002155#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002156
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002157//----- Set terminal attributes --------------------------------
2158static void rawmode(void)
2159{
2160 tcgetattr(0, &term_orig);
2161 term_vi = term_orig;
2162 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2163 term_vi.c_iflag &= (~IXON & ~ICRNL);
2164 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002165 term_vi.c_cc[VMIN] = 1;
2166 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002167 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002168 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002169}
2170
2171static void cookmode(void)
2172{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002173 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002174 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002175}
2176
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002177#if ENABLE_FEATURE_VI_USE_SIGNALS
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002178//----- Come here when we get a window resize signal ---------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002179static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002180{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002181 int save_errno = errno;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002182 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002183 signal(SIGWINCH, winch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002184 query_screen_dimensions();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002185 new_screen(rows, columns); // get memory for virtual screen
2186 redraw(TRUE); // re-draw the screen
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002187 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002188}
2189
2190//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002191static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002192{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002193 int save_errno = errno;
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002194 rawmode(); // terminal to "raw"
2195 last_status_cksum = 0; // force status update
2196 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002197
2198 signal(SIGTSTP, suspend_sig);
2199 signal(SIGCONT, SIG_DFL);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002200 //kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
2201 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002202}
2203
2204//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002205static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002206{
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002207 int save_errno = errno;
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002208 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002209 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002210
2211 signal(SIGCONT, cont_sig);
2212 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002213 kill(my_pid, SIGTSTP);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002214 errno = save_errno;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002215}
2216
2217//----- Come here when we get a signal ---------------------------
2218static void catch_sig(int sig)
2219{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002220 signal(SIGINT, catch_sig);
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002221 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002222}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002223#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002224
Denys Vlasenko606291b2009-09-23 23:15:43 +02002225static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002226{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002227 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002228
Denys Vlasenko606291b2009-09-23 23:15:43 +02002229 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002230 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002231 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002232}
2233
2234//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002235static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002236{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002237 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002238
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002239 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002240 c = read_key(STDIN_FILENO, readbuffer, /*timeout off:*/ -2);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002241 if (c == -1) { // EOF/error
2242 go_bottom_and_clear_to_eol();
2243 cookmode(); // terminal to "cooked"
2244 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002245 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002246 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002247}
2248
2249//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002250static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002251{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002252 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002253
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002254#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002255 if (!adding2q) {
2256 // we are not adding to the q.
2257 // but, we may be reading from a q
2258 if (ioq == 0) {
2259 // there is no current q, read from STDIN
2260 c = readit(); // get the users input
2261 } else {
2262 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002263 // careful with correct sign expansion!
2264 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002265 if (c == '\0') {
2266 // the end of the q, read from STDIN
2267 free(ioq_start);
2268 ioq_start = ioq = 0;
2269 c = readit(); // get the users input
2270 }
2271 }
2272 } else {
2273 // adding STDIN chars to q
2274 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002275 if (lmc_len >= MAX_INPUT_LEN - 1) {
2276 status_line_bold("last_modifying_cmd overrun");
2277 } else {
2278 // add new char to q
2279 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002280 }
2281 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002282#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002283 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002284#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002285 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002286}
2287
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002288// Get input line (uses "status line" area)
2289static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002290{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002291 // char [MAX_INPUT_LEN]
2292#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002293
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002294 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002295 int i;
2296
2297 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002298 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002299 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002300 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002301
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002302 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002303 while (i < MAX_INPUT_LEN) {
2304 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002305 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002306 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002307 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002308 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002309 buf[--i] = '\0';
2310 write1("\b \b"); // erase char on screen
2311 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002312 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002313 } else if (c > 0 && c < 256) { // exclude Unicode
2314 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002315 buf[i] = c;
2316 buf[++i] = '\0';
2317 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002318 }
2319 }
2320 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002321 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002322#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002323}
2324
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002325static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002326{
2327 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002328 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002329
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002330 cnt = -1;
Denys Vlasenkodef47832010-04-18 20:39:41 -07002331 if (fn && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002332 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002333 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002334}
2335
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002336// might reallocate text[]!
2337static int file_insert(const char *fn, char *p, int update_ro_status)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002338{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002339 int cnt = -1;
2340 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002341 struct stat statbuf;
2342
2343 /* Validate file */
2344 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002345 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002346 goto fi0;
2347 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002348 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002349 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002350 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002351 goto fi0;
2352 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002353 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002354 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002355 goto fi0;
2356 }
2357
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002358 // read file to buffer
2359 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002360 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002361 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002362 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002363 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002364 size = statbuf.st_size;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002365 p += text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002366 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002367 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002368 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002369 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002370 } else if (cnt < size) {
2371 // There was a partial read, shrink unused space text[]
2372 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denys Vlasenko6331cf02009-11-13 09:08:27 +01002373 status_line_bold("can't read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002374 }
2375 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002376 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002377 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002378 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002379#if ENABLE_FEATURE_VI_READONLY
2380 if (update_ro_status
2381 && ((access(fn, W_OK) < 0) ||
2382 /* root will always have access()
2383 * so we check fileperms too */
2384 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2385 )
2386 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002387 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002388 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002389#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002390 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002391}
2392
Denis Vlasenko33875382008-06-21 20:31:50 +00002393static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002394{
2395 int fd, cnt, charcnt;
2396
2397 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002398 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002399 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002400 }
Denis Vlasenko8abae882008-05-03 11:35:59 +00002401 /* By popular request we do not open file with O_TRUNC,
2402 * but instead ftruncate() it _after_ successful write.
2403 * Might reduce amount of data lost on power fail etc.
2404 */
2405 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002406 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002407 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002408 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002409 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002410 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002411 if (charcnt == cnt) {
2412 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002413 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002414 } else {
2415 charcnt = 0;
2416 }
2417 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002418 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002419}
2420
2421//----- Terminal Drawing ---------------------------------------
2422// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002423// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002424// screen coordinates
2425// 0,0 ... 0,79
2426// 1,0 ... 1,79
2427// . ... .
2428// . ... .
2429// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002430// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002431
2432//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002433static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002434{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002435 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002436#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2437 enum {
2438 SZ_UP = sizeof(CMup),
2439 SZ_DN = sizeof(CMdown),
2440 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2441 };
2442 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2443#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002444 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002445
2446 if (row < 0) row = 0;
2447 if (row >= rows) row = rows - 1;
2448 if (col < 0) col = 0;
2449 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002450
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002451 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002452 sprintf(cm1, CMrc, row + 1, col + 1);
2453 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002454
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002455#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002456 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002457 char *screenp;
2458 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002459 int diff = Rrow - row;
2460
2461 if (diff < -5 || diff > 5)
2462 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002463
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002464 //----- find the minimum # of chars to move cursor -------------
2465 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2466 cm2[0] = '\0';
2467
2468 // move to the correct row
2469 while (row < Rrow) {
2470 // the cursor has to move up
2471 strcat(cm2, CMup);
2472 Rrow--;
2473 }
2474 while (row > Rrow) {
2475 // the cursor has to move down
2476 strcat(cm2, CMdown);
2477 Rrow++;
2478 }
2479
2480 // now move to the correct column
2481 strcat(cm2, "\r"); // start at col 0
2482 // just send out orignal source char to get to correct place
2483 screenp = &screen[row * columns]; // start of screen line
2484 strncat(cm2, screenp, col);
2485
2486 // pick the shortest cursor motion to send out
2487 if (strlen(cm2) < strlen(cm)) {
2488 cm = cm2;
2489 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002490 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002491 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002492 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002493#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002494 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002495}
2496
2497//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002498static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002499{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002500 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002501}
2502
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002503static void go_bottom_and_clear_to_eol(void)
2504{
2505 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2506 clear_to_eol(); // erase to end of line
2507}
2508
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002509//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002510static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002511{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002512 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002513}
2514
2515//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002516static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002517{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002518 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002519}
2520
2521//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002522static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002523{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002524 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002525}
2526
2527//----- Flash the screen --------------------------------------
2528static void flash(int h)
2529{
2530 standout_start(); // send "start reverse video" sequence
2531 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002532 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002533 standout_end(); // send "end reverse video" sequence
2534 redraw(TRUE);
2535}
2536
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002537static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002538{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002539#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002540 if (crashme > 0)
2541 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002542#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002543 if (!err_method) {
2544 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002545 } else {
2546 flash(10);
2547 }
2548}
2549
2550//----- Screen[] Routines --------------------------------------
2551//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002552static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002553{
2554 memset(screen, ' ', screensize); // clear new screen
2555}
2556
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002557static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002558{
2559 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002560 char *e = buf + count;
2561
Paul Fox8552aec2005-09-16 12:20:05 +00002562 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002563 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002564 return sum;
2565}
2566
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002567//----- Draw the status line at bottom of the screen -------------
2568static void show_status_line(void)
2569{
Paul Foxc3504852005-09-16 12:48:18 +00002570 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002571
Paul Fox8552aec2005-09-16 12:20:05 +00002572 // either we already have an error or status message, or we
2573 // create one.
2574 if (!have_status_msg) {
2575 cnt = format_edit_status();
2576 cksum = bufsum(status_buffer, cnt);
2577 }
2578 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002579 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002580 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002581 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00002582 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002583 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002584 (columns - 1) ) {
2585 have_status_msg = 0;
2586 Hit_Return();
2587 }
2588 have_status_msg = 0;
2589 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002590 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2591 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002592 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002593}
2594
2595//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002596// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002597static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002598{
2599 va_list args;
2600
2601 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002602 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002603 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002604 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002605 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002606
2607 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002608}
2609
Paul Fox8552aec2005-09-16 12:20:05 +00002610// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002611static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002612{
2613 va_list args;
2614
2615 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002616 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002617 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002618
2619 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002620}
2621
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002622// copy s to buf, convert unprintable
2623static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002624{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002625 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002626 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002627
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002628 buf[0] = '\0';
2629 if (!s[0])
2630 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002631
2632 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002633 for (; *s; s++) {
2634 int c_is_no_print;
2635
2636 c = *s;
2637 c_is_no_print = (c & 0x80) && !Isprint(c);
2638 if (c_is_no_print) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002639 strcpy(d, SOn);
2640 d += sizeof(SOn)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002641 c = '.';
2642 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002643 if (c < ' ' || c == 0x7f) {
2644 *d++ = '^';
2645 c |= '@'; /* 0x40 */
2646 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002647 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002648 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002649 *d++ = c;
2650 *d = '\0';
2651 if (c_is_no_print) {
2652 strcpy(d, SOs);
2653 d += sizeof(SOs)-1;
2654 }
2655 if (*s == '\n') {
2656 *d++ = '$';
2657 *d = '\0';
2658 }
2659 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002660 break;
2661 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002662}
2663
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002664static void not_implemented(const char *s)
2665{
2666 char buf[MAX_INPUT_LEN];
2667
2668 print_literal(buf, s);
2669 status_line_bold("\'%s\' is not implemented", buf);
2670}
2671
2672// show file status on status line
2673static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002674{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002675 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002676
2677#define tot format_edit_status__tot
2678
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002679 int cur, percent, ret, trunc_at;
2680
Paul Fox8552aec2005-09-16 12:20:05 +00002681 // file_modified is now a counter rather than a flag. this
2682 // helps reduce the amount of line counting we need to do.
2683 // (this will cause a mis-reporting of modified status
2684 // once every MAXINT editing operations.)
2685
2686 // it would be nice to do a similar optimization here -- if
2687 // we haven't done a motion that could have changed which line
2688 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002689 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002690
2691 // reduce counting -- the total lines can't have
2692 // changed if we haven't done any edits.
2693 if (file_modified != last_file_modified) {
2694 tot = cur + count_lines(dot, end - 1) - 1;
2695 last_file_modified = file_modified;
2696 }
2697
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002698 // current line percent
2699 // ------------- ~~ ----------
2700 // total lines 100
2701 if (tot > 0) {
2702 percent = (100 * cur) / tot;
2703 } else {
2704 cur = tot = 0;
2705 percent = 100;
2706 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002707
Paul Fox8552aec2005-09-16 12:20:05 +00002708 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2709 columns : STATUS_BUFFER_LEN-1;
2710
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002711 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002712#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002713 "%c %s%s%s %d/%d %d%%",
2714#else
2715 "%c %s%s %d/%d %d%%",
2716#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002717 cmd_mode_indicator[cmd_mode & 3],
2718 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002719#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002720 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002721#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002722 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002723 cur, tot, percent);
2724
2725 if (ret >= 0 && ret < trunc_at)
2726 return ret; /* it all fit */
2727
2728 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002729#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002730}
2731
2732//----- Force refresh of all Lines -----------------------------
2733static void redraw(int full_screen)
2734{
2735 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002736 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002737 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002738 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002739 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002740 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002741}
2742
2743//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002744static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002745{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002746 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002747 int co;
2748 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002749 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002750
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002751 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002752 co = 0;
2753 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002754 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002755 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002756 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002757 if (c == '\n')
2758 break;
2759 if ((c & 0x80) && !Isprint(c)) {
2760 c = '.';
2761 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002762 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002763 if (c == '\t') {
2764 c = ' ';
2765 // co % 8 != 7
2766 while ((co % tabstop) != (tabstop - 1)) {
2767 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002768 }
2769 } else {
2770 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002771 if (c == 0x7f)
2772 c = '?';
2773 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002774 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002775 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002776 }
2777 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002778 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002779 // discard scrolled-off-to-the-left portion,
2780 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002781 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002782 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002783 co -= tabstop;
2784 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002785 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002786 if (src >= end)
2787 break;
2788 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002789 // check "short line, gigantic offset" case
2790 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002791 ofs = co;
2792 // discard last scrolled off part
2793 co -= ofs;
2794 dest += ofs;
2795 // fill the rest with spaces
2796 if (co < columns)
2797 memset(&dest[co], ' ', columns - co);
2798 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002799}
2800
2801//----- Refresh the changed screen lines -----------------------
2802// Copy the source line from text[] into the buffer and note
2803// if the current screenline is different from the new buffer.
2804// If they differ then that line needs redrawing on the terminal.
2805//
2806static void refresh(int full_screen)
2807{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002808#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002809
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002810 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002811 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002812
Denys Vlasenkoc5fb0ad2010-07-21 12:39:42 +02002813 if (ENABLE_FEATURE_VI_WIN_RESIZE IF_FEATURE_VI_ASK_TERMINAL(&& !G.get_rowcol_error) ) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002814 unsigned c = columns, r = rows;
Denys Vlasenko2bb651a2010-04-16 20:55:52 -07002815 query_screen_dimensions();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002816 full_screen |= (c - columns) | (r - rows);
2817 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002818 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2819 tp = screenbegin; // index into text[] of top line
2820
2821 // compare text[] to screen[] and mark screen[] lines that need updating
2822 for (li = 0; li < rows - 1; li++) {
2823 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002824 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002825 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002826 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002827
2828 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002829 if (tp < end) {
2830 char *t = memchr(tp, '\n', end - tp);
2831 if (!t) t = end - 1;
2832 tp = t + 1;
2833 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002834
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002835 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002836 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002837 cs = 0;
2838 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002839 sp = &screen[li * columns]; // start of screen line
2840 if (full_screen) {
2841 // force re-draw of every single column from 0 - columns-1
2842 goto re0;
2843 }
2844 // compare newly formatted buffer with virtual screen
2845 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002846 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002847 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002848 changed = TRUE; // mark for redraw
2849 break;
2850 }
2851 }
2852
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002853 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002854 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002855 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002856 changed = TRUE; // mark for redraw
2857 break;
2858 }
2859 }
2860 // now, cs is index of first diff, and ce is index of last diff
2861
2862 // if horz offset has changed, force a redraw
2863 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002864 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002865 changed = TRUE;
2866 }
2867
2868 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002869 if (cs < 0) cs = 0;
2870 if (ce > columns - 1) ce = columns - 1;
2871 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002872 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002873 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002874 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002875 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002876
2877 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002878 //if (offset != old_offset) {
2879 // // place_cursor is still too stupid
2880 // // to handle offsets correctly
2881 // place_cursor(li, cs, FALSE);
2882 //} else {
2883 place_cursor(li, cs, TRUE);
2884 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002885
2886 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002887 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002888 }
2889 }
2890
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002891 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002892
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002893 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002894#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002895}
2896
Eric Andersen3f980402001-04-04 17:31:15 +00002897//---------------------------------------------------------------------
2898//----- the Ascii Chart -----------------------------------------------
2899//
2900// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2901// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2902// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2903// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2904// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2905// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2906// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2907// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2908// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2909// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2910// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2911// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2912// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2913// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2914// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2915// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2916//---------------------------------------------------------------------
2917
2918//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002919static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00002920{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002921 const char *msg = msg; // for compiler
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002922 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002923 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00002924 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002925 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002926 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00002927
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002928// c1 = c; // quiet the compiler
2929// cnt = yf = 0; // quiet the compiler
2930// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002931 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002932
Paul Fox8552aec2005-09-16 12:20:05 +00002933 show_status_line();
2934
Eric Andersenbff7a602001-11-17 07:15:43 +00002935 /* if this is a cursor key, skip these checks */
2936 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002937 case KEYCODE_UP:
2938 case KEYCODE_DOWN:
2939 case KEYCODE_LEFT:
2940 case KEYCODE_RIGHT:
2941 case KEYCODE_HOME:
2942 case KEYCODE_END:
2943 case KEYCODE_PAGEUP:
2944 case KEYCODE_PAGEDOWN:
2945 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00002946 goto key_cmd_mode;
2947 }
2948
Eric Andersen3f980402001-04-04 17:31:15 +00002949 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002950 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002951 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002952 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002953 // we are 'R'eplacing the current *dot with new char
2954 if (*dot == '\n') {
2955 // don't Replace past E-o-l
2956 cmd_mode = 1; // convert to insert
2957 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002958 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002959 if (c != 27)
2960 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2961 dot = char_insert(dot, c); // insert new char
2962 }
2963 goto dc1;
2964 }
2965 }
2966 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002967 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002968 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002969 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002970 if (1 <= c || Isprint(c)) {
2971 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002972 }
2973 goto dc1;
2974 }
2975
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002976 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00002977 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00002978 //case 0x01: // soh
2979 //case 0x09: // ht
2980 //case 0x0b: // vt
2981 //case 0x0e: // so
2982 //case 0x0f: // si
2983 //case 0x10: // dle
2984 //case 0x11: // dc1
2985 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002986#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00002987 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00002988 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00002989 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002990#endif
Eric Andersen822c3832001-05-07 17:37:43 +00002991 //case 0x16: // syn
2992 //case 0x17: // etb
2993 //case 0x18: // can
2994 //case 0x1c: // fs
2995 //case 0x1d: // gs
2996 //case 0x1e: // rs
2997 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002998 //case '!': // !-
2999 //case '#': // #-
3000 //case '&': // &-
3001 //case '(': // (-
3002 //case ')': // )-
3003 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003004 //case '=': // =-
3005 //case '@': // @-
3006 //case 'F': // F-
3007 //case 'K': // K-
3008 //case 'Q': // Q-
3009 //case 'S': // S-
3010 //case 'T': // T-
3011 //case 'V': // V-
3012 //case '[': // [-
3013 //case '\\': // \-
3014 //case ']': // ]-
3015 //case '_': // _-
3016 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003017 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003018 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003019 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00003020 buf[0] = c;
3021 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003022 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003023 end_cmd_q(); // stop adding to q
3024 case 0x00: // nul- ignore
3025 break;
3026 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003027 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00003028 dot_scroll(rows - 2, -1);
3029 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003030 case 4: // ctrl-D scroll down half screen
3031 dot_scroll((rows - 2) / 2, 1);
3032 break;
3033 case 5: // ctrl-E scroll down one line
3034 dot_scroll(1, 1);
3035 break;
3036 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003037 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003038 dot_scroll(rows - 2, 1);
3039 break;
3040 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003041 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003042 break;
3043 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003044 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003045 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003046 case 0x7f: // DEL- move left (This may be ERASE char)
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003047 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003048 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003049 }
Eric Andersen3f980402001-04-04 17:31:15 +00003050 dot_left();
3051 break;
3052 case 10: // Newline ^J
3053 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003054 case KEYCODE_DOWN: // cursor key Down
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003055 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003056 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003057 }
Eric Andersen3f980402001-04-04 17:31:15 +00003058 dot_next(); // go to next B-o-l
3059 dot = move_to_col(dot, ccol + offset); // try stay in same col
3060 break;
3061 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003062 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003063 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003064 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003065 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003066 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003067 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003068 refresh(TRUE); // this will redraw the entire display
3069 break;
3070 case 13: // Carriage Return ^M
3071 case '+': // +- goto next line
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003072 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003073 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003074 }
Eric Andersen3f980402001-04-04 17:31:15 +00003075 dot_next();
3076 dot_skip_over_ws();
3077 break;
3078 case 21: // ctrl-U scroll up half screen
3079 dot_scroll((rows - 2) / 2, -1);
3080 break;
3081 case 25: // ctrl-Y scroll up one line
3082 dot_scroll(1, -1);
3083 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003084 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003085 if (cmd_mode == 0)
3086 indicate_error(c);
3087 cmd_mode = 0; // stop insrting
3088 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003089 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003090 break;
3091 case ' ': // move right
3092 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003093 case KEYCODE_RIGHT: // Cursor Key Right
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003094 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003095 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003096 }
Eric Andersen3f980402001-04-04 17:31:15 +00003097 dot_right();
3098 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003099#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003100 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003101 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3102 if ((unsigned)c1 <= 25) { // a-z?
3103 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003104 } else {
3105 indicate_error(c);
3106 }
3107 break;
3108 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003109 c1 = (get_one_char() | 0x20) - 'a';
3110 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003111 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003112 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003113 if (text <= q && q < end) {
3114 dot = q;
3115 dot_begin(); // go to B-o-l
3116 dot_skip_over_ws();
3117 }
3118 } else if (c1 == '\'') { // goto previous context
3119 dot = swap_context(dot); // swap current and previous context
3120 dot_begin(); // go to B-o-l
3121 dot_skip_over_ws();
3122 } else {
3123 indicate_error(c);
3124 }
3125 break;
3126 case 'm': // m- Mark a line
3127 // this is really stupid. If there are any inserts or deletes
3128 // between text[0] and dot then this mark will not point to the
3129 // correct location! It could be off by many lines!
3130 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003131 c1 = (get_one_char() | 0x20) - 'a';
3132 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003133 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003134 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003135 } else {
3136 indicate_error(c);
3137 }
3138 break;
3139 case 'P': // P- Put register before
3140 case 'p': // p- put register after
3141 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003142 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003143 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003144 break;
3145 }
3146 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003147 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003148 if (c == 'P') {
3149 dot_begin(); // putting lines- Put above
3150 }
3151 if (c == 'p') {
3152 // are we putting after very last line?
3153 if (end_line(dot) == (end - 1)) {
3154 dot = end; // force dot to end of text[]
3155 } else {
3156 dot_next(); // next line, then put before
3157 }
3158 }
3159 } else {
3160 if (c == 'p')
3161 dot_right(); // move to right, can move to NL
3162 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003163 string_insert(dot, p); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003164 end_cmd_q(); // stop adding to q
3165 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003166 case 'U': // U- Undo; replace current line with original version
3167 if (reg[Ureg] != 0) {
3168 p = begin_line(dot);
3169 q = end_line(dot);
3170 p = text_hole_delete(p, q); // delete cur line
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003171 p += string_insert(p, reg[Ureg]); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003172 dot = p;
3173 dot_skip_over_ws();
3174 }
3175 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003176#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003177 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003178 case KEYCODE_END: // Cursor Key End
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003179 if (--cmdcnt > 0) {
3180 dot_next();
Eric Andersen3f980402001-04-04 17:31:15 +00003181 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003182 }
Glenn L McGrathee829062004-01-21 10:59:45 +00003183 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003184 break;
3185 case '%': // %- find matching char of pair () [] {}
3186 for (q = dot; q < end && *q != '\n'; q++) {
3187 if (strchr("()[]{}", *q) != NULL) {
3188 // we found half of a pair
3189 p = find_pair(q, *q);
3190 if (p == NULL) {
3191 indicate_error(c);
3192 } else {
3193 dot = p;
3194 }
3195 break;
3196 }
3197 }
3198 if (*q == '\n')
3199 indicate_error(c);
3200 break;
3201 case 'f': // f- forward to a user specified char
3202 last_forward_char = get_one_char(); // get the search char
3203 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003204 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003205 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003206 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003207 case ';': // ;- look at rest of line for last forward char
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003208 if (--cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003209 do_cmd(';');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003210 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003211 if (last_forward_char == 0)
3212 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003213 q = dot + 1;
3214 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3215 q++;
3216 }
3217 if (*q == last_forward_char)
3218 dot = q;
3219 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003220 case ',': // repeat latest 'f' in opposite direction
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003221 if (--cmdcnt > 0) {
Paul Foxb5ee8db2008-02-14 01:17:01 +00003222 do_cmd(',');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003223 }
Paul Foxb5ee8db2008-02-14 01:17:01 +00003224 if (last_forward_char == 0)
3225 break;
3226 q = dot - 1;
3227 while (q >= text && *q != '\n' && *q != last_forward_char) {
3228 q--;
3229 }
3230 if (q >= text && *q == last_forward_char)
3231 dot = q;
3232 break;
3233
Eric Andersen3f980402001-04-04 17:31:15 +00003234 case '-': // -- goto prev line
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003235 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003236 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003237 }
Eric Andersen3f980402001-04-04 17:31:15 +00003238 dot_prev();
3239 dot_skip_over_ws();
3240 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003241#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003242 case '.': // .- repeat the last modifying command
3243 // Stuff the last_modifying_cmd back into stdin
3244 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003245 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003246 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003247 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003248 }
3249 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003250#endif
3251#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003252 case '?': // /- search for a pattern
3253 case '/': // /- search for a pattern
3254 buf[0] = c;
3255 buf[1] = '\0';
3256 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003257 if (q[0] && !q[1]) {
3258 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003259 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003260 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003261 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003262 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003263 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003264 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003265 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003266 goto dc3; // now find the pattern
3267 }
3268 // user changed mind and erased the "/"- do nothing
3269 break;
3270 case 'N': // N- backward search for last pattern
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003271 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003272 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003273 }
Eric Andersen3f980402001-04-04 17:31:15 +00003274 dir = BACK; // assume BACKWARD search
3275 p = dot - 1;
3276 if (last_search_pattern[0] == '?') {
3277 dir = FORWARD;
3278 p = dot + 1;
3279 }
3280 goto dc4; // now search for pattern
3281 break;
3282 case 'n': // n- repeat search for last pattern
3283 // search rest of text[] starting at next char
3284 // if search fails return orignal "p" not the "p+1" address
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003285 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003286 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003287 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003288 dc3:
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003289 dir = FORWARD; // assume FORWARD search
3290 p = dot + 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003291 if (last_search_pattern[0] == '?') {
3292 dir = BACK;
3293 p = dot - 1;
3294 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003295 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003296 q = char_search(p, last_search_pattern + 1, dir, FULL);
3297 if (q != NULL) {
3298 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003299 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003300 goto dc2;
3301 }
3302 // no pattern found between "dot" and "end"- continue at top
3303 p = text;
3304 if (dir == BACK) {
3305 p = end - 1;
3306 }
3307 q = char_search(p, last_search_pattern + 1, dir, FULL);
3308 if (q != NULL) { // found something
3309 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003310 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003311 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003312 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003313 }
3314 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003315 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003316 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003317 dc2:
3318 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003319 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003320 break;
3321 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003322 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003323 if (q != NULL) { // found blank line
3324 dot = next_line(q); // move to next blank line
3325 }
3326 break;
3327 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003328 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003329 if (q != NULL) { // found blank line
3330 dot = next_line(q); // move to next blank line
3331 }
3332 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003333#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003334 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003335 case '1': // 1-
3336 case '2': // 2-
3337 case '3': // 3-
3338 case '4': // 4-
3339 case '5': // 5-
3340 case '6': // 6-
3341 case '7': // 7-
3342 case '8': // 8-
3343 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003344 if (c == '0' && cmdcnt < 1) {
3345 dot_begin(); // this was a standalone zero
3346 } else {
3347 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3348 }
3349 break;
3350 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003351 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003352#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003353 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003354#else
Eric Andersen822c3832001-05-07 17:37:43 +00003355 if (*p == ':')
3356 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003357 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003358 if (cnt <= 0)
3359 break;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003360 if (strncmp(p, "quit", cnt) == 0
3361 || strncmp(p, "q!", cnt) == 0 // delete lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003362 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003363 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003364 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003365 } else {
3366 editing = 0;
3367 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003368 } else if (strncmp(p, "write", cnt) == 0
3369 || strncmp(p, "wq", cnt) == 0
3370 || strncmp(p, "wn", cnt) == 0
3371 || (p[0] == 'x' && !p[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003372 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003373 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003374 if (cnt < 0) {
3375 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003376 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003377 } else {
3378 file_modified = 0;
3379 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003380 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003381 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3382 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3383 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003384 editing = 0;
3385 }
Eric Andersen3f980402001-04-04 17:31:15 +00003386 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003387 } else if (strncmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003388 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003389 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003390 dot = find_line(j); // go to line # j
3391 dot_skip_over_ws();
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003392 } else { // unrecognized cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003393 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003394 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003395#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003396 break;
3397 case '<': // <- Left shift something
3398 case '>': // >- Right shift something
3399 cnt = count_lines(text, dot); // remember what line we are on
3400 c1 = get_one_char(); // get the type of thing to delete
3401 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003402 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003403 p = begin_line(p);
3404 q = end_line(q);
3405 i = count_lines(p, q); // # of lines we are shifting
3406 for ( ; i > 0; i--, p = next_line(p)) {
3407 if (c == '<') {
3408 // shift left- remove tab or 8 spaces
3409 if (*p == '\t') {
3410 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003411 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003412 } else if (*p == ' ') {
3413 // we should be calculating columns, not just SPACE
3414 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003415 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003416 }
3417 }
3418 } else if (c == '>') {
3419 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003420 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003421 }
3422 }
3423 dot = find_line(cnt); // what line were we on
3424 dot_skip_over_ws();
3425 end_cmd_q(); // stop adding to q
3426 break;
3427 case 'A': // A- append at e-o-l
3428 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003429 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003430 case 'a': // a- append after current char
3431 if (*dot != '\n')
3432 dot++;
3433 goto dc_i;
3434 break;
3435 case 'B': // B- back a blank-delimited Word
3436 case 'E': // E- end of a blank-delimited word
3437 case 'W': // W- forward a blank-delimited word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003438 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003439 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003440 }
Eric Andersen3f980402001-04-04 17:31:15 +00003441 dir = FORWARD;
3442 if (c == 'B')
3443 dir = BACK;
3444 if (c == 'W' || isspace(dot[dir])) {
3445 dot = skip_thing(dot, 1, dir, S_TO_WS);
3446 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3447 }
3448 if (c != 'W')
3449 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3450 break;
3451 case 'C': // C- Change to e-o-l
3452 case 'D': // D- delete to e-o-l
3453 save_dot = dot;
3454 dot = dollar_line(dot); // move to before NL
3455 // copy text into a register and delete
3456 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3457 if (c == 'C')
3458 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003459#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003460 if (c == 'D')
3461 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003462#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003463 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003464 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003465 c1 = get_one_char();
3466 if (c1 != 'g') {
3467 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003468 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003469 buf[2] = '\0';
3470 not_implemented(buf);
3471 break;
3472 }
3473 if (cmdcnt == 0)
3474 cmdcnt = 1;
3475 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003476 case 'G': // G- goto to a line number (default= E-O-F)
3477 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003478 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003479 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003480 }
3481 dot_skip_over_ws();
3482 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003483 case 'H': // H- goto top line on screen
3484 dot = screenbegin;
3485 if (cmdcnt > (rows - 1)) {
3486 cmdcnt = (rows - 1);
3487 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003488 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003489 do_cmd('+');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003490 }
Eric Andersen3f980402001-04-04 17:31:15 +00003491 dot_skip_over_ws();
3492 break;
3493 case 'I': // I- insert before first non-blank
3494 dot_begin(); // 0
3495 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003496 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003497 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003498 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003499 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003500 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003501 break;
3502 case 'J': // J- join current and next lines together
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003503 if (--cmdcnt > 1) {
Eric Andersen3f980402001-04-04 17:31:15 +00003504 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003505 }
Eric Andersen3f980402001-04-04 17:31:15 +00003506 dot_end(); // move to NL
3507 if (dot < end - 1) { // make sure not last char in text[]
3508 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003509 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003510 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003511 dot_delete();
3512 }
3513 }
3514 end_cmd_q(); // stop adding to q
3515 break;
3516 case 'L': // L- goto bottom line on screen
3517 dot = end_screen();
3518 if (cmdcnt > (rows - 1)) {
3519 cmdcnt = (rows - 1);
3520 }
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003521 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003522 do_cmd('-');
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003523 }
Eric Andersen3f980402001-04-04 17:31:15 +00003524 dot_begin();
3525 dot_skip_over_ws();
3526 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003527 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003528 dot = screenbegin;
3529 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3530 dot = next_line(dot);
3531 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003532 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003533 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003534 p = begin_line(dot);
3535 if (p[-1] == '\n') {
3536 dot_prev();
3537 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3538 dot_end();
3539 dot = char_insert(dot, '\n');
3540 } else {
3541 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003542 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003543 dot_prev(); // -
3544 }
3545 goto dc_i;
3546 break;
3547 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003548 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003549 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003550 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003551 case KEYCODE_DELETE:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003552 c = 'x';
3553 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003554 case 'X': // X- delete char before dot
3555 case 'x': // x- delete the current char
3556 case 's': // s- substitute the current char
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003557 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003558 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003559 }
Eric Andersen3f980402001-04-04 17:31:15 +00003560 dir = 0;
3561 if (c == 'X')
3562 dir = -1;
3563 if (dot[dir] != '\n') {
3564 if (c == 'X')
3565 dot--; // delete prev char
3566 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3567 }
3568 if (c == 's')
3569 goto dc_i; // start insrting
3570 end_cmd_q(); // stop adding to q
3571 break;
3572 case 'Z': // Z- if modified, {write}; exit
3573 // ZZ means to save file (if necessary), then exit
3574 c1 = get_one_char();
3575 if (c1 != 'Z') {
3576 indicate_error(c);
3577 break;
3578 }
Paul Foxf0305b72006-03-28 14:18:21 +00003579 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003580 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003581 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003582 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003583 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003584 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003585 if (cnt < 0) {
3586 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003587 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003588 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003589 editing = 0;
3590 }
3591 } else {
3592 editing = 0;
3593 }
3594 break;
3595 case '^': // ^- move to first non-blank on line
3596 dot_begin();
3597 dot_skip_over_ws();
3598 break;
3599 case 'b': // b- back a word
3600 case 'e': // e- end of word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003601 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003602 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003603 }
Eric Andersen3f980402001-04-04 17:31:15 +00003604 dir = FORWARD;
3605 if (c == 'b')
3606 dir = BACK;
3607 if ((dot + dir) < text || (dot + dir) > end - 1)
3608 break;
3609 dot += dir;
3610 if (isspace(*dot)) {
3611 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3612 }
3613 if (isalnum(*dot) || *dot == '_') {
3614 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3615 } else if (ispunct(*dot)) {
3616 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3617 }
3618 break;
3619 case 'c': // c- change something
3620 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003621#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003622 case 'y': // y- yank something
3623 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003624#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003625 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003626 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003627 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003628#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003629 if (c == 'y' || c == 'Y')
3630 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003631#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003632 c1 = 'y';
3633 if (c != 'Y')
3634 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003635 // determine range, and whether it spans lines
3636 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003637 if (c1 == 27) { // ESC- user changed mind and wants out
3638 c = c1 = 27; // Escape- do nothing
3639 } else if (strchr("wW", c1)) {
3640 if (c == 'c') {
3641 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003642 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003643 if (q <= text || q[-1] == '\n')
3644 break;
3645 q--;
3646 }
3647 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003648 dot = yank_delete(p, q, ml, yf); // delete word
3649 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3650 // partial line copy text into a register and delete
3651 dot = yank_delete(p, q, ml, yf); // delete word
3652 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3653 // whole line copy text into a register and delete
3654 dot = yank_delete(p, q, ml, yf); // delete lines
3655 whole = 1;
3656 } else {
3657 // could not recognize object
3658 c = c1 = 27; // error-
3659 ml = 0;
3660 indicate_error(c);
3661 }
3662 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003663 if (c == 'c') {
3664 dot = char_insert(dot, '\n');
3665 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003666 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003667 dot_prev();
3668 }
3669 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003670 dot_begin();
3671 dot_skip_over_ws();
3672 }
Eric Andersen3f980402001-04-04 17:31:15 +00003673 }
3674 if (c1 != 27) {
3675 // if CHANGING, not deleting, start inserting after the delete
3676 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003677 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003678 goto dc_i; // start inserting
3679 }
3680 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003681 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003682 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003683#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003684 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003685 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003686 }
3687 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003688 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003689 for (cnt = 0; p <= q; p++) {
3690 if (*p == '\n')
3691 cnt++;
3692 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003693 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003694 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003695#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003696 end_cmd_q(); // stop adding to q
3697 }
3698 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003699 }
Eric Andersen3f980402001-04-04 17:31:15 +00003700 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003701 case KEYCODE_UP: // cursor key Up
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003702 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003703 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003704 }
Eric Andersen3f980402001-04-04 17:31:15 +00003705 dot_prev();
3706 dot = move_to_col(dot, ccol + offset); // try stay in same col
3707 break;
3708 case 'r': // r- replace the current char with user input
3709 c1 = get_one_char(); // get the replacement char
3710 if (*dot != '\n') {
3711 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003712 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003713 }
3714 end_cmd_q(); // stop adding to q
3715 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003716 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003717 last_forward_char = get_one_char();
3718 do_cmd(';');
3719 if (*dot == last_forward_char)
3720 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003721 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003722 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003723 case 'w': // w- forward a word
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003724 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003725 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003726 }
Eric Andersen3f980402001-04-04 17:31:15 +00003727 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3728 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3729 } else if (ispunct(*dot)) { // we are on PUNCT
3730 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3731 }
3732 if (dot < end - 1)
3733 dot++; // move over word
3734 if (isspace(*dot)) {
3735 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3736 }
3737 break;
3738 case 'z': // z-
3739 c1 = get_one_char(); // get the replacement char
3740 cnt = 0;
3741 if (c1 == '.')
3742 cnt = (rows - 2) / 2; // put dot at center
3743 if (c1 == '-')
3744 cnt = rows - 2; // put dot at bottom
3745 screenbegin = begin_line(dot); // start dot at top
3746 dot_scroll(cnt, -1);
3747 break;
3748 case '|': // |- move to column "cmdcnt"
3749 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3750 break;
3751 case '~': // ~- flip the case of letters a-z -> A-Z
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003752 if (--cmdcnt > 0) {
Eric Andersen3f980402001-04-04 17:31:15 +00003753 do_cmd(c);
Denys Vlasenko35fdb1b2010-03-26 16:10:14 +01003754 }
Eric Andersen3f980402001-04-04 17:31:15 +00003755 if (islower(*dot)) {
3756 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003757 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003758 } else if (isupper(*dot)) {
3759 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003760 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003761 }
3762 dot_right();
3763 end_cmd_q(); // stop adding to q
3764 break;
3765 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003766 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00003767 dot_begin();
3768 break;
3769 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003770#if 0
3771 case KEYCODE_FUN1: // Function Key F1
3772 case KEYCODE_FUN2: // Function Key F2
3773 case KEYCODE_FUN3: // Function Key F3
3774 case KEYCODE_FUN4: // Function Key F4
3775 case KEYCODE_FUN5: // Function Key F5
3776 case KEYCODE_FUN6: // Function Key F6
3777 case KEYCODE_FUN7: // Function Key F7
3778 case KEYCODE_FUN8: // Function Key F8
3779 case KEYCODE_FUN9: // Function Key F9
3780 case KEYCODE_FUN10: // Function Key F10
3781 case KEYCODE_FUN11: // Function Key F11
3782 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00003783 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003784#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003785 }
3786
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003787 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003788 // if text[] just became empty, add back an empty line
3789 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003790 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003791 dot = text;
3792 }
3793 // it is OK for dot to exactly equal to end, otherwise check dot validity
3794 if (dot != end) {
3795 dot = bound_dot(dot); // make sure "dot" is valid
3796 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003797#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003798 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003799#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003800
3801 if (!isdigit(c))
3802 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3803 cnt = dot - begin_line(dot);
3804 // Try to stay off of the Newline
3805 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3806 dot--;
3807}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003808
Paul Fox35e9c5d2008-03-06 16:26:12 +00003809/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003810#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003811static int totalcmds = 0;
3812static int Mp = 85; // Movement command Probability
3813static int Np = 90; // Non-movement command Probability
3814static int Dp = 96; // Delete command Probability
3815static int Ip = 97; // Insert command Probability
3816static int Yp = 98; // Yank command Probability
3817static int Pp = 99; // Put command Probability
3818static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003819static const char chars[20] = "\t012345 abcdABCD-=.$";
3820static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003821 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003822 "broadcast", "the", "emergency", "of",
3823 "system", "quick", "brown", "fox",
3824 "jumped", "over", "lazy", "dogs",
3825 "back", "January", "Febuary", "March"
3826};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003827static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003828 "You should have received a copy of the GNU General Public License\n",
3829 "char c, cm, *cmd, *cmd1;\n",
3830 "generate a command by percentages\n",
3831 "Numbers may be typed as a prefix to some commands.\n",
3832 "Quit, discarding changes!\n",
3833 "Forced write, if permission originally not valid.\n",
3834 "In general, any ex or ed command (such as substitute or delete).\n",
3835 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3836 "Please get w/ me and I will go over it with you.\n",
3837 "The following is a list of scheduled, committed changes.\n",
3838 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3839 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3840 "Any question about transactions please contact Sterling Huxley.\n",
3841 "I will try to get back to you by Friday, December 31.\n",
3842 "This Change will be implemented on Friday.\n",
3843 "Let me know if you have problems accessing this;\n",
3844 "Sterling Huxley recently added you to the access list.\n",
3845 "Would you like to go to lunch?\n",
3846 "The last command will be automatically run.\n",
3847 "This is too much english for a computer geek.\n",
3848};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003849static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003850 "You should have received a copy of the GNU General Public License\n",
3851 "char c, cm, *cmd, *cmd1;\n",
3852 "generate a command by percentages\n",
3853 "Numbers may be typed as a prefix to some commands.\n",
3854 "Quit, discarding changes!\n",
3855 "Forced write, if permission originally not valid.\n",
3856 "In general, any ex or ed command (such as substitute or delete).\n",
3857 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3858 "Please get w/ me and I will go over it with you.\n",
3859 "The following is a list of scheduled, committed changes.\n",
3860 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3861 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3862 "Any question about transactions please contact Sterling Huxley.\n",
3863 "I will try to get back to you by Friday, December 31.\n",
3864 "This Change will be implemented on Friday.\n",
3865 "Let me know if you have problems accessing this;\n",
3866 "Sterling Huxley recently added you to the access list.\n",
3867 "Would you like to go to lunch?\n",
3868 "The last command will be automatically run.\n",
3869 "This is too much english for a computer geek.\n",
3870};
3871
3872// create a random command to execute
3873static void crash_dummy()
3874{
3875 static int sleeptime; // how long to pause between commands
3876 char c, cm, *cmd, *cmd1;
3877 int i, cnt, thing, rbi, startrbi, percent;
3878
3879 // "dot" movement commands
3880 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3881
3882 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02003883 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003884 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003885 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02003886 readbuffer[0] = 'X';
3887 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003888 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003889 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003890 // generate a command by percentages
3891 percent = (int) lrand48() % 100; // get a number from 0-99
3892 if (percent < Mp) { // Movement commands
3893 // available commands
3894 cmd = cmd1;
3895 M++;
3896 } else if (percent < Np) { // non-movement commands
3897 cmd = "mz<>\'\""; // available commands
3898 N++;
3899 } else if (percent < Dp) { // Delete commands
3900 cmd = "dx"; // available commands
3901 D++;
3902 } else if (percent < Ip) { // Inset commands
3903 cmd = "iIaAsrJ"; // available commands
3904 I++;
3905 } else if (percent < Yp) { // Yank commands
3906 cmd = "yY"; // available commands
3907 Y++;
3908 } else if (percent < Pp) { // Put commands
3909 cmd = "pP"; // available commands
3910 P++;
3911 } else {
3912 // We do not know how to handle this command, try again
3913 U++;
3914 goto cd0;
3915 }
3916 // randomly pick one of the available cmds from "cmd[]"
3917 i = (int) lrand48() % strlen(cmd);
3918 cm = cmd[i];
3919 if (strchr(":\024", cm))
3920 goto cd0; // dont allow colon or ctrl-T commands
3921 readbuffer[rbi++] = cm; // put cmd into input buffer
3922
3923 // now we have the command-
3924 // there are 1, 2, and multi char commands
3925 // find out which and generate the rest of command as necessary
3926 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3927 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3928 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3929 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3930 }
3931 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3932 c = cmd1[thing];
3933 readbuffer[rbi++] = c; // add movement to input buffer
3934 }
3935 if (strchr("iIaAsc", cm)) { // multi-char commands
3936 if (cm == 'c') {
3937 // change some thing
3938 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3939 c = cmd1[thing];
3940 readbuffer[rbi++] = c; // add movement to input buffer
3941 }
3942 thing = (int) lrand48() % 4; // what thing to insert
3943 cnt = (int) lrand48() % 10; // how many to insert
3944 for (i = 0; i < cnt; i++) {
3945 if (thing == 0) { // insert chars
3946 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3947 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003948 strcat(readbuffer, words[(int) lrand48() % 20]);
3949 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003950 sleeptime = 0; // how fast to type
3951 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003952 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003953 sleeptime = 0; // how fast to type
3954 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003955 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003956 sleeptime = 0; // how fast to type
3957 }
3958 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003959 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003960 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02003961 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003962 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003963 totalcmds++;
3964 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003965 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003966}
3967
3968// test to see if there are any errors
3969static void crash_test()
3970{
3971 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003972
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003973 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003974 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003975
3976 msg[0] = '\0';
3977 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003978 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003979 }
3980 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003981 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003982 }
3983 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003984 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003985 }
3986 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003987 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003988 }
3989 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003990 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003991 }
3992 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003993 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003994 }
3995
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003996 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00003997 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003998 totalcmds, last_input_char, msg, SOs, SOn);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003999 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004000 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004001 if (d[0] == '\n' || d[0] == '\r')
4002 break;
4003 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004004 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004005 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004006 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004007 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004008 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4009 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4010 oldtim = tim;
4011 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004012}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004013#endif