global.c 41.8 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   global.c                                                             *
 *                                                                        *
5
 *   Copyright (C) 1999-2005 Chris Allegretta                             *
Chris Allegretta's avatar
Chris Allegretta committed
6
7
 *   This program is free software; you can redistribute it and/or modify *
 *   it under the terms of the GNU General Public License as published by *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
 *   any later version.                                                   *
 *                                                                        *
11
12
13
14
 *   This program is distributed in the hope that it will be useful, but  *
 *   WITHOUT ANY WARRANTY; without even the implied warranty of           *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU    *
 *   General Public License for more details.                             *
Chris Allegretta's avatar
Chris Allegretta committed
15
16
17
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
18
19
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA            *
 *   02110-1301, USA.                                                     *
Chris Allegretta's avatar
Chris Allegretta committed
20
21
22
 *                                                                        *
 **************************************************************************/

23
24
25
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
26

27
#include <stdlib.h>
28
#include <assert.h>
Chris Allegretta's avatar
Chris Allegretta committed
29
30
#include "proto.h"

Chris Allegretta's avatar
Chris Allegretta committed
31
/* Global variables */
32

33
#ifndef DISABLE_WRAPJUSTIFY
34
35
36
/* wrap_at might be set in rcfile.c or nano.c. */
ssize_t wrap_at = -CHARS_FROM_EOL;	/* Right justified fill value,
					   allows resize */
37
38
#endif

Chris Allegretta's avatar
Chris Allegretta committed
39
40
41
char *last_search = NULL;	/* Last string we searched for */
char *last_replace = NULL;	/* Last replacement string */

42
unsigned long flags = 0;	/* Our flag containing many options */
43
WINDOW *topwin;			/* Top buffer */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
44
WINDOW *edit;			/* The file portion of the editor */
Chris Allegretta's avatar
Chris Allegretta committed
45
WINDOW *bottomwin;		/* Bottom buffer */
Chris Allegretta's avatar
Chris Allegretta committed
46
char *filename = NULL;		/* Name of the file */
47
48
49
50
51

#ifndef NANO_SMALL
struct stat originalfilestat;	/* Stat for the file as we loaded it */
#endif

Chris Allegretta's avatar
Chris Allegretta committed
52
53
54
int editwinrows = 0;		/* How many rows long is the edit
				   window? */
filestruct *current;		/* Current buffer pointer */
55
56
size_t current_x = 0;		/* Current x-coordinate in the edit
				   window */
57
ssize_t current_y = 0;		/* Current y-coordinate in the edit
58
				   window */
Chris Allegretta's avatar
Chris Allegretta committed
59
60
61
62
63
64
filestruct *fileage = NULL;	/* Our file buffer */
filestruct *edittop = NULL;	/* Pointer to the top of the edit
				   buffer with respect to the
				   file struct */
filestruct *filebot = NULL;	/* Last node in the file struct */
filestruct *cutbuffer = NULL;	/* A place to store cut text */
65
66
67
#ifndef DISABLE_JUSTIFY
filestruct *jusbuffer = NULL;	/* A place to store unjustified text */
#endif
68
69
70
partition *filepart = NULL;	/* A place to store a portion of the
				   file struct */

71
#ifdef ENABLE_MULTIBUFFER
72
73
openfilestruct *open_files = NULL;	/* The list of open file
					   buffers */
74
75
#endif

76
77
78
79
#if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
char *whitespace = NULL;	/* Characters used when displaying
				   the first characters of tabs and
				   spaces. */
80
int whitespace_len[2];		/* The length of the characters. */
81
82
#endif

83
#ifndef DISABLE_JUSTIFY
84
85
86
87
88
char *punct = NULL;		/* Closing punctuation that can end
				   sentences. */
char *brackets = NULL;		/* Closing brackets that can follow
				   closing punctuation and can end
				   sentences. */
Chris Allegretta's avatar
Chris Allegretta committed
89
90
char *quotestr = NULL;		/* Quote string.  The default value is
				   set in main(). */
91
92
93
94
95
96
97
#ifdef HAVE_REGEX_H
regex_t quotereg;		/* Compiled quotestr regular expression. */
int quoterc;			/* Did it compile? */
char *quoteerr = NULL;		/* The error message. */
#else
size_t quotelen;		/* strlen(quotestr) */
#endif
Chris Allegretta's avatar
Chris Allegretta committed
98
#endif
99

100
101
102
103
#ifndef NANO_SMALL
char *backup_dir = NULL;	/* Backup directory. */
#endif

Chris Allegretta's avatar
Chris Allegretta committed
104
char *answer = NULL;		/* Answer str to many questions */
105
size_t totlines = 0;		/* Total number of lines in the file */
106
107
size_t totsize = 0;		/* Total number of characters in the
				   file */
108
size_t placewewant = 0;		/* The column we'd like the cursor
Chris Allegretta's avatar
Chris Allegretta committed
109
110
111
				   to jump to when we go to the
				   next or previous line */

112
113
ssize_t tabsize = -1;		/* Our internal tabsize variable.  The
				   default value is set in main(). */
114

Chris Allegretta's avatar
Chris Allegretta committed
115
char *hblank = NULL;		/* A horizontal blank line */
Chris Allegretta's avatar
Chris Allegretta committed
116
#ifndef DISABLE_HELP
Chris Allegretta's avatar
Chris Allegretta committed
117
char *help_text;		/* The text in the help window */
Chris Allegretta's avatar
Chris Allegretta committed
118
#endif
Chris Allegretta's avatar
Chris Allegretta committed
119
120
121

/* More stuff for the marker select */

Chris Allegretta's avatar
Chris Allegretta committed
122
#ifndef NANO_SMALL
123
filestruct *mark_beginbuf;	/* The begin marker buffer */
124
size_t mark_beginx;		/* X value in the string to start */
Chris Allegretta's avatar
Chris Allegretta committed
125
#endif
Chris Allegretta's avatar
Chris Allegretta committed
126

127
#ifndef DISABLE_OPERATINGDIR
128
129
char *operating_dir = NULL;	/* Operating directory, which we can't */
char *full_operating_dir = NULL;/* go higher than */
130
131
#endif

132
#ifndef DISABLE_SPELLER
133
char *alt_speller = NULL;		/* Alternative spell command */
134
135
#endif

136
137
138
shortcut *main_list = NULL;
shortcut *whereis_list = NULL;
shortcut *replace_list = NULL;
139
shortcut *replace_list_2 = NULL; 	/* 2nd half of replace dialog */
140
shortcut *gotoline_list = NULL;
141
142
shortcut *writefile_list = NULL;
shortcut *insertfile_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
143
#ifndef DISABLE_HELP
144
shortcut *help_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
145
146
#endif
#ifndef DISABLE_SPELLER
147
shortcut *spell_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
148
#endif
Chris Allegretta's avatar
Chris Allegretta committed
149
#ifndef NANO_SMALL
150
shortcut *extcmd_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
151
#endif
152
#ifndef DISABLE_BROWSER
153
shortcut *browser_list = NULL;
154
shortcut *gotodir_list = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
155
#endif
156

157
#ifdef ENABLE_COLOR
158
159
160
const colortype *colorstrings = NULL;
syntaxtype *syntaxes = NULL;
char *syntaxstr = NULL;
161
162
#endif

Chris Allegretta's avatar
Chris Allegretta committed
163
const shortcut *currshortcut;	/* Current shortcut list we're using */
164

165
#ifndef NANO_SMALL
166
toggle *toggles = NULL;
167
#endif
Chris Allegretta's avatar
Chris Allegretta committed
168

169
#ifndef NANO_SMALL
170
171
172
173
174
175
filestruct *search_history = NULL;
filestruct *searchage = NULL;
filestruct *searchbot = NULL;
filestruct *replace_history = NULL;
filestruct *replaceage = NULL;
filestruct *replacebot = NULL;
176
177
#endif

178
/* Regular expressions */
179
#ifdef HAVE_REGEX_H
180
181
182
regex_t search_regexp;		/* Global to store compiled search regexp */
regmatch_t regmatches[10];	/* Match positions for parenthetical
				   subexpressions, max of 10 */
Chris Allegretta's avatar
Chris Allegretta committed
183
#endif
184

185
bool curses_ended = FALSE;	/* Indicates to statusbar() to simply
186
187
188
				 * write to stderr, since endwin() has
				 * ended curses mode. */

189
190
char *homedir = NULL;		/* $HOME or from /etc/passwd. */

191
size_t length_of_list(const shortcut *s)
192
{
193
    size_t i = 0;
194

195
    for (; s != NULL; s = s->next)
196
197
198
199
	i++;
    return i;
}

Chris Allegretta's avatar
Chris Allegretta committed
200
/* Initialize a struct *without* our lovely braces =( */
201
void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc,
202
#ifndef DISABLE_HELP
203
	const char *help,
204
#endif
205
	int metaval, int funcval, int miscval, bool view, void
206
	(*func)(void))
Chris Allegretta's avatar
Chris Allegretta committed
207
{
208
209
210
    shortcut *s;

    if (*shortcutage == NULL) {
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
211
	*shortcutage = (shortcut *)nmalloc(sizeof(shortcut));
212
213
214
215
	s = *shortcutage;
    } else {
	for (s = *shortcutage; s->next != NULL; s = s->next)
	    ;
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
216
	s->next = (shortcut *)nmalloc(sizeof(shortcut));
217
218
219
	s = s->next; 
    }

220
    s->ctrlval = ctrlval;
221
    s->desc = _(desc);
222
#ifndef DISABLE_HELP
223
    s->help = _(help);
224
#endif
225
226
227
    s->metaval = metaval;
    s->funcval = funcval;
    s->miscval = miscval;
Chris Allegretta's avatar
Chris Allegretta committed
228
229
    s->viewok = view;
    s->func = func;
230
    s->next = NULL;
Chris Allegretta's avatar
Chris Allegretta committed
231
232
}

233
void shortcut_init(bool unjustify)
234
{
235
236
237
238
239
240
241
242
243
    const char *get_help_msg = N_("Get Help");
    const char *exit_msg = N_("Exit");
    const char *prev_page_msg = N_("Prev Page");
    const char *next_page_msg = N_("Next Page");
    const char *replace_msg = N_("Replace");
    const char *go_to_line_msg = N_("Go To Line");
    const char *cancel_msg = N_("Cancel");
    const char *first_line_msg = N_("First Line");
    const char *last_line_msg = N_("Last Line");
244
    const char *refresh_msg = N_("Refresh");
245
246
247
#ifndef NANO_SMALL
    const char *cut_till_end_msg = N_("CutTillEnd");
#endif
248
249
250
251
252
#ifndef DISABLE_JUSTIFY
    const char *beg_of_par_msg = N_("Beg of Par");
    const char *end_of_par_msg = N_("End of Par");
    const char *fulljstify_msg = N_("FullJstify");
#endif
253
254
#ifndef NANO_SMALL
    const char *case_sens_msg = N_("Case Sens");
255
    const char *backwards_msg = N_("Backwards");
256
#endif
257
258
#ifdef HAVE_REGEX_H
    const char *regexp_msg = N_("Regexp");
259
#endif
260
#ifndef NANO_SMALL
261
    const char *history_msg = N_("History");
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
262
#ifdef ENABLE_MULTIBUFFER
263
    const char *new_buffer_msg = N_("New Buffer");
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
264
#endif
265
#endif
266
267
#ifndef DISABLE_BROWSER
    const char *to_files_msg = N_("To Files");
268
#endif
269
270
271
#ifndef DISABLE_HELP
    const char *nano_help_msg = N_("Invoke the help menu");
    const char *nano_exit_msg =
272
#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
273
	N_("Close the current file buffer/Exit from nano")
274
275
276
277
#else
   	N_("Exit from nano")
#endif
	;
278
279
    const char *nano_writeout_msg =
	N_("Write the current file to disk");
280
281
282
    const char *nano_justify_msg = N_("Justify the current paragraph");
    const char *nano_insert_msg =
	N_("Insert another file into the current one");
283
284
    const char *nano_whereis_msg =
	N_("Search for text within the editor");
285
286
287
288
289
290
    const char *nano_prevpage_msg = N_("Move to the previous screen");
    const char *nano_nextpage_msg = N_("Move to the next screen");
    const char *nano_cut_msg =
	N_("Cut the current line and store it in the cutbuffer");
    const char *nano_uncut_msg =
	N_("Uncut from the cutbuffer into the current line");
291
292
293
294
    const char *nano_cursorpos_msg =
	N_("Show the position of the cursor");
    const char *nano_spell_msg =
	N_("Invoke the spell checker, if available");
295
296
    const char *nano_gotoline_msg =
	N_("Go to a specific line number and column number");
297
    const char *nano_replace_msg = N_("Replace text within the editor");
298
#ifndef NANO_SMALL
299
300
    const char *nano_mark_msg = N_("Mark text at the cursor position");
    const char *nano_whereis_next_msg = N_("Repeat last search");
301
#endif
302
303
304
305
    const char *nano_prevline_msg = N_("Move to the previous line");
    const char *nano_nextline_msg = N_("Move to the next line");
    const char *nano_forward_msg = N_("Move forward one character");
    const char *nano_back_msg = N_("Move back one character");
306
307
308
309
310
311
312
313
    const char *nano_home_msg =
	N_("Move to the beginning of the current line");
    const char *nano_end_msg =
	N_("Move to the end of the current line");
    const char *nano_refresh_msg =
	N_("Refresh (redraw) the current screen");
    const char *nano_delete_msg =
	N_("Delete the character under the cursor");
314
315
    const char *nano_backspace_msg =
	N_("Delete the character to the left of the cursor");
316
317
    const char *nano_tab_msg =
	N_("Insert a tab character at the cursor position");
318
319
    const char *nano_enter_msg =
	N_("Insert a carriage return at the cursor position");
320
#ifndef NANO_SMALL
321
322
    const char *nano_nextword_msg = N_("Move forward one word");
    const char *nano_prevword_msg = N_("Move backward one word");
323
324
    const char *nano_wordcount_msg =
	N_("Count the number of words in the file");
325
#endif
326
327
328
329
330
331
#ifndef DISABLE_JUSTIFY
    const char *nano_parabegin_msg =
	N_("Go to the beginning of the current paragraph");
    const char *nano_paraend_msg =
	N_("Go to the end of the current paragraph");
#endif
332
#ifdef ENABLE_MULTIBUFFER
333
334
335
336
    const char *nano_openprev_msg =
	N_("Switch to the previous file buffer");
    const char *nano_opennext_msg =
	N_("Switch to the next file buffer");
337
338
#endif
    const char *nano_verbatim_msg = N_("Insert character(s) verbatim");
339
340
341
342
#ifndef NANO_SMALL
    const char *nano_cut_till_end_msg =
	N_("Cut from the cursor position to the end of the file");
#endif
343
344
#ifndef DISABLE_JUSTIFY
    const char *nano_fulljustify_msg = N_("Justify the entire file");
345
#endif
346
#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
347
    const char *nano_bracket_msg = N_("Find other bracket");
348
#endif
349
    const char *nano_cancel_msg = N_("Cancel the current function");
350
351
352
353
    const char *nano_firstline_msg =
	N_("Go to the first line of the file");
    const char *nano_lastline_msg =
	N_("Go to the last line of the file");
354
355
356
357
358
#ifndef NANO_SMALL
    const char *nano_case_msg =
	N_("Make the current search/replace case (in)sensitive");
    const char *nano_reverse_msg =
	N_("Make the current search/replace go backwards");
359
#endif
360
361
#ifdef HAVE_REGEX_H
    const char *nano_regexp_msg = N_("Use regular expressions");
362
#endif
363
#ifndef NANO_SMALL
364
365
    const char *nano_history_msg =
	N_("Edit the previous search/replace strings");
366
#endif
367
368
#ifndef DISABLE_BROWSER
    const char *nano_tofiles_msg = N_("Go to file browser");
Chris Allegretta's avatar
Chris Allegretta committed
369
#endif
370
371
372
#ifndef NANO_SMALL
    const char *nano_dos_msg = N_("Write file out in DOS format");
    const char *nano_mac_msg = N_("Write file out in Mac format");
373
#endif
374
375
376
    const char *nano_append_msg = N_("Append to the current file");
    const char *nano_prepend_msg = N_("Prepend to the current file");
#ifndef NANO_SMALL
377
378
    const char *nano_backup_msg =
	N_("Back up original file when saving");
379
    const char *nano_execute_msg = N_("Execute external command");
380
#endif
381
#if !defined(NANO_SMALL) && defined(ENABLE_MULTIBUFFER)
382
383
384
    const char *nano_multibuffer_msg = N_("Insert into new buffer");
#endif
#ifndef DISABLE_BROWSER
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
385
386
    const char *nano_exitbrowser_msg = N_("Exit from the file browser");
    const char *nano_gotodir_msg = N_("Go to directory");
Chris Allegretta's avatar
Chris Allegretta committed
387
#endif
388
#endif /* !DISABLE_HELP */
Chris Allegretta's avatar
Chris Allegretta committed
389

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
390
391
392
/* The following macro is to be used in calling sc_init_one().  The
 * point is that sc_init_one() takes 9 arguments, unless DISABLE_HELP is
 * defined, when the 4th one should not be there. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
393
#ifndef DISABLE_HELP
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
394
#define IFHELP(help, nextvar) help, nextvar
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
395
#else
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
396
#define IFHELP(help, nextvar) nextvar
397
#endif
398

399
400
    free_shortcutage(&main_list);

401
    /* Translators: try to keep this string under 10 characters long */
402
403
404
    sc_init_one(&main_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
405
406
407
408
409
410
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
Chris Allegretta's avatar
Chris Allegretta committed
411

412
    /* Translators: try to keep this string under 10 characters long */
413
414
415
416
    sc_init_one(&main_list, NANO_EXIT_KEY,
#ifdef ENABLE_MULTIBUFFER
	open_files != NULL && open_files != open_files->next ?
	N_("Close") :
417
#endif
418
419
	exit_msg, IFHELP(nano_exit_msg, NANO_NO_KEY), NANO_EXIT_FKEY,
	NANO_NO_KEY, VIEW, do_exit);
Chris Allegretta's avatar
Chris Allegretta committed
420

421
    /* Translators: try to keep this string under 10 characters long */
422
423
424
    sc_init_one(&main_list, NANO_WRITEOUT_KEY, N_("WriteOut"),
	IFHELP(nano_writeout_msg, NANO_NO_KEY), NANO_WRITEOUT_FKEY,
	NANO_NO_KEY, NOVIEW, do_writeout_void);
Chris Allegretta's avatar
Chris Allegretta committed
425

426
    /* Translators: try to keep this string under 10 characters long */
427
428
429
    sc_init_one(&main_list, NANO_JUSTIFY_KEY, N_("Justify"),
	IFHELP(nano_justify_msg, NANO_NO_KEY),
	NANO_JUSTIFY_FKEY, NANO_NO_KEY, NOVIEW,
430
#ifndef DISABLE_JUSTIFY
431
		do_justify_void
432
433
434
435
#else
		nano_disabled_msg
#endif
		);
436

437
438
439
440
441
    /* We allow inserting files in view mode if multibuffers are
     * available, so that we can view multiple files. */
    /* If we're using restricted mode, inserting files is disabled since
     * it allows reading from or writing to files not specified on the
     * command line. */
442
    /* Translators: try to keep this string under 10 characters long */
443
444
445
    sc_init_one(&main_list, NANO_INSERTFILE_KEY, N_("Read File"),
	IFHELP(nano_insert_msg, NANO_NO_KEY), NANO_INSERTFILE_FKEY,
	NANO_NO_KEY,
446
#ifdef ENABLE_MULTIBUFFER
447
		VIEW
448
#else
449
		NOVIEW
450
#endif
451
452
		, !ISSET(RESTRICTED) ? do_insertfile_void :
		nano_disabled_msg);
Chris Allegretta's avatar
Chris Allegretta committed
453

454
    /* Translators: try to keep this string under 10 characters long */
455
456
457
    sc_init_one(&main_list, NANO_WHEREIS_KEY, N_("Where Is"),
	IFHELP(nano_whereis_msg, NANO_NO_KEY), NANO_WHEREIS_FKEY,
	NANO_NO_KEY, VIEW, do_search);
Chris Allegretta's avatar
Chris Allegretta committed
458

459
    /* Translators: try to keep this string under 10 characters long */
460
461
462
    sc_init_one(&main_list, NANO_PREVPAGE_KEY, prev_page_msg,
	IFHELP(nano_prevpage_msg, NANO_NO_KEY), NANO_PREVPAGE_FKEY,
	NANO_NO_KEY, VIEW, do_page_up);
Chris Allegretta's avatar
Chris Allegretta committed
463

464
    /* Translators: try to keep this string under 10 characters long */
465
466
467
    sc_init_one(&main_list, NANO_NEXTPAGE_KEY, next_page_msg,
	IFHELP(nano_nextpage_msg, NANO_NO_KEY), NANO_NEXTPAGE_FKEY,
	NANO_NO_KEY, VIEW, do_page_down);
Chris Allegretta's avatar
Chris Allegretta committed
468

469
    /* Translators: try to keep this string under 10 characters long */
470
471
472
    sc_init_one(&main_list, NANO_CUT_KEY, N_("Cut Text"),
	IFHELP(nano_cut_msg, NANO_NO_KEY), NANO_CUT_FKEY,
	NANO_NO_KEY, NOVIEW, do_cut_text);
Chris Allegretta's avatar
Chris Allegretta committed
473

474
    if (unjustify)
475
    /* Translators: try to keep this string under 10 characters long */
476
477
	sc_init_one(&main_list, NANO_UNJUSTIFY_KEY, N_("UnJustify"),
		IFHELP(NULL, NANO_NO_KEY), NANO_UNJUSTIFY_FKEY,
478
		NANO_NO_KEY, NOVIEW, NULL);
479
    else
480
    /* Translators: try to keep this string under 10 characters long */
481
	sc_init_one(&main_list, NANO_UNCUT_KEY, N_("UnCut Txt"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
482
483
		IFHELP(nano_uncut_msg, NANO_NO_KEY), NANO_UNCUT_FKEY,
		NANO_NO_KEY, NOVIEW, do_uncut_text);
Chris Allegretta's avatar
Chris Allegretta committed
484

485
    /* Translators: try to keep this string under 10 characters long */
486
487
488
    sc_init_one(&main_list, NANO_CURSORPOS_KEY, N_("Cur Pos"),
	IFHELP(nano_cursorpos_msg, NANO_NO_KEY), NANO_CURSORPOS_FKEY,
	NANO_NO_KEY, VIEW, do_cursorpos_void);
Chris Allegretta's avatar
Chris Allegretta committed
489

490
491
492
    /* If we're using restricted mode, spell checking is disabled
     * because it allows reading from or writing to files not specified
     * on the command line. */
493
    /* Translators: try to keep this string under 10 characters long */
494
    sc_init_one(&main_list, NANO_SPELL_KEY, N_("To Spell"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
495
		IFHELP(nano_spell_msg, NANO_NO_KEY), NANO_SPELL_FKEY,
496
497
498
499
500
		NANO_NO_KEY, NOVIEW,
#ifndef DISABLE_SPELLER
		!ISSET(RESTRICTED) ? do_spell :
#endif
		nano_disabled_msg);
501

502
    sc_init_one(&main_list, NANO_GOTOLINE_KEY, go_to_line_msg,
503
	IFHELP(nano_gotoline_msg, NANO_GOTOLINE_ALTKEY),
504
505
	NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW,
	do_gotolinecolumn_void);
506

507
    sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg,
508
509
	IFHELP(nano_replace_msg, NANO_ALT_REPLACE_KEY),
	NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW, do_replace);
Chris Allegretta's avatar
Chris Allegretta committed
510

511
#ifndef NANO_SMALL
512
513
    sc_init_one(&main_list, NANO_MARK_KEY, N_("Mark Text"),
	IFHELP(nano_mark_msg, NANO_MARK_ALTKEY), NANO_MARK_FKEY,
514
	NANO_NO_KEY, VIEW, do_mark);
515
516
517

    sc_init_one(&main_list, NANO_NO_KEY, N_("Where Is Next"),
	IFHELP(nano_whereis_next_msg, NANO_WHEREIS_NEXT_KEY),
518
	NANO_WHEREIS_NEXT_FKEY, NANO_NO_KEY, VIEW, do_research);
519
520
#endif

521
522
523
    sc_init_one(&main_list, NANO_PREVLINE_KEY, N_("Prev Line"),
	IFHELP(nano_prevline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_up);
Chris Allegretta's avatar
Chris Allegretta committed
524

525
526
527
    sc_init_one(&main_list, NANO_NEXTLINE_KEY, N_("Next Line"),
	IFHELP(nano_nextline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_down);
Chris Allegretta's avatar
Chris Allegretta committed
528

529
530
531
    sc_init_one(&main_list, NANO_FORWARD_KEY, N_("Forward"),
	IFHELP(nano_forward_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_right_void);
Chris Allegretta's avatar
Chris Allegretta committed
532

533
534
535
    sc_init_one(&main_list, NANO_BACK_KEY, N_("Back"),
	IFHELP(nano_back_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_left_void);
Chris Allegretta's avatar
Chris Allegretta committed
536

537
538
539
    sc_init_one(&main_list, NANO_HOME_KEY, N_("Home"),
	IFHELP(nano_home_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_home);
Chris Allegretta's avatar
Chris Allegretta committed
540

541
542
543
    sc_init_one(&main_list, NANO_END_KEY, N_("End"),
	IFHELP(nano_end_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_end);
Chris Allegretta's avatar
Chris Allegretta committed
544

545
    sc_init_one(&main_list, NANO_REFRESH_KEY, refresh_msg,
546
547
	IFHELP(nano_refresh_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, total_refresh);
Chris Allegretta's avatar
Chris Allegretta committed
548

549
550
551
    sc_init_one(&main_list, NANO_DELETE_KEY, N_("Delete"),
	IFHELP(nano_delete_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, NOVIEW, do_delete);
Chris Allegretta's avatar
Chris Allegretta committed
552

553
554
555
    sc_init_one(&main_list, NANO_BACKSPACE_KEY, N_("Backspace"),
	IFHELP(nano_backspace_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, NOVIEW, do_backspace);
Chris Allegretta's avatar
Chris Allegretta committed
556

557
558
559
    sc_init_one(&main_list, NANO_TAB_KEY, N_("Tab"),
	IFHELP(nano_tab_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, NOVIEW, do_tab);
Chris Allegretta's avatar
Chris Allegretta committed
560

561
562
563
    sc_init_one(&main_list, NANO_ENTER_KEY, N_("Enter"),
	IFHELP(nano_enter_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, NOVIEW, do_enter);
564

565
#ifndef NANO_SMALL
566
567
    sc_init_one(&main_list, NANO_NEXTWORD_KEY, N_("Next Word"),
	IFHELP(nano_nextword_msg, NANO_NO_KEY), NANO_NO_KEY,
568
	NANO_NO_KEY, VIEW, do_next_word_void);
569

570
571
    sc_init_one(&main_list, NANO_NO_KEY, N_("Prev Word"),
	IFHELP(nano_prevword_msg, NANO_PREVWORD_KEY), NANO_NO_KEY,
572
	NANO_NO_KEY, VIEW, do_prev_word_void);
573
574
575
576

    sc_init_one(&main_list, NANO_NO_KEY, N_("Word Count"),
	IFHELP(nano_wordcount_msg, NANO_WORDCOUNT_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_word_count);
577
#endif
578

579
580
581
582
#ifndef DISABLE_JUSTIFY
    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&main_list, NANO_NO_KEY, beg_of_par_msg,
	IFHELP(nano_parabegin_msg, NANO_PARABEGIN_ALTKEY1), NANO_NO_KEY,
583
	NANO_PARABEGIN_ALTKEY2, VIEW, do_para_begin_void);
584
585
586
587

    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&main_list, NANO_NO_KEY, end_of_par_msg,
	IFHELP(nano_paraend_msg, NANO_PARAEND_ALTKEY1), NANO_NO_KEY,
588
	NANO_PARAEND_ALTKEY2, VIEW, do_para_end_void);
589
#endif
590

591
#ifdef ENABLE_MULTIBUFFER
592
593
594
    sc_init_one(&main_list, NANO_NO_KEY, N_("Previous File"),
	IFHELP(nano_openprev_msg, NANO_OPENPREV_KEY), NANO_NO_KEY,
	NANO_OPENPREV_ALTKEY, VIEW, open_prevfile_void);
595

596
597
598
    sc_init_one(&main_list, NANO_NO_KEY, N_("Next File"),
	IFHELP(nano_opennext_msg, NANO_OPENNEXT_KEY), NANO_NO_KEY,
	NANO_OPENNEXT_ALTKEY, VIEW, open_nextfile_void);
599
#endif
600

601
602
603
604
    sc_init_one(&main_list, NANO_NO_KEY, N_("Verbatim Input"),
	IFHELP(nano_verbatim_msg, NANO_VERBATIM_KEY), NANO_NO_KEY,
	NANO_NO_KEY, NOVIEW, do_verbatim_input);

605
606
607
608
609
610
611
#ifndef NANO_SMALL
    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&main_list, NANO_NO_KEY, cut_till_end_msg,
	IFHELP(nano_cut_till_end_msg, NANO_CUTTILLEND_ALTKEY),
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_cut_till_end);
#endif

612
613
614
#ifndef DISABLE_JUSTIFY
    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&main_list, NANO_NO_KEY, fulljstify_msg,
615
616
	IFHELP(nano_fulljustify_msg, NANO_FULLJUSTIFY_ALTKEY),
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
617
618
#endif

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
619
#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
620
621
622
    sc_init_one(&main_list, NANO_NO_KEY, N_("Find Other Bracket"),
	IFHELP(nano_bracket_msg, NANO_BRACKET_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_find_bracket);
623
624
#endif

625
    free_shortcutage(&whereis_list);
626

627
628
629
    sc_init_one(&whereis_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
630
631
632
633
634
635
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
636

637
    /* Translators: try to keep this string under 10 characters long */
638
639
    sc_init_one(&whereis_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
640
	NANO_NO_KEY, VIEW, NULL);
641

642
    /* Translators: try to keep this string under 10 characters long */
643
644
645
    sc_init_one(&whereis_list, NANO_FIRSTLINE_KEY, first_line_msg,
	IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_FIRSTLINE_FKEY,
	NANO_NO_KEY, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
646

647
    /* Translators: try to keep this string under 10 characters long */
648
649
650
    sc_init_one(&whereis_list, NANO_LASTLINE_KEY, last_line_msg,
	IFHELP(nano_lastline_msg, NANO_NO_KEY), NANO_LASTLINE_FKEY,
	NANO_NO_KEY, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
651

652
    /* Translators: try to keep this string under 10 characters long */
653
    sc_init_one(&whereis_list, NANO_TOOTHERSEARCH_KEY, replace_msg,
654
	IFHELP(nano_replace_msg, NANO_NO_KEY), NANO_REPLACE_FKEY,
655
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
656

657
    /* Translators: try to keep this string under 10 characters long */
658
659
    sc_init_one(&whereis_list, NANO_TOGOTOLINE_KEY, go_to_line_msg,
	IFHELP(nano_gotoline_msg, NANO_NO_KEY), NANO_GOTOLINE_FKEY,
660
	NANO_NO_KEY, VIEW, NULL);
661

662
663
#ifndef DISABLE_JUSTIFY
    /* Translators: try to keep this string under 10 characters long */
664
    sc_init_one(&whereis_list, NANO_PARABEGIN_KEY, beg_of_par_msg,
665
	IFHELP(nano_parabegin_msg, NANO_PARABEGIN_ALTKEY1), NANO_NO_KEY,
666
	NANO_PARABEGIN_ALTKEY2, VIEW, do_para_begin_void);
667
668

    /* Translators: try to keep this string under 10 characters long */
669
    sc_init_one(&whereis_list, NANO_PARAEND_KEY, end_of_par_msg,
670
	IFHELP(nano_paraend_msg, NANO_PARAEND_ALTKEY1), NANO_NO_KEY,
671
	NANO_PARAEND_ALTKEY2, VIEW, do_para_end_void);
672
673
#endif

674
#ifndef NANO_SMALL
675
    /* Translators: try to keep this string under 10 characters long */
676
677
    sc_init_one(&whereis_list, NANO_NO_KEY, case_sens_msg,
	IFHELP(nano_case_msg, TOGGLE_CASE_KEY), NANO_NO_KEY,
678
	NANO_NO_KEY, VIEW, NULL);
679

680
    /* Translators: try to keep this string under 10 characters long */
681
    sc_init_one(&whereis_list, NANO_NO_KEY, backwards_msg,
682
	IFHELP(nano_reverse_msg, TOGGLE_BACKWARDS_KEY), NANO_NO_KEY,
683
	NANO_NO_KEY, VIEW, NULL);
684
#endif
Chris Allegretta's avatar
Chris Allegretta committed
685

686
#ifdef HAVE_REGEX_H
687
    /* Translators: try to keep this string under 10 characters long */
688
    sc_init_one(&whereis_list, NANO_NO_KEY, regexp_msg,
689
	IFHELP(nano_regexp_msg, NANO_REGEXP_KEY), NANO_NO_KEY,
690
	NANO_NO_KEY, VIEW, NULL);
691
#endif
692

693
#ifndef NANO_SMALL
694
    /* Translators: try to keep this string under 10 characters long */
695
696
    sc_init_one(&whereis_list, NANO_PREVLINE_KEY, history_msg,
	IFHELP(nano_history_msg, NANO_NO_KEY), NANO_NO_KEY,
697
	NANO_NO_KEY, VIEW, NULL);
698
699
700
701
702

    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&whereis_list, NANO_CUTTILLEND_KEY, cut_till_end_msg,
	IFHELP(nano_cut_till_end_msg, NANO_CUTTILLEND_ALTKEY),
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_cut_till_end);
703
#endif
704
705
706
707
708
709
710

#ifndef DISABLE_JUSTIFY
    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&whereis_list, NANO_FULLJUSTIFY_KEY, fulljstify_msg,
	IFHELP(nano_fulljustify_msg, NANO_FULLJUSTIFY_ALTKEY),
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
#endif
711

712
    free_shortcutage(&replace_list);
713

714
715
716
    sc_init_one(&replace_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
717
718
719
720
721
722
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
723

724
725
    sc_init_one(&replace_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
726
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
727

728
729
730
    sc_init_one(&replace_list, NANO_FIRSTLINE_KEY, first_line_msg,
	IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_FIRSTLINE_FKEY,
	NANO_NO_KEY, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
731

732
733
734
    sc_init_one(&replace_list, NANO_LASTLINE_KEY, last_line_msg,
	IFHELP(nano_lastline_msg, NANO_NO_KEY), NANO_LASTLINE_FKEY,
	NANO_NO_KEY, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
735

736
    /* Translators: try to keep this string under 12 characters long */
737
    sc_init_one(&replace_list, NANO_TOOTHERSEARCH_KEY, N_("No Replace"),
738
	IFHELP(nano_whereis_msg, NANO_NO_KEY), NANO_REPLACE_FKEY,
739
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
740

741
742
    sc_init_one(&replace_list, NANO_TOGOTOLINE_KEY, go_to_line_msg,
	IFHELP(nano_gotoline_msg, NANO_NO_KEY), NANO_GOTOLINE_FKEY,
743
	NANO_NO_KEY, VIEW, NULL);
744

745
#ifndef NANO_SMALL
746
747
    sc_init_one(&replace_list, NANO_NO_KEY, case_sens_msg,
	IFHELP(nano_case_msg, TOGGLE_CASE_KEY), NANO_NO_KEY,
748
	NANO_NO_KEY, VIEW, NULL);
749

750
    sc_init_one(&replace_list, NANO_NO_KEY, backwards_msg,
751
	IFHELP(nano_reverse_msg, TOGGLE_BACKWARDS_KEY), NANO_NO_KEY,
752
	NANO_NO_KEY, VIEW, NULL);
753
#endif
754

755
#ifdef HAVE_REGEX_H
756
    sc_init_one(&replace_list, NANO_NO_KEY, regexp_msg,
757
	IFHELP(nano_regexp_msg, NANO_REGEXP_KEY), NANO_NO_KEY,
758
	NANO_NO_KEY, VIEW, NULL);
759
#endif
760

761
#ifndef NANO_SMALL
762
763
    sc_init_one(&replace_list, NANO_PREVLINE_KEY, history_msg,
	IFHELP(nano_history_msg, NANO_NO_KEY), NANO_NO_KEY,
764
	NANO_NO_KEY, VIEW, NULL);
765
#endif
766

767
    free_shortcutage(&replace_list_2);
768

769
770
771
    sc_init_one(&replace_list_2, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
772
773
774
775
776
777
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
778

779
780
    sc_init_one(&replace_list_2, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
781
	NANO_NO_KEY, VIEW, NULL);
782

783
784
785
    sc_init_one(&replace_list_2, NANO_FIRSTLINE_KEY, first_line_msg,
	IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_first_line);
786

787
788
789
    sc_init_one(&replace_list_2, NANO_LASTLINE_KEY, last_line_msg,
	IFHELP(nano_lastline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_last_line);
790

791
#ifndef NANO_SMALL
792
793
    sc_init_one(&replace_list_2, NANO_PREVLINE_KEY, history_msg,
	IFHELP(nano_history_msg, NANO_NO_KEY), NANO_NO_KEY,
794
	NANO_NO_KEY, VIEW, NULL);
795
796
#endif

797
    free_shortcutage(&gotoline_list);
Chris Allegretta's avatar
Chris Allegretta committed
798

799
    sc_init_one(&gotoline_list, NANO_HELP_KEY, get_help_msg,
800
801
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
802
803
804
805
806
807
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
808

809
    sc_init_one(&gotoline_list, NANO_CANCEL_KEY, cancel_msg,
810
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
811
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
812

813
    sc_init_one(&gotoline_list, NANO_FIRSTLINE_KEY, first_line_msg,
814
815
	IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
816

817
    sc_init_one(&gotoline_list, NANO_LASTLINE_KEY, last_line_msg,
818
819
	IFHELP(nano_lastline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
820

821
822
    sc_init_one(&gotoline_list, NANO_TOOTHERWHEREIS_KEY,
	N_("Go To Text"), IFHELP(nano_whereis_msg, NANO_NO_KEY),
823
	NANO_NO_KEY, NANO_NO_KEY, VIEW, NULL);
824

Chris Allegretta's avatar
Chris Allegretta committed
825
#ifndef DISABLE_HELP
826
    free_shortcutage(&help_list);
Chris Allegretta's avatar
Chris Allegretta committed
827

828
    sc_init_one(&help_list, NANO_REFRESH_KEY, refresh_msg,
829
830
831
832
833
834
835
	IFHELP(nano_refresh_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, NULL);

    sc_init_one(&help_list, NANO_EXIT_KEY, exit_msg,
	IFHELP(nano_exit_msg, NANO_NO_KEY), NANO_EXIT_FKEY,
	NANO_NO_KEY, VIEW, NULL);

836
837
    sc_init_one(&help_list, NANO_PREVPAGE_KEY, prev_page_msg,
	IFHELP(nano_prevpage_msg, NANO_NO_KEY), NANO_PREVPAGE_FKEY,
838
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
839

840
841
    sc_init_one(&help_list, NANO_NEXTPAGE_KEY, next_page_msg,
	IFHELP(nano_nextpage_msg, NANO_NO_KEY), NANO_NEXTPAGE_FKEY,
842
	NANO_NO_KEY, VIEW, NULL);
843

844
845
    sc_init_one(&help_list, NANO_PREVLINE_KEY, N_("Prev Line"),
	IFHELP(nano_prevline_msg, NANO_NO_KEY), NANO_NO_KEY,
846
	NANO_NO_KEY, VIEW, NULL);
847

848
849
    sc_init_one(&help_list, NANO_NEXTLINE_KEY, N_("Next Line"),
	IFHELP(nano_nextline_msg, NANO_NO_KEY), NANO_NO_KEY,
850
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
851
#endif
Chris Allegretta's avatar
Chris Allegretta committed
852

853
    free_shortcutage(&writefile_list);
Chris Allegretta's avatar
Chris Allegretta committed
854

855
856
857
    sc_init_one(&writefile_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
858
859
860
861
862
863
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
864

865
866
    sc_init_one(&writefile_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
867
	NANO_NO_KEY, VIEW, NULL);
868

869
#ifndef DISABLE_BROWSER
870
871
    /* If we're using restricted mode, the file browser is disabled.
     * It's useless since inserting files is disabled. */
872
    /* Translators: try to keep this string under 16 characters long */
873
    if (!ISSET(RESTRICTED))
874
	sc_init_one(&writefile_list, NANO_TOFILES_KEY, to_files_msg,
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
875
		IFHELP(nano_tofiles_msg, NANO_NO_KEY), NANO_NO_KEY,
876
		NANO_NO_KEY, NOVIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
877
#endif
Chris Allegretta's avatar
Chris Allegretta committed
878

879
#ifndef NANO_SMALL
880
881
882
883
884
885
    /* If we're using restricted mode, the DOS format, Mac format,
     * append, prepend, and backup toggles are disabled.  The first and
     * second are useless since inserting files is disabled, the third
     * and fourth are disabled because they allow writing to files not
     * specified on the command line, and the fifth is useless since
     * backups are disabled. */
886
    /* Translators: try to keep this string under 16 characters long */
887
    if (!ISSET(RESTRICTED))
888
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("DOS Format"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
889
		IFHELP(nano_dos_msg, TOGGLE_DOS_KEY), NANO_NO_KEY,
890
		NANO_NO_KEY, NOVIEW, NULL);
891

892
    /* Translators: try to keep this string under 16 characters long */
893
    if (!ISSET(RESTRICTED))
894
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Mac Format"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
895
		IFHELP(nano_mac_msg, TOGGLE_MAC_KEY), NANO_NO_KEY,
896
		NANO_NO_KEY, NOVIEW, NULL);
897
898
#endif

899
    /* Translators: try to keep this string under 16 characters long */
900
    if (!ISSET(RESTRICTED))
901
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Append"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
902
		IFHELP(nano_append_msg, NANO_APPEND_KEY), NANO_NO_KEY,
903
		NANO_NO_KEY, NOVIEW, NULL);
904

905
    /* Translators: try to keep this string under 16 characters long */
906
    if (!ISSET(RESTRICTED))
907
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Prepend"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
908
		IFHELP(nano_prepend_msg, NANO_PREPEND_KEY), NANO_NO_KEY,
909
		NANO_NO_KEY, NOVIEW, NULL);
910

911
#ifndef NANO_SMALL
912
    /* Translators: try to keep this string under 16 characters long */
913
    if (!ISSET(RESTRICTED))
914
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Backup File"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
915
		IFHELP(nano_backup_msg, TOGGLE_BACKUP_KEY), NANO_NO_KEY,
916
		NANO_NO_KEY, NOVIEW, NULL);
917
918
#endif

919
    free_shortcutage(&insertfile_list);
920

921
922
923
    sc_init_one(&insertfile_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
924
925
926
927
928
929
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
930

931
    sc_init_one(&insertfile_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
932
		IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
933
		NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
934

935
#ifndef DISABLE_BROWSER
936
937
    /* If we're using restricted mode, the file browser is disabled.
     * It's useless since inserting files is disabled. */
938
    if (!ISSET(RESTRICTED))
939
	sc_init_one(&insertfile_list, NANO_TOFILES_KEY, to_files_msg,
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
940
		IFHELP(nano_tofiles_msg, NANO_NO_KEY), NANO_NO_KEY,
941
		NANO_NO_KEY, NOVIEW, NULL);
942
#endif
943

944
#ifndef NANO_SMALL
945
946
    /* If we're using restricted mode, command execution is disabled.
     * It's useless since inserting files is disabled. */
947
    /* Translators: try to keep this string under 22 characters long */
948
    if (!ISSET(RESTRICTED))
949
950
	sc_init_one(&insertfile_list, NANO_TOOTHERINSERT_KEY,
		N_("Execute Command"), IFHELP(nano_execute_msg,
951
		NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
952

953
#ifdef ENABLE_MULTIBUFFER
954
955
    /* If we're using restricted mode, the multibuffer toggle is
     * disabled.  It's useless since inserting files is disabled. */
956
    /* Translators: try to keep this string under 22 characters long */
957
    if (!ISSET(RESTRICTED))
958
	sc_init_one(&insertfile_list, NANO_NO_KEY, new_buffer_msg,
959
		IFHELP(nano_multibuffer_msg, TOGGLE_MULTIBUFFER_KEY),
960
		NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
961
#endif
962
#endif
963

Chris Allegretta's avatar
Chris Allegretta committed
964
#ifndef DISABLE_SPELLER
965
    free_shortcutage(&spell_list);
Chris Allegretta's avatar
Chris Allegretta committed
966

967
968
969
    sc_init_one(&spell_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
970
971
972
973
974
975
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
976

977
978
    sc_init_one(&spell_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
979
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
980
#endif
Chris Allegretta's avatar
Chris Allegretta committed
981

982
#ifndef NANO_SMALL
983
    free_shortcutage(&extcmd_list);
Chris Allegretta's avatar
Chris Allegretta committed
984

985
986
987
    sc_init_one(&extcmd_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
988
989
990
991
992
993
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
994

995
996
    sc_init_one(&extcmd_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
997
	NANO_NO_KEY, VIEW, NULL);
998

999
1000
    sc_init_one(&extcmd_list, NANO_TOOTHERINSERT_KEY, N_("Insert File"),
	IFHELP(nano_insert_msg, NANO_NO_KEY), NANO_NO_KEY,
1001
	NANO_NO_KEY, VIEW, NULL);
1002

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1003
#ifdef ENABLE_MULTIBUFFER
1004
    sc_init_one(&extcmd_list, NANO_NO_KEY, new_buffer_msg,
1005
	IFHELP(nano_multibuffer_msg, TOGGLE_MULTIBUFFER_KEY),
1006
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
1007
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1008
#endif
1009

1010
#ifndef DISABLE_BROWSER
1011
    free_shortcutage(&browser_list);
1012

1013
1014
1015
    sc_init_one(&browser_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
1016
1017
1018
1019
1020
1021
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
1022

1023
    sc_init_one(&browser_list, NANO_EXIT_KEY, exit_msg,
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1024
	IFHELP(nano_exitbrowser_msg, NANO_NO_KEY), NANO_EXIT_FKEY,
1025
	NANO_NO_KEY, VIEW, NULL);
1026

1027
1028
    sc_init_one(&browser_list, NANO_PREVPAGE_KEY, prev_page_msg,
	IFHELP(nano_prevpage_msg, NANO_NO_KEY), NANO_PREVPAGE_FKEY,
1029
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
1030

1031
1032
    sc_init_one(&browser_list, NANO_NEXTPAGE_KEY, next_page_msg,
	IFHELP(nano_nextpage_msg, NANO_NO_KEY), NANO_NEXTPAGE_FKEY,
1033
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
1034

1035
    /* Translators: try to keep this string under 22 characters long */
1036
    sc_init_one(&browser_list, NANO_GOTOLINE_KEY, N_("Go To Dir"),
1037
	IFHELP(nano_gotodir_msg, NANO_GOTOLINE_ALTKEY),
1038
	NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW, NULL);
Rocco Corsi's avatar
   
Rocco Corsi committed
1039

1040
    free_shortcutage(&gotodir_list);
1041

1042
1043
1044
    sc_init_one(&gotodir_list, NANO_HELP_KEY, get_help_msg,
	IFHELP(nano_help_msg, NANO_NO_KEY), NANO_HELP_FKEY,
	NANO_NO_KEY, VIEW,
1045
1046
1047
1048
1049
1050
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
Chris Allegretta's avatar
Chris Allegretta committed
1051

1052
1053
    sc_init_one(&gotodir_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
1054
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
1055
1056
#endif

1057
    currshortcut = main_list;
1058

1059
#ifndef NANO_SMALL
1060
    toggle_init();
1061
#endif
1062
}
1063

1064
1065
1066
1067
/* Deallocate the given shortcut. */
void free_shortcutage(shortcut **shortcutage)
{
    assert(shortcutage != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1068

1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
    while (*shortcutage != NULL) {
	shortcut *ps = *shortcutage;
	*shortcutage = (*shortcutage)->next;
	free(ps);
    }
}

#ifndef NANO_SMALL
/* Create one new toggle structure, at the end of the toggles linked
 * list. */
void toggle_init_one(int val, const char *desc, long flag)
{
    toggle *u;

    if (toggles == NULL) {
1084
	toggles = (toggle *)nmalloc(sizeof(toggle));
1085
1086
1087
1088
	u = toggles;
    } else {
	for (u = toggles; u->next != NULL; u = u->next)
	    ;
1089
	u->next = (toggle *)nmalloc(sizeof(toggle));
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
	u = u->next;
    }

    u->val = val;
    u->desc = _(desc);
    u->flag = flag;
    u->next = NULL;
}

void toggle_init(void)
{
    /* There is no need to reinitialize the toggles.  They can't
     * change. */
    if (toggles != NULL)
	return;

    toggle_init_one(TOGGLE_NOHELP_KEY, N_("Help mode"), NO_HELP);
1107
1108
    toggle_init_one(TOGGLE_MORESPACE_KEY,
	N_("Use of more space for editing"), MORE_SPACE);
1109
1110
1111
1112
#ifdef ENABLE_MULTIBUFFER
    /* If we're using restricted mode, the multibuffer toggle is
     * disabled.  It's useless since inserting files is disabled. */
    if (!ISSET(RESTRICTED))
1113
1114
	toggle_init_one(TOGGLE_MULTIBUFFER_KEY,
		N_("Multiple file buffers"), MULTIBUFFER);
1115
#endif
1116
    toggle_init_one(TOGGLE_CUTTOEND_KEY, N_("Cut to end"), CUT_TO_END);
1117
#ifndef DISABLE_WRAPPING
1118
1119
    toggle_init_one(TOGGLE_WRAP_KEY, N_("Long line wrapping"),
	NO_WRAP);
1120
#endif
1121
1122
1123
#ifndef DISABLE_MOUSE
    toggle_init_one(TOGGLE_MOUSE_KEY, N_("Mouse support"), USE_MOUSE);
#endif
1124
1125
1126
1127
    /* If we're using restricted mode, the suspend toggle is disabled.
     * It's useless since suspending is disabled. */
    if (!ISSET(RESTRICTED))
	toggle_init_one(TOGGLE_SUSPEND_KEY, N_("Suspend"), SUSPEND);
1128
1129
1130
1131
1132
1133
    toggle_init_one(TOGGLE_CONST_KEY,
	N_("Constant cursor position display"), CONST_UPDATE);
    toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"),
	AUTOINDENT);
    toggle_init_one(TOGGLE_TABSTOSPACES_KEY,
	N_("Conversion of typed tabs to spaces"), TABS_TO_SPACES);
1134
1135
1136
    /* If we're using restricted mode, the DOS/Mac conversion toggle is
     * disabled.  It's useless since inserting files is disabled. */
    if (!ISSET(RESTRICTED))
1137
1138
	toggle_init_one(TOGGLE_NOCONVERT_KEY,
		N_("No conversion from DOS/Mac format"), NO_CONVERT);
1139
1140
1141
    /* If we're using restricted mode, the backup toggle is disabled.
     * It's useless since backups are disabled. */
    if (!ISSET(RESTRICTED))
1142
1143
1144
	toggle_init_one(TOGGLE_BACKUP_KEY, N_("Backup files"),
		BACKUP_FILE);
    toggle_init_one(TOGGLE_SMOOTH_KEY, N_("Smooth scrolling"),
1145
	SMOOTH_SCROLL);
1146
1147
    toggle_init_one(TOGGLE_SMARTHOME_KEY, N_("Smart home key"),
	SMART_HOME);
1148
1149
#ifdef ENABLE_COLOR
    toggle_init_one(TOGGLE_SYNTAX_KEY, N_("Color syntax highlighting"),
1150
	NO_COLOR_SYNTAX);
1151
1152
1153
1154
1155
1156
1157
1158
#endif
#ifdef ENABLE_NANORC
    toggle_init_one(TOGGLE_WHITESPACE_KEY, N_("Whitespace display"),
	WHITESPACE_DISPLAY);
#endif
}
#endif /* !NANO_SMALL */

1159
1160
1161
/* This function is called just before calling exit().  Practically, the
 * only effect is to cause a segmentation fault if the various data
 * structures got bolloxed earlier.  Thus, we don't bother having this
Chris Allegretta's avatar
Chris Allegretta committed
1162
 * function unless debugging is turned on. */
1163
#ifdef DEBUG
1164
/* Added by SPK for memory cleanup; gracefully return our malloc()s. */
Chris Allegretta's avatar
Chris Allegretta committed
1165
void thanks_for_all_the_fish(void)
1166
{
1167
1168
1169
1170
    delwin(topwin);
    delwin(edit);
    delwin(bottomwin);

Chris Allegretta's avatar
Chris Allegretta committed
1171
1172
1173
#ifndef DISABLE_JUSTIFY
    if (quotestr != NULL)
	free(quotestr);
1174
1175
#ifdef HAVE_REGEX_H
    regfree(&quotereg);
1176
1177
    if (quoteerr != NULL)
	free(quoteerr);
1178
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1179
#endif
1180
1181
1182
1183
#ifndef NANO_SMALL
    if (backup_dir != NULL)
        free(backup_dir);
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1184
#ifndef DISABLE_OPERATINGDIR
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
    if (operating_dir != NULL)
	free(operating_dir);
    if (full_operating_dir != NULL)
	free(full_operating_dir);
#endif
    if (last_search != NULL)
	free(last_search);
    if (last_replace != NULL)
	free(last_replace);
    if (hblank != NULL)
	free(hblank);
#ifndef DISABLE_SPELLER
    if (alt_speller != NULL)
	free(alt_speller);
#endif
1200
#ifndef DISABLE_HELP
1201
1202
    if (help_text != NULL)
	free(help_text);
1203
#endif
1204
1205
1206
1207
1208
    if (filename != NULL)
	free(filename);
    if (answer != NULL)
	free(answer);
    if (cutbuffer != NULL)
Chris Allegretta's avatar
Chris Allegretta committed
1209
	free_filestruct(cutbuffer);
1210
1211
1212
1213
#ifndef DISABLE_JUSTIFY
    if (jusbuffer != NULL)
	free_filestruct(jusbuffer);
#endif
1214
1215
1216
1217
    free_shortcutage(&main_list);
    free_shortcutage(&whereis_list);
    free_shortcutage(&replace_list);
    free_shortcutage(&replace_list_2);
1218
    free_shortcutage(&gotoline_list);
1219
1220
    free_shortcutage(&writefile_list);
    free_shortcutage(&insertfile_list);
Chris Allegretta's avatar
Chris Allegretta committed
1221
#ifndef DISABLE_HELP
Chris Allegretta's avatar
Chris Allegretta committed
1222
    free_shortcutage(&help_list);
Chris Allegretta's avatar
Chris Allegretta committed
1223
1224
#endif
#ifndef DISABLE_SPELLER
1225
    free_shortcutage(&spell_list);
Chris Allegretta's avatar
Chris Allegretta committed
1226
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1227
1228
1229
#ifndef NANO_SMALL
    free_shortcutage(&extcmd_list);
#endif
1230
1231
#ifndef DISABLE_BROWSER
    free_shortcutage(&browser_list);
Chris Allegretta's avatar
Chris Allegretta committed
1232
    free_shortcutage(&gotodir_list);
1233
1234
#endif
#ifndef NANO_SMALL
1235
    /* Free the memory associated with each toggle. */
1236
1237
    while (toggles != NULL) {
	toggle *t = toggles;
1238

1239
1240
1241
1242
	toggles = toggles->next;
	free(t);
    }
#endif
1243
#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
1244
    /* Free the memory associated with each open file buffer. */
1245
1246
1247
1248
1249
    if (open_files != NULL) {
	/* Make sure open_files->fileage is up to date, in case we've
	 * cut the top line of the file. */
	open_files->fileage = fileage;

Chris Allegretta's avatar
Chris Allegretta committed
1250
	free_openfilestruct(open_files);
1251
    }
1252
#else
1253
1254
    if (fileage != NULL)
	free_filestruct(fileage);
1255
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1256
#ifdef ENABLE_COLOR
1257
1258
    if (syntaxstr != NULL)
	free(syntaxstr);
Chris Allegretta's avatar
Chris Allegretta committed
1259
1260
1261
1262
1263
1264
1265
1266
    while (syntaxes != NULL) {
	syntaxtype *bill = syntaxes;

	free(syntaxes->desc);
	while (syntaxes->extensions != NULL) {
	    exttype *bob = syntaxes->extensions;

	    syntaxes->extensions = bob->next;
Chris Allegretta's avatar
Chris Allegretta committed
1267
	    regfree(&bob->val);
Chris Allegretta's avatar
Chris Allegretta committed
1268
1269
1270
1271
1272
1273
	    free(bob);
	}
	while (syntaxes->color != NULL) {
	    colortype *bob = syntaxes->color;

	    syntaxes->color = bob->next;
Chris Allegretta's avatar
Chris Allegretta committed
1274
1275
	    regfree(&bob->start);
	    if (bob->end != NULL)
1276
1277
		regfree(bob->end);
	    free(bob->end);
Chris Allegretta's avatar
Chris Allegretta committed
1278
1279
1280
1281
1282
1283
	    free(bob);
	}
	syntaxes = syntaxes->next;
	free(bill);
    }
#endif /* ENABLE_COLOR */
1284
#ifndef NANO_SMALL
1285
    /* Free the search and replace history lists. */
1286
1287
1288
1289
    if (searchage != NULL)
	free_filestruct(searchage);
    if (replaceage != NULL)
	free_filestruct(replaceage);
1290
#endif
1291
#ifdef ENABLE_NANORC
1292
1293
    if (homedir != NULL)
	free(homedir);
1294
#endif
1295
}
1296
#endif /* DEBUG */