global.c 41 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
11
12
13
14
15
16
17
18
19
20
21
 *   any later version.                                                   *
 *                                                                        *
 *   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.                         *
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.            *
 *                                                                        *
 **************************************************************************/

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

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

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
42
char *last_search = NULL;	/* Last string we searched for */
char *last_replace = NULL;	/* Last replacement string */
int search_last_line;		/* Is this the last search line? */

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

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

Chris Allegretta's avatar
Chris Allegretta committed
53
54
55
int editwinrows = 0;		/* How many rows long is the edit
				   window? */
filestruct *current;		/* Current buffer pointer */
56
57
58
59
size_t current_x = 0;		/* Current x-coordinate in the edit
				   window */
int current_y = 0;		/* Current y-coordinate in the edit
				   window */
Chris Allegretta's avatar
Chris Allegretta committed
60
61
62
63
64
65
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 */
66
67
68
#ifndef DISABLE_JUSTIFY
filestruct *jusbuffer = NULL;	/* A place to store unjustified text */
#endif
69
70
71
partition *filepart = NULL;	/* A place to store a portion of the
				   file struct */

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

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

84
#ifndef DISABLE_JUSTIFY
85
86
87
88
89
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
90
91
char *quotestr = NULL;		/* Quote string.  The default value is
				   set in main(). */
92
93
94
95
96
97
98
#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
99
#endif
100

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

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

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

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

/* More stuff for the marker select */

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

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

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

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

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

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

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

170
171
172
173
174
#ifndef NANO_SMALL
historyheadtype search_history;
historyheadtype replace_history;
#endif

175
176
/* Regular expressions */

177
#ifdef HAVE_REGEX_H
178
179
180
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
181
#endif
182

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

187
188
char *homedir = NULL;		/* $HOME or from /etc/passwd. */

189
size_t length_of_list(const shortcut *s)
190
{
191
    size_t i = 0;
192

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

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

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

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

231
void shortcut_init(bool unjustify)
232
{
233
234
235
236
237
238
239
240
241
    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");
242
243
244
#ifndef NANO_SMALL
    const char *cut_till_end_msg = N_("CutTillEnd");
#endif
245
246
247
248
249
#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
250
251
252
253
254
#ifndef NANO_SMALL
    const char *case_sens_msg = N_("Case Sens");
    const char *direction_msg = N_("Direction");
#ifdef HAVE_REGEX_H
    const char *regexp_msg = N_("Regexp");
255
#endif
256
    const char *history_msg = N_("History");
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
257
#ifdef ENABLE_MULTIBUFFER
258
    const char *new_buffer_msg = N_("New Buffer");
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
259
#endif
260
261
262
#endif /* !NANO_SMALL */
#ifndef DISABLE_BROWSER
    const char *to_files_msg = N_("To Files");
263
#endif
264

265
266
267
#ifndef DISABLE_HELP
    const char *nano_help_msg = N_("Invoke the help menu");
    const char *nano_exit_msg =
268
#ifdef ENABLE_MULTIBUFFER
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
	N_("Close currently loaded file/Exit from nano")
#else
   	N_("Exit from nano")
#endif
	;
    const char *nano_writeout_msg = N_("Write the current file to disk");
    const char *nano_justify_msg = N_("Justify the current paragraph");
    const char *nano_insert_msg =
	N_("Insert another file into the current one");
    const char *nano_whereis_msg = N_("Search for text within the editor");
    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");
    const char *nano_cursorpos_msg = N_("Show the position of the cursor");
    const char *nano_spell_msg = N_("Invoke the spell checker, if available");
287
    const char *nano_gotoline_msg = N_("Go to a specific line number");
288
    const char *nano_replace_msg = N_("Replace text within the editor");
289
#ifndef NANO_SMALL
290
291
    const char *nano_mark_msg = N_("Mark text at the cursor position");
    const char *nano_whereis_next_msg = N_("Repeat last search");
292
#endif
293
294
295
296
297
298
299
300
301
302
    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");
    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");
    const char *nano_backspace_msg =
	N_("Delete the character to the left of the cursor");
303
304
    const char *nano_tab_msg =
	N_("Insert a tab character at the cursor position");
305
306
    const char *nano_enter_msg =
	N_("Insert a carriage return at the cursor position");
307
#ifndef NANO_SMALL
308
309
    const char *nano_nextword_msg = N_("Move forward one word");
    const char *nano_prevword_msg = N_("Move backward one word");
310
#endif
311
312
313
314
315
316
#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
317
#ifdef ENABLE_MULTIBUFFER
318
319
320
321
    const char *nano_openprev_msg = N_("Switch to the previous file buffer");
    const char *nano_opennext_msg = N_("Switch to the next file buffer");
#endif
    const char *nano_verbatim_msg = N_("Insert character(s) verbatim");
322
323
324
325
#ifndef NANO_SMALL
    const char *nano_cut_till_end_msg =
	N_("Cut from the cursor position to the end of the file");
#endif
326
327
#ifndef DISABLE_JUSTIFY
    const char *nano_fulljustify_msg = N_("Justify the entire file");
328
#endif
329
#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
330
    const char *nano_bracket_msg = N_("Find other bracket");
331
#endif
332
333
334
335
336
337
338
339
340
341
    const char *nano_cancel_msg = N_("Cancel the current function");
    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");
#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");
#ifdef HAVE_REGEX_H
    const char *nano_regexp_msg = N_("Use regular expressions");
342
#endif
343
344
    const char *nano_editstr_msg =
	N_("Edit the previous search/replace strings");
345
#endif /* !NANO_SMALL */
346

347
348
#ifndef DISABLE_BROWSER
    const char *nano_tofiles_msg = N_("Go to file browser");
Chris Allegretta's avatar
Chris Allegretta committed
349
#endif
350
351
352
#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");
353
#endif
354
355
356
357
358
    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
    const char *nano_backup_msg = N_("Back up original file when saving");
    const char *nano_execute_msg = N_("Execute external command");
359
#endif
360
#if !defined(NANO_SMALL) && defined(ENABLE_MULTIBUFFER)
361
362
363
    const char *nano_multibuffer_msg = N_("Insert into new buffer");
#endif
#ifndef DISABLE_BROWSER
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
364
365
    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
366
#endif
367
#endif /* !DISABLE_HELP */
Chris Allegretta's avatar
Chris Allegretta committed
368

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
369
370
371
/* 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
372
#ifndef DISABLE_HELP
373
#  define IFHELP(help, nextvar) help, nextvar
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
374
375
#else
#  define IFHELP(help, nextvar) nextvar
376
#endif
377

378
379
    free_shortcutage(&main_list);

380
    /* Translators: try to keep this string under 10 characters long */
381
382
383
    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,
384
385
386
387
388
389
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
Chris Allegretta's avatar
Chris Allegretta committed
390

391
    /* Translators: try to keep this string under 10 characters long */
392
393
394
395
    sc_init_one(&main_list, NANO_EXIT_KEY,
#ifdef ENABLE_MULTIBUFFER
	open_files != NULL && open_files != open_files->next ?
	N_("Close") :
396
#endif
397
398
	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
399

400
    /* Translators: try to keep this string under 10 characters long */
401
402
403
    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
404

405
    /* Translators: try to keep this string under 10 characters long */
406
407
408
    sc_init_one(&main_list, NANO_JUSTIFY_KEY, N_("Justify"),
	IFHELP(nano_justify_msg, NANO_NO_KEY),
	NANO_JUSTIFY_FKEY, NANO_NO_KEY, NOVIEW,
409
#ifndef DISABLE_JUSTIFY
410
		do_justify_void
411
412
413
414
#else
		nano_disabled_msg
#endif
		);
415

416
417
418
419
420
    /* 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. */
421
    /* Translators: try to keep this string under 10 characters long */
422
423
424
    sc_init_one(&main_list, NANO_INSERTFILE_KEY, N_("Read File"),
	IFHELP(nano_insert_msg, NANO_NO_KEY), NANO_INSERTFILE_FKEY,
	NANO_NO_KEY,
425
#ifdef ENABLE_MULTIBUFFER
426
		VIEW
427
#else
428
		NOVIEW
429
#endif
430
431
		, !ISSET(RESTRICTED) ? do_insertfile_void :
		nano_disabled_msg);
Chris Allegretta's avatar
Chris Allegretta committed
432

433
    /* Translators: try to keep this string under 10 characters long */
434
435
436
    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
437

438
    /* Translators: try to keep this string under 10 characters long */
439
440
441
    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
442

443
    /* Translators: try to keep this string under 10 characters long */
444
445
446
    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
447

448
    /* Translators: try to keep this string under 10 characters long */
449
450
451
    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
452

453
    if (unjustify)
454
    /* Translators: try to keep this string under 10 characters long */
455
456
	sc_init_one(&main_list, NANO_UNJUSTIFY_KEY, N_("UnJustify"),
		IFHELP(NULL, NANO_NO_KEY), NANO_UNJUSTIFY_FKEY,
457
		NANO_NO_KEY, NOVIEW, NULL);
458
    else
459
    /* Translators: try to keep this string under 10 characters long */
460
	sc_init_one(&main_list, NANO_UNCUT_KEY, N_("UnCut Txt"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
461
462
		IFHELP(nano_uncut_msg, NANO_NO_KEY), NANO_UNCUT_FKEY,
		NANO_NO_KEY, NOVIEW, do_uncut_text);
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_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
468

469
470
471
    /* 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. */
472
    /* Translators: try to keep this string under 10 characters long */
473
    sc_init_one(&main_list, NANO_SPELL_KEY, N_("To Spell"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
474
		IFHELP(nano_spell_msg, NANO_NO_KEY), NANO_SPELL_FKEY,
475
476
477
478
479
		NANO_NO_KEY, NOVIEW,
#ifndef DISABLE_SPELLER
		!ISSET(RESTRICTED) ? do_spell :
#endif
		nano_disabled_msg);
480

481
    sc_init_one(&main_list, NANO_GOTOLINE_KEY, go_to_line_msg,
482
483
	IFHELP(nano_gotoline_msg, NANO_GOTOLINE_ALTKEY),
	NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW, do_gotoline_void);
484

485
    sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg,
486
487
	IFHELP(nano_replace_msg, NANO_ALT_REPLACE_KEY),
	NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW, do_replace);
Chris Allegretta's avatar
Chris Allegretta committed
488

489
#ifndef NANO_SMALL
490
491
    sc_init_one(&main_list, NANO_MARK_KEY, N_("Mark Text"),
	IFHELP(nano_mark_msg, NANO_MARK_ALTKEY), NANO_MARK_FKEY,
492
	NANO_NO_KEY, NOVIEW, do_mark);
493
494
495

    sc_init_one(&main_list, NANO_NO_KEY, N_("Where Is Next"),
	IFHELP(nano_whereis_next_msg, NANO_WHEREIS_NEXT_KEY),
496
	NANO_WHEREIS_NEXT_FKEY, NANO_NO_KEY, VIEW, do_research);
497
498
#endif

499
500
501
    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
502

503
504
505
    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
506

507
508
509
    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
510

511
512
513
    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
514

515
516
517
    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
518

519
520
521
    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
522

523
524
525
    sc_init_one(&main_list, NANO_REFRESH_KEY, N_("Refresh"),
	IFHELP(nano_refresh_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, total_refresh);
Chris Allegretta's avatar
Chris Allegretta committed
526

527
528
529
    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
530

531
532
533
    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
534

535
536
537
    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
538

539
540
541
    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);
542

543
#ifndef NANO_SMALL
544
545
546
    sc_init_one(&main_list, NANO_NEXTWORD_KEY, N_("Next Word"),
	IFHELP(nano_nextword_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_next_word);
547

548
549
550
    sc_init_one(&main_list, NANO_NO_KEY, N_("Prev Word"),
	IFHELP(nano_prevword_msg, NANO_PREVWORD_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_prev_word);
551
#endif
552

553
554
555
556
#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,
557
	NANO_PARABEGIN_ALTKEY2, VIEW, do_para_begin_void);
558
559
560
561

    /* 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,
562
	NANO_PARAEND_ALTKEY2, VIEW, do_para_end_void);
563
#endif
564

565
#ifdef ENABLE_MULTIBUFFER
566
567
568
    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);
569

570
571
572
    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);
573
#endif
574

575
576
577
578
    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);

579
580
581
582
583
584
585
#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

586
587
588
#ifndef DISABLE_JUSTIFY
    /* Translators: try to keep this string under 10 characters long */
    sc_init_one(&main_list, NANO_NO_KEY, fulljstify_msg,
589
590
	IFHELP(nano_fulljustify_msg, NANO_FULLJUSTIFY_ALTKEY),
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
591
592
#endif

593
#if !defined(NANO_SMALL) && defined(HAVE_REGEX_H)
594
595
596
    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);
597
598
#endif

599
    free_shortcutage(&whereis_list);
600

601
602
603
    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,
604
605
606
607
608
609
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
610

611
    /* Translators: try to keep this string under 10 characters long */
612
613
    sc_init_one(&whereis_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
614
	NANO_NO_KEY, VIEW, NULL);
615

616
    /* Translators: try to keep this string under 10 characters long */
617
618
619
    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
620

621
    /* Translators: try to keep this string under 10 characters long */
622
623
624
    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
625

626
    /* Translators: try to keep this string under 10 characters long */
627
    sc_init_one(&whereis_list, NANO_TOOTHERSEARCH_KEY, replace_msg,
628
	IFHELP(nano_replace_msg, NANO_NO_KEY), NANO_REPLACE_FKEY,
629
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
630

631
    /* Translators: try to keep this string under 10 characters long */
632
633
    sc_init_one(&whereis_list, NANO_TOGOTOLINE_KEY, go_to_line_msg,
	IFHELP(nano_gotoline_msg, NANO_NO_KEY), NANO_GOTOLINE_FKEY,
634
	NANO_NO_KEY, VIEW, NULL);
635

636
637
#ifndef DISABLE_JUSTIFY
    /* Translators: try to keep this string under 10 characters long */
638
    sc_init_one(&whereis_list, NANO_PARABEGIN_KEY, beg_of_par_msg,
639
	IFHELP(nano_parabegin_msg, NANO_PARABEGIN_ALTKEY1), NANO_NO_KEY,
640
	NANO_PARABEGIN_ALTKEY2, VIEW, do_para_begin_void);
641
642

    /* Translators: try to keep this string under 10 characters long */
643
    sc_init_one(&whereis_list, NANO_PARAEND_KEY, end_of_par_msg,
644
	IFHELP(nano_paraend_msg, NANO_PARAEND_ALTKEY1), NANO_NO_KEY,
645
	NANO_PARAEND_ALTKEY2, VIEW, do_para_end_void);
646
647
#endif

648
#ifndef NANO_SMALL
649
    /* Translators: try to keep this string under 10 characters long */
650
651
    sc_init_one(&whereis_list, NANO_NO_KEY, case_sens_msg,
	IFHELP(nano_case_msg, TOGGLE_CASE_KEY), NANO_NO_KEY,
652
	NANO_NO_KEY, VIEW, NULL);
653

654
    /* Translators: try to keep this string under 10 characters long */
655
656
    sc_init_one(&whereis_list, NANO_NO_KEY, direction_msg,
	IFHELP(nano_reverse_msg, TOGGLE_BACKWARDS_KEY), NANO_NO_KEY,
657
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
658

659
#ifdef HAVE_REGEX_H
660
    /* Translators: try to keep this string under 10 characters long */
661
662
    sc_init_one(&whereis_list, NANO_NO_KEY, regexp_msg,
	IFHELP(nano_regexp_msg, TOGGLE_REGEXP_KEY), NANO_NO_KEY,
663
	NANO_NO_KEY, VIEW, NULL);
664
#endif
665

666
    /* Translators: try to keep this string under 10 characters long */
667
668
    sc_init_one(&whereis_list, NANO_HISTORY_KEY, history_msg,
	IFHELP(nano_editstr_msg, NANO_NO_KEY), NANO_NO_KEY,
669
	NANO_NO_KEY, VIEW, NULL);
670
671
672
673
674

    /* 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);
675
#endif /* !NANO_SMALL */
676
677
678
679
680
681
682

#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
683

684
    free_shortcutage(&replace_list);
685

686
687
688
    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,
689
690
691
692
693
694
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
695

696
697
    sc_init_one(&replace_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
698
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
699

700
701
702
    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
703

704
705
706
    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
707

708
    /* Translators: try to keep this string under 12 characters long */
709
    sc_init_one(&replace_list, NANO_TOOTHERSEARCH_KEY, N_("No Replace"),
710
	IFHELP(nano_whereis_msg, NANO_NO_KEY), NANO_REPLACE_FKEY,
711
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
712

713
714
    sc_init_one(&replace_list, NANO_TOGOTOLINE_KEY, go_to_line_msg,
	IFHELP(nano_gotoline_msg, NANO_NO_KEY), NANO_GOTOLINE_FKEY,
715
	NANO_NO_KEY, VIEW, NULL);
716

717
#ifndef NANO_SMALL
718
719
    sc_init_one(&replace_list, NANO_NO_KEY, case_sens_msg,
	IFHELP(nano_case_msg, TOGGLE_CASE_KEY), NANO_NO_KEY,
720
	NANO_NO_KEY, VIEW, NULL);
721

722
723
    sc_init_one(&replace_list, NANO_NO_KEY, direction_msg,
	IFHELP(nano_reverse_msg, TOGGLE_BACKWARDS_KEY), NANO_NO_KEY,
724
	NANO_NO_KEY, VIEW, NULL);
725

726
#ifdef HAVE_REGEX_H
727
728
    sc_init_one(&replace_list, NANO_NO_KEY, regexp_msg,
	IFHELP(nano_regexp_msg, TOGGLE_REGEXP_KEY), NANO_NO_KEY,
729
	NANO_NO_KEY, VIEW, NULL);
730
#endif
731

732
733
    sc_init_one(&replace_list, NANO_HISTORY_KEY, history_msg,
	IFHELP(nano_editstr_msg, NANO_NO_KEY), NANO_NO_KEY,
734
	NANO_NO_KEY, VIEW, NULL);
735
#endif /* !NANO_SMALL */
736

737
    free_shortcutage(&replace_list_2);
738

739
740
741
    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,
742
743
744
745
746
747
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
748

749
750
    sc_init_one(&replace_list_2, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
751
	NANO_NO_KEY, VIEW, NULL);
752

753
754
755
    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);
756

757
758
759
    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);
760

761
#ifndef NANO_SMALL
762
763
    sc_init_one(&replace_list_2, NANO_HISTORY_KEY, history_msg,
	IFHELP(nano_editstr_msg, NANO_NO_KEY), NANO_NO_KEY,
764
	NANO_NO_KEY, VIEW, NULL);
765
766
#endif

767
    free_shortcutage(&gotoline_list);
Chris Allegretta's avatar
Chris Allegretta committed
768

769
    sc_init_one(&gotoline_list, NANO_HELP_KEY, get_help_msg,
770
771
	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
    sc_init_one(&gotoline_list, NANO_CANCEL_KEY, cancel_msg,
780
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
781
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
782

783
    sc_init_one(&gotoline_list, NANO_FIRSTLINE_KEY, first_line_msg,
784
785
	IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_first_line);
Chris Allegretta's avatar
Chris Allegretta committed
786

787
    sc_init_one(&gotoline_list, NANO_LASTLINE_KEY, last_line_msg,
788
789
	IFHELP(nano_lastline_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, do_last_line);
Chris Allegretta's avatar
Chris Allegretta committed
790

791
792
    sc_init_one(&gotoline_list, NANO_TOOTHERWHEREIS_KEY,
	N_("Go To Text"), IFHELP(nano_whereis_msg, NANO_NO_KEY),
793
	NANO_NO_KEY, NANO_NO_KEY, VIEW, NULL);
794

Chris Allegretta's avatar
Chris Allegretta committed
795
#ifndef DISABLE_HELP
796
    free_shortcutage(&help_list);
Chris Allegretta's avatar
Chris Allegretta committed
797

798
799
    sc_init_one(&help_list, NANO_PREVPAGE_KEY, prev_page_msg,
	IFHELP(nano_prevpage_msg, NANO_NO_KEY), NANO_PREVPAGE_FKEY,
800
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
801

802
803
    sc_init_one(&help_list, NANO_NEXTPAGE_KEY, next_page_msg,
	IFHELP(nano_nextpage_msg, NANO_NO_KEY), NANO_NEXTPAGE_FKEY,
804
	NANO_NO_KEY, VIEW, NULL);
805

806
807
    sc_init_one(&help_list, NANO_PREVLINE_KEY, N_("Prev Line"),
	IFHELP(nano_prevline_msg, NANO_NO_KEY), NANO_NO_KEY,
808
	NANO_NO_KEY, VIEW, NULL);
809

810
811
    sc_init_one(&help_list, NANO_NEXTLINE_KEY, N_("Next Line"),
	IFHELP(nano_nextline_msg, NANO_NO_KEY), NANO_NO_KEY,
812
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
813

814
815
816
817
    sc_init_one(&help_list, NANO_REFRESH_KEY, N_("Refresh"),
	IFHELP(nano_refresh_msg, NANO_NO_KEY), NANO_NO_KEY,
	NANO_NO_KEY, VIEW, NULL);

818
819
    sc_init_one(&help_list, NANO_EXIT_KEY, exit_msg,
	IFHELP(nano_exit_msg, NANO_NO_KEY), NANO_EXIT_FKEY,
820
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
821
#endif
Chris Allegretta's avatar
Chris Allegretta committed
822

823
    free_shortcutage(&writefile_list);
Chris Allegretta's avatar
Chris Allegretta committed
824

825
826
827
    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,
828
829
830
831
832
833
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
834

835
836
    sc_init_one(&writefile_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
837
	NANO_NO_KEY, VIEW, NULL);
838

839
#ifndef DISABLE_BROWSER
840
841
    /* If we're using restricted mode, the file browser is disabled.
     * It's useless since inserting files is disabled. */
842
    /* Translators: try to keep this string under 16 characters long */
843
    if (!ISSET(RESTRICTED))
844
	sc_init_one(&writefile_list, NANO_TOFILES_KEY, to_files_msg,
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
845
		IFHELP(nano_tofiles_msg, NANO_NO_KEY), NANO_NO_KEY,
846
		NANO_NO_KEY, NOVIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
847
#endif
Chris Allegretta's avatar
Chris Allegretta committed
848

849
#ifndef NANO_SMALL
850
851
852
853
854
855
    /* 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. */
856
    /* Translators: try to keep this string under 16 characters long */
857
    if (!ISSET(RESTRICTED))
858
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("DOS Format"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
859
		IFHELP(nano_dos_msg, TOGGLE_DOS_KEY), NANO_NO_KEY,
860
		NANO_NO_KEY, NOVIEW, NULL);
861

862
    /* Translators: try to keep this string under 16 characters long */
863
    if (!ISSET(RESTRICTED))
864
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Mac Format"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
865
		IFHELP(nano_mac_msg, TOGGLE_MAC_KEY), NANO_NO_KEY,
866
		NANO_NO_KEY, NOVIEW, NULL);
867
868
#endif

869
    /* Translators: try to keep this string under 16 characters long */
870
    if (!ISSET(RESTRICTED))
871
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Append"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
872
		IFHELP(nano_append_msg, NANO_APPEND_KEY), NANO_NO_KEY,
873
		NANO_NO_KEY, NOVIEW, NULL);
874

875
    /* Translators: try to keep this string under 16 characters long */
876
    if (!ISSET(RESTRICTED))
877
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Prepend"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
878
		IFHELP(nano_prepend_msg, NANO_PREPEND_KEY), NANO_NO_KEY,
879
		NANO_NO_KEY, NOVIEW, NULL);
880

881
#ifndef NANO_SMALL
882
    /* Translators: try to keep this string under 16 characters long */
883
    if (!ISSET(RESTRICTED))
884
	sc_init_one(&writefile_list, NANO_NO_KEY, N_("Backup File"),
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
885
		IFHELP(nano_backup_msg, TOGGLE_BACKUP_KEY), NANO_NO_KEY,
886
		NANO_NO_KEY, NOVIEW, NULL);
887
888
#endif

889
    free_shortcutage(&insertfile_list);
890

891
892
893
    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,
894
895
896
897
898
899
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
900

901
    sc_init_one(&insertfile_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
902
		IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
903
		NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
904

905
#ifndef DISABLE_BROWSER
906
907
    /* If we're using restricted mode, the file browser is disabled.
     * It's useless since inserting files is disabled. */
908
    if (!ISSET(RESTRICTED))
909
	sc_init_one(&insertfile_list, NANO_TOFILES_KEY, to_files_msg,
David Lawrence Ramsey's avatar
   
David Lawrence Ramsey committed
910
		IFHELP(nano_tofiles_msg, NANO_NO_KEY), NANO_NO_KEY,
911
		NANO_NO_KEY, NOVIEW, NULL);
912
#endif
913

914
#ifndef NANO_SMALL
915
916
    /* If we're using restricted mode, command execution is disabled.
     * It's useless since inserting files is disabled. */
917
    /* Translators: try to keep this string under 22 characters long */
918
    if (!ISSET(RESTRICTED))
919
920
	sc_init_one(&insertfile_list, NANO_TOOTHERINSERT_KEY,
		N_("Execute Command"), IFHELP(nano_execute_msg,
921
		NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
922

923
#ifdef ENABLE_MULTIBUFFER
924
925
    /* If we're using restricted mode, the multibuffer toggle is
     * disabled.  It's useless since inserting files is disabled. */
926
    /* Translators: try to keep this string under 22 characters long */
927
    if (!ISSET(RESTRICTED))
928
	sc_init_one(&insertfile_list, NANO_NO_KEY, new_buffer_msg,
929
		IFHELP(nano_multibuffer_msg, TOGGLE_MULTIBUFFER_KEY),
930
		NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
931
#endif
932
#endif
933

Chris Allegretta's avatar
Chris Allegretta committed
934
#ifndef DISABLE_SPELLER
935
    free_shortcutage(&spell_list);
Chris Allegretta's avatar
Chris Allegretta committed
936

937
938
939
    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,
940
941
942
943
944
945
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
946

947
948
    sc_init_one(&spell_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
949
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
950
#endif
Chris Allegretta's avatar
Chris Allegretta committed
951

952
#ifndef NANO_SMALL
953
    free_shortcutage(&extcmd_list);
Chris Allegretta's avatar
Chris Allegretta committed
954

955
956
957
    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,
958
959
960
961
962
963
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
964

965
966
    sc_init_one(&extcmd_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
967
	NANO_NO_KEY, VIEW, NULL);
968

969
970
    sc_init_one(&extcmd_list, NANO_TOOTHERINSERT_KEY, N_("Insert File"),
	IFHELP(nano_insert_msg, NANO_NO_KEY), NANO_NO_KEY,
971
	NANO_NO_KEY, VIEW, NULL);
972

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
973
#ifdef ENABLE_MULTIBUFFER
974
    sc_init_one(&extcmd_list, NANO_NO_KEY, new_buffer_msg,
975
	IFHELP(nano_multibuffer_msg, TOGGLE_MULTIBUFFER_KEY),
976
	NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
977
#endif
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
978
#endif
979

980
#ifndef DISABLE_BROWSER
981
    free_shortcutage(&browser_list);
982

983
984
985
    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,
986
987
988
989
990
991
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
992

993
    sc_init_one(&browser_list, NANO_EXIT_KEY, exit_msg,
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
994
	IFHELP(nano_exitbrowser_msg, NANO_NO_KEY), NANO_EXIT_FKEY,
995
	NANO_NO_KEY, VIEW, NULL);
996

997
998
    sc_init_one(&browser_list, NANO_PREVPAGE_KEY, prev_page_msg,
	IFHELP(nano_prevpage_msg, NANO_NO_KEY), NANO_PREVPAGE_FKEY,
999
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
1000

1001
1002
    sc_init_one(&browser_list, NANO_NEXTPAGE_KEY, next_page_msg,
	IFHELP(nano_nextpage_msg, NANO_NO_KEY), NANO_NEXTPAGE_FKEY,
1003
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
1004

1005
    /* Translators: try to keep this string under 22 characters long */
1006
    sc_init_one(&browser_list, NANO_GOTOLINE_KEY, N_("Go To Dir"),
1007
	IFHELP(nano_gotodir_msg, NANO_GOTOLINE_ALTKEY),
1008
	NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW, NULL);
Rocco Corsi's avatar
   
Rocco Corsi committed
1009

1010
    free_shortcutage(&gotodir_list);
1011

1012
1013
1014
    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,
1015
1016
1017
1018
1019
1020
#ifndef DISABLE_HELP
		do_help
#else
		nano_disabled_msg
#endif
		);
Chris Allegretta's avatar
Chris Allegretta committed
1021

1022
1023
    sc_init_one(&gotodir_list, NANO_CANCEL_KEY, cancel_msg,
	IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY,
1024
	NANO_NO_KEY, VIEW, NULL);
Chris Allegretta's avatar
Chris Allegretta committed
1025
1026
#endif

1027
    currshortcut = main_list;
1028

1029
#ifndef NANO_SMALL
1030
    toggle_init();
1031
#endif
1032
}
1033

1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
/* Deallocate the given shortcut. */
void free_shortcutage(shortcut **shortcutage)
{
    assert(shortcutage != NULL);
    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) {
1053
	toggles = (toggle *)nmalloc(sizeof(toggle));
1054
1055
1056
1057
	u = toggles;
    } else {
	for (u = toggles; u->next != NULL; u = u->next)
	    ;
1058
	u->next = (toggle *)nmalloc(sizeof(toggle));
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
	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);
#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))
1080
1081
	toggle_init_one(TOGGLE_MULTIBUFFER_KEY,
		N_("Multiple file buffers"), MULTIBUFFER);
1082
1083
1084
#endif
    toggle_init_one(TOGGLE_CONST_KEY, N_("Constant cursor position"),
	CONSTUPDATE);
1085
1086
    toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"),
	AUTOINDENT);
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
#ifndef DISABLE_WRAPPING
    toggle_init_one(TOGGLE_WRAP_KEY, N_("Auto line wrap"), NO_WRAP);
#endif
    toggle_init_one(TOGGLE_CUTTOEND_KEY, N_("Cut to end"), CUT_TO_END);
    /* 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);
#ifndef DISABLE_MOUSE
    toggle_init_one(TOGGLE_MOUSE_KEY, N_("Mouse support"), USE_MOUSE);
#endif
1098
1099
1100
    /* If we're using restricted mode, the DOS/Mac conversion toggle is
     * disabled.  It's useless since inserting files is disabled. */
    if (!ISSET(RESTRICTED))
1101
1102
	toggle_init_one(TOGGLE_NOCONVERT_KEY,
		N_("No conversion from DOS/Mac format"), NO_CONVERT);
1103
1104
1105
    /* If we're using restricted mode, the backup toggle is disabled.
     * It's useless since backups are disabled. */
    if (!ISSET(RESTRICTED))
1106
1107
1108
1109
1110
1111
	toggle_init_one(TOGGLE_BACKUP_KEY, N_("Backup files"),
		BACKUP_FILE);
    toggle_init_one(TOGGLE_SMOOTH_KEY, N_("Smooth scrolling"),
	SMOOTHSCROLL);
    toggle_init_one(TOGGLE_SMARTHOME_KEY, N_("Smart home key"),
	SMART_HOME);
1112
1113
#ifdef ENABLE_COLOR
    toggle_init_one(TOGGLE_SYNTAX_KEY, N_("Color syntax highlighting"),
1114
	NO_COLOR_SYNTAX);
1115
1116
1117
1118
1119
#endif
#ifdef ENABLE_NANORC
    toggle_init_one(TOGGLE_WHITESPACE_KEY, N_("Whitespace display"),
	WHITESPACE_DISPLAY);
#endif
1120
1121
    toggle_init_one(TOGGLE_MORESPACE_KEY, N_("Use of more space for editing"),
	MORE_SPACE);
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
}

#ifdef DEBUG
/* Deallocate all of the toggles. */
void free_toggles(void)
{
    while (toggles != NULL) {
	toggle *pt = toggles;	/* Think "previous toggle". */

	toggles = toggles->next;
	free(pt);
    }
}
#endif
#endif /* !NANO_SMALL */

1138
1139
1140
/* 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
1141
 * function unless debugging is turned on. */
1142
#ifdef DEBUG
1143
/* Added by SPK for memory cleanup; gracefully return our malloc()s. */
Chris Allegretta's avatar
Chris Allegretta committed
1144
void thanks_for_all_the_fish(void)
1145
{
1146
1147
1148
1149
    delwin(topwin);
    delwin(edit);
    delwin(bottomwin);

Chris Allegretta's avatar
Chris Allegretta committed
1150
1151
1152
#ifndef DISABLE_JUSTIFY
    if (quotestr != NULL)
	free(quotestr);
1153
1154
1155
1156
#ifdef HAVE_REGEX_H
    regfree(&quotereg);
    free(quoteerr);
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1157
#endif
1158
1159
1160
1161
#ifndef NANO_SMALL
    if (backup_dir != NULL)
        free(backup_dir);
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1162
#ifndef DISABLE_OPERATINGDIR
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
    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
1178
#ifndef DISABLE_HELP
1179
1180
    if (help_text != NULL)
	free(help_text);
1181
#endif
1182
1183
1184
1185
1186
    if (filename != NULL)
	free(filename);
    if (answer != NULL)
	free(answer);
    if (cutbuffer != NULL)
Chris Allegretta's avatar
Chris Allegretta committed
1187
	free_filestruct(cutbuffer);
1188
1189
1190
1191
#ifndef DISABLE_JUSTIFY
    if (jusbuffer != NULL)
	free_filestruct(jusbuffer);
#endif
1192
1193
1194
1195
    free_shortcutage(&main_list);
    free_shortcutage(&whereis_list);
    free_shortcutage(&replace_list);
    free_shortcutage(&replace_list_2);
1196
    free_shortcutage(&gotoline_list);
1197
1198
    free_shortcutage(&writefile_list);
    free_shortcutage(&insertfile_list);
Chris Allegretta's avatar
Chris Allegretta committed
1199
#ifndef DISABLE_HELP
Chris Allegretta's avatar
Chris Allegretta committed
1200
    free_shortcutage(&help_list);
Chris Allegretta's avatar
Chris Allegretta committed
1201
1202
#endif
#ifndef DISABLE_SPELLER
1203
    free_shortcutage(&spell_list);
Chris Allegretta's avatar
Chris Allegretta committed
1204
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1205
1206
1207
#ifndef NANO_SMALL
    free_shortcutage(&extcmd_list);
#endif
1208
1209
#ifndef DISABLE_BROWSER
    free_shortcutage(&browser_list);
Chris Allegretta's avatar
Chris Allegretta committed
1210
    free_shortcutage(&gotodir_list);
1211
1212
1213
1214
1215
1216
1217
#endif

#ifndef NANO_SMALL
    free_toggles();
#endif

#ifdef ENABLE_MULTIBUFFER
1218
    if (open_files != NULL) {
1219
	/* We free the memory associated with each open file. */
1220
1221
	while (open_files->prev != NULL)
	    open_files = open_files->prev;
Chris Allegretta's avatar
Chris Allegretta committed
1222
	free_openfilestruct(open_files);
1223
    }
1224
#else
1225
    free_filestruct(fileage);
1226
#endif
Chris Allegretta's avatar
Chris Allegretta committed
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237

#ifdef ENABLE_COLOR
    free(syntaxstr);
    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
1238
	    regfree(&bob->val);
Chris Allegretta's avatar
Chris Allegretta committed
1239
1240
1241
1242
1243
1244
	    free(bob);
	}
	while (syntaxes->color != NULL) {
	    colortype *bob = syntaxes->color;

	    syntaxes->color = bob->next;
Chris Allegretta's avatar
Chris Allegretta committed
1245
1246
	    regfree(&bob->start);
	    if (bob->end != NULL)
1247
1248
		regfree(bob->end);
	    free(bob->end);
Chris Allegretta's avatar
Chris Allegretta committed
1249
1250
1251
1252
1253
1254
	    free(bob);
	}
	syntaxes = syntaxes->next;
	free(bill);
    }
#endif /* ENABLE_COLOR */
1255
1256
1257
1258
1259
#ifndef NANO_SMALL
    /* free history lists */
    free_history(&search_history);
    free_history(&replace_history);
#endif
1260
1261
1262
#ifdef ENABLE_NANORC
    free(homedir);
#endif
1263
}
1264
#endif /* DEBUG */