blob: 5cbd06bf8e5274897d274e97f8e698d47abb9c75 [file] [log] [blame]
Chris Allegretta11b00112000-08-06 21:13:45 +00001/* $Id$ */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002/**************************************************************************
3 * global.c *
4 * *
David Lawrence Ramsey315eb322005-11-28 19:35:29 +00005 * Copyright (C) 1999-2004 Chris Allegretta *
David Lawrence Ramseyd89617f2006-01-06 21:51:10 +00006 * Copyright (C) 2005-2006 David Lawrence Ramsey *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00007 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
Chris Allegretta3a24f3f2001-10-24 11:33:54 +00009 * the Free Software Foundation; either version 2, or (at your option) *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000010 * any later version. *
11 * *
David Lawrence Ramsey6e925cf2005-05-15 19:57:17 +000012 * This program is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
15 * General Public License for more details. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000016 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
David Lawrence Ramsey6e925cf2005-05-15 19:57:17 +000019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
20 * 02110-1301, USA. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000021 * *
22 **************************************************************************/
23
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000024#include "proto.h"
25
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000026/* Global variables. */
27#ifndef NANO_TINY
David Lawrence Ramsey1c5af642006-05-10 15:15:06 +000028sigjmp_buf jump_buf;
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000029 /* Used to return to main() or the unjustify routine in
30 * do_justify() after a SIGWINCH. */
David Lawrence Ramsey1c5af642006-05-10 15:15:06 +000031bool jump_buf_main = FALSE;
32 /* Have we set jump_buf so that we return to main() after a
33 * SIGWINCH? */
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000034#endif
35
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +000036#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000037ssize_t fill = 0;
38 /* The column where we will wrap lines. */
David Lawrence Ramsey691698a2005-07-24 19:57:51 +000039ssize_t wrap_at = -CHARS_FROM_EOL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000040 /* The position where we will wrap lines. fill is equal to this
41 * if it's greater than zero, and equal to (COLS + this) if it
42 * isn't. */
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +000043#endif
44
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000045char *last_search = NULL;
46 /* The last string we searched for. */
47char *last_replace = NULL;
48 /* The last replacement string we searched for. */
Chris Allegretta6df90f52002-07-19 01:08:59 +000049
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000050long flags = 0;
51 /* Our flag containing the states of all global options. */
52WINDOW *topwin;
53 /* The top portion of the window, where we display the version
54 * number of nano, the name of the current file, and whether the
55 * current file has been modified. */
56WINDOW *edit;
57 /* The middle portion of the window, i.e, the edit window, where
58 * we display the current file we're editing. */
59WINDOW *bottomwin;
60 /* The bottom portion of the window, where we display statusbar
61 * messages, the statusbar prompt, and a list of shortcuts. */
62int editwinrows = 0;
63 /* How many rows does the edit window take up? */
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +000064
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000065filestruct *cutbuffer = NULL;
66 /* The buffer where we store cut text. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +000067#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000068filestruct *jusbuffer = NULL;
69 /* The buffer where we store unjustified text. */
David Lawrence Ramsey93c84052004-11-23 04:08:28 +000070#endif
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000071partition *filepart = NULL;
72 /* The partition where we store a portion of the current
73 * file. */
David Lawrence Ramsey64661ac2005-07-08 19:57:25 +000074openfilestruct *openfile = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000075 /* The list of all open file buffers. */
Chris Allegretta2d7893d2001-07-11 02:08:33 +000076
David Lawrence Ramseyd89617f2006-01-06 21:51:10 +000077#ifndef NANO_TINY
78char *matchbrackets = NULL;
79 /* The opening and closing brackets that can be found by bracket
80 * searches. */
81#endif
82
David Lawrence Ramseyebe34252005-11-15 03:17:35 +000083#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000084char *whitespace = NULL;
85 /* The characters used when displaying the first characters of
86 * tabs and spaces. */
87int whitespace_len[2];
88 /* The length of these characters. */
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +000089#endif
90
Chris Allegrettae4f940d2002-03-03 22:36:36 +000091#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000092char *punct = NULL;
93 /* The closing punctuation that can end sentences. */
94char *brackets = NULL;
95 /* The closing brackets that can follow closing punctuation and
96 * can end sentences. */
97char *quotestr = NULL;
98 /* The quoting string. The default value is set in main(). */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +000099#ifdef HAVE_REGEX_H
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000100regex_t quotereg;
101 /* The compiled regular expression from the quoting string. */
102int quoterc;
David Lawrence Ramsey88165642006-05-22 18:30:09 +0000103 /* Whether it was compiled successfully. */
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000104char *quoteerr = NULL;
105 /* The error message, if it didn't. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000106#else
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000107size_t quotelen;
108 /* The length of the quoting string in bytes. */
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000109#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000110#endif
Chris Allegrettae4f940d2002-03-03 22:36:36 +0000111
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000112char *answer = NULL;
113 /* The answer string used in the statusbar prompt. */
114
115ssize_t tabsize = -1;
116 /* The width of a tab in spaces. The default value is set in
117 * main(). */
118
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000119#ifndef NANO_TINY
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000120char *backup_dir = NULL;
121 /* The directory where we store backup files. */
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +0000122#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +0000123#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000124char *operating_dir = NULL;
125 /* The relative path to the operating directory, which we can't
126 * move outside of. */
127char *full_operating_dir = NULL;
128 /* The full path to it. */
Chris Allegrettae1f14522001-09-19 03:19:43 +0000129#endif
130
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000131#ifndef DISABLE_SPELLER
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000132char *alt_speller = NULL;
133 /* The command to use for the alternate spell checker. */
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000134#endif
135
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000136shortcut *main_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000137 /* The main shortcut list. */
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000138shortcut *whereis_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000139 /* The "Search" shortcut list. */
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000140shortcut *replace_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000141 /* The "Search (to replace)" shortcut list. */
142shortcut *replace_list_2 = NULL;
143 /* The "Replace with" shortcut list. */
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000144shortcut *gotoline_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000145 /* The "Enter line number, column number" shortcut list. */
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000146shortcut *writefile_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000147 /* The "File Name to Write" shortcut list. */
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000148shortcut *insertfile_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000149 /* The "File to insert" shortcut list. */
150#ifndef NANO_TINY
151shortcut *extcmd_list = NULL;
152 /* The "Command to execute" shortcut list. */
153#endif
Chris Allegretta7662c862003-01-13 01:35:15 +0000154#ifndef DISABLE_HELP
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000155shortcut *help_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000156 /* The help text shortcut list. */
Chris Allegretta7662c862003-01-13 01:35:15 +0000157#endif
158#ifndef DISABLE_SPELLER
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000159shortcut *spell_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000160 /* The internal spell checker shortcut list. */
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000161#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +0000162#ifndef DISABLE_BROWSER
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000163shortcut *browser_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000164 /* The file browser shortcut list. */
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000165shortcut *whereis_file_list = NULL;
166 /* The file browser "Search" shortcut list. */
Chris Allegretta201f1d92003-02-05 02:51:19 +0000167shortcut *gotodir_list = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000168 /* The "Go To Directory" shortcut list. */
Chris Allegrettaf4b96012001-01-03 07:11:47 +0000169#endif
Chris Allegretta201f1d92003-02-05 02:51:19 +0000170
Chris Allegretta8ce24132001-04-30 11:28:46 +0000171#ifdef ENABLE_COLOR
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000172syntaxtype *syntaxes = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000173 /* The global list of color syntaxes. */
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000174char *syntaxstr = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000175 /* The color syntax name specified on the command line. */
Chris Allegretta8ce24132001-04-30 11:28:46 +0000176#endif
177
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000178const shortcut *currshortcut;
179 /* The current shortcut list we're using. */
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000180#ifndef NANO_TINY
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000181toggle *toggles = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000182 /* The global toggle list. */
Chris Allegrettaf0b26df2001-01-20 22:18:18 +0000183#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000184
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000185#ifndef NANO_TINY
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000186filestruct *search_history = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000187 /* The search string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000188filestruct *searchage = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000189 /* The top of the search string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000190filestruct *searchbot = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000191 /* The bottom of the search string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000192filestruct *replace_history = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000193 /* The replace string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000194filestruct *replaceage = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000195 /* The top of the replace string history list. */
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000196filestruct *replacebot = NULL;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000197 /* The bottom of the replace string history list. */
Chris Allegretta5beed502003-01-05 20:41:21 +0000198#endif
199
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +0000200/* Regular expressions. */
Chris Allegretta805c26d2000-09-06 13:39:17 +0000201#ifdef HAVE_REGEX_H
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000202regex_t search_regexp;
203 /* The compiled regular expression to use in searches. */
204regmatch_t regmatches[10];
205 /* The match positions for parenthetical subexpressions, 10
206 * maximum, used in regular expression searches. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000207#endif
Chris Allegretta3533a342002-03-24 23:19:32 +0000208
David Lawrence Ramsey4d72de72006-04-12 15:27:40 +0000209int reverse_attr = A_REVERSE;
210 /* The curses attribute we use for reverse video. */
Chris Allegrettaa0d89972003-02-03 03:32:08 +0000211
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000212char *homedir = NULL;
David Lawrence Ramseyc1c818e2006-05-14 18:22:01 +0000213 /* The user's home directory, from $HOME or /etc/passwd. */
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000214
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000215/* Return the number of entries in the shortcut list s. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +0000216size_t length_of_list(const shortcut *s)
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000217{
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +0000218 size_t i = 0;
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000219
Chris Allegrettadab017e2002-04-23 10:56:06 +0000220 for (; s != NULL; s = s->next)
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000221 i++;
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000222 return i;
223}
224
David Lawrence Ramseye6757b92006-04-19 13:36:56 +0000225/* Add a new shortcut to the end of the shortcut list. */
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000226void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc,
Chris Allegrettadab017e2002-04-23 10:56:06 +0000227#ifndef DISABLE_HELP
Chris Allegrettaf717f982003-02-13 22:25:01 +0000228 const char *help,
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000229#endif
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000230 bool blank_after, int metaval, int funcval, int miscval, bool
231 view, void (*func)(void))
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000232{
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000233 shortcut *s;
234
235 if (*shortcutage == NULL) {
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +0000236 *shortcutage = (shortcut *)nmalloc(sizeof(shortcut));
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000237 s = *shortcutage;
238 } else {
239 for (s = *shortcutage; s->next != NULL; s = s->next)
240 ;
David Lawrence Ramsey70047ee2003-06-14 20:41:34 +0000241 s->next = (shortcut *)nmalloc(sizeof(shortcut));
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000242 s = s->next;
243 }
244
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000245 s->ctrlval = ctrlval;
David Lawrence Ramseyefb4b0a2006-04-19 14:09:01 +0000246 s->desc = (desc == NULL) ? "" : _(desc);
Chris Allegrettadab017e2002-04-23 10:56:06 +0000247#ifndef DISABLE_HELP
David Lawrence Ramseyefb4b0a2006-04-19 14:09:01 +0000248 s->help = (help == NULL) ? "" : _(help);
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000249#endif
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000250 s->blank_after = blank_after;
David Lawrence Ramsey1576d532004-03-19 21:46:34 +0000251 s->metaval = metaval;
252 s->funcval = funcval;
253 s->miscval = miscval;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000254 s->viewok = view;
255 s->func = func;
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000256 s->next = NULL;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000257}
258
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000259/* Initialize all shortcut lists. If unjustify is TRUE, replace the
260 * Uncut shortcut in the main shortcut list with UnJustify. */
David Lawrence Ramsey1f1ebb82004-11-11 21:50:01 +0000261void shortcut_init(bool unjustify)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000262{
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000263 /* TRANSLATORS: Try to keep this and following strings at most 10
264 * characters. */
David Lawrence Ramsey12c08dd2006-03-25 15:56:40 +0000265 const char *cancel_msg = N_("Cancel");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000266 const char *get_help_msg = N_("Get Help");
267 const char *exit_msg = N_("Exit");
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000268 const char *whereis_msg = N_("Where Is");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000269 const char *prev_page_msg = N_("Prev Page");
270 const char *next_page_msg = N_("Next Page");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000271 const char *go_to_line_msg = N_("Go To Line");
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000272 /* TRANSLATORS: Try to keep this and previous strings at most 10
273 * characters. */
David Lawrence Ramsey12c08dd2006-03-25 15:56:40 +0000274 const char *replace_msg = N_("Replace");
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000275#ifndef NANO_TINY
David Lawrence Ramsey0ec909c2006-05-06 15:07:26 +0000276 /* TRANSLATORS: Try to keep this at most 12 characters. */
277 const char *whereis_next_msg = N_("WhereIs Next");
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000278#endif
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000279 /* TRANSLATORS: Try to keep this and following strings at most 10
280 * characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000281 const char *first_line_msg = N_("First Line");
282 const char *last_line_msg = N_("Last Line");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000283#ifndef NANO_TINY
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000284 const char *cut_till_end_msg = N_("CutTillEnd");
285#endif
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000286#ifndef DISABLE_JUSTIFY
287 const char *beg_of_par_msg = N_("Beg of Par");
288 const char *end_of_par_msg = N_("End of Par");
289 const char *fulljstify_msg = N_("FullJstify");
290#endif
David Lawrence Ramsey81378762006-04-24 20:53:43 +0000291 const char *refresh_msg = N_("Refresh");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000292#ifndef NANO_TINY
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000293 const char *case_sens_msg = N_("Case Sens");
David Lawrence Ramseyf3ecffd2005-06-16 18:48:30 +0000294 const char *backwards_msg = N_("Backwards");
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000295#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000296#ifdef HAVE_REGEX_H
297 const char *regexp_msg = N_("Regexp");
298#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000299#ifndef NANO_TINY
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000300 const char *prev_history_msg = N_("PrevHstory");
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000301 /* TRANSLATORS: Try to keep this and previous strings at most 10
302 * characters. */
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000303 const char *next_history_msg = N_("NextHstory");
David Lawrence Ramsey47e82b12004-09-28 22:21:46 +0000304#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseyaf318aa2006-04-12 12:54:23 +0000305 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey04a8d1c2004-09-28 22:14:58 +0000306 const char *new_buffer_msg = N_("New Buffer");
David Lawrence Ramsey47e82b12004-09-28 22:21:46 +0000307#endif
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000308#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000309#ifndef DISABLE_BROWSER
David Lawrence Ramsey602199d2006-05-06 15:31:32 +0000310 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000311 const char *to_files_msg = N_("To Files");
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000312 /* TRANSLATORS: Try to keep this at most 12 characters. */
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000313 const char *first_file_msg = N_("First File");
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000314 /* TRANSLATORS: Try to keep this at most 12 characters. */
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000315 const char *last_file_msg = N_("Last File");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000316#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +0000317#ifndef DISABLE_HELP
David Lawrence Ramsey804e1072006-03-29 19:43:32 +0000318 const char *nano_cancel_msg = N_("Cancel the current function");
David Lawrence Ramsey57c9afb2006-04-14 20:21:45 +0000319 const char *nano_help_msg = N_("Display this help text");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000320 const char *nano_exit_msg =
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000321#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000322 N_("Close the current file buffer / Exit from nano")
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000323#else
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000324 N_("Exit from nano")
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000325#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000326 ;
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000327 const char *nano_writeout_msg =
328 N_("Write the current file to disk");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000329 const char *nano_justify_msg = N_("Justify the current paragraph");
330 const char *nano_insert_msg =
331 N_("Insert another file into the current one");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000332 const char *nano_whereis_msg =
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000333 N_("Search for a string or a regular expression");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000334 const char *nano_prevpage_msg = N_("Move to the previous screen");
335 const char *nano_nextpage_msg = N_("Move to the next screen");
336 const char *nano_cut_msg =
337 N_("Cut the current line and store it in the cutbuffer");
338 const char *nano_uncut_msg =
339 N_("Uncut from the cutbuffer into the current line");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000340 const char *nano_cursorpos_msg =
David Lawrence Ramseyf50bd4b2006-04-14 20:15:44 +0000341 N_("Display the position of the cursor");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000342 const char *nano_spell_msg =
343 N_("Invoke the spell checker, if available");
David Lawrence Ramsey16349c92005-07-11 20:50:43 +0000344 const char *nano_gotoline_msg = N_("Go to line and column number");
David Lawrence Ramseybe231d32006-05-21 21:37:21 +0000345 const char *nano_replace_msg =
346 N_("Replace a string or a regular expression");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000347#ifndef NANO_TINY
David Lawrence Ramsey8381fdd2004-11-01 22:40:02 +0000348 const char *nano_mark_msg = N_("Mark text at the cursor position");
349 const char *nano_whereis_next_msg = N_("Repeat last search");
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000350 const char *nano_copy_msg =
351 N_("Copy the current line and store it in the cutbuffer");
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000352 const char *nano_indentmarked_msg = N_("Indent marked text");
353 const char *nano_unindentmarked_msg = N_("Unindent marked text");
David Lawrence Ramsey4b4b6082004-11-01 22:54:40 +0000354#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000355 const char *nano_forward_msg = N_("Move forward one character");
356 const char *nano_back_msg = N_("Move back one character");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000357#ifndef NANO_TINY
358 const char *nano_nextword_msg = N_("Move forward one word");
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000359 const char *nano_prevword_msg = N_("Move back one word");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000360#endif
361 const char *nano_prevline_msg = N_("Move to the previous line");
362 const char *nano_nextline_msg = N_("Move to the next line");
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000363 const char *nano_home_msg =
364 N_("Move to the beginning of the current line");
365 const char *nano_end_msg =
366 N_("Move to the end of the current line");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000367#ifndef DISABLE_JUSTIFY
368 const char *nano_parabegin_msg =
David Lawrence Ramsey40e05722006-04-23 19:21:12 +0000369 N_("Move to the beginning of the current paragraph");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000370 const char *nano_paraend_msg =
David Lawrence Ramsey40e05722006-04-23 19:21:12 +0000371 N_("Move to the end of the current paragraph");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000372#endif
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000373 const char *nano_firstline_msg =
374 N_("Move to the first line of the file");
375 const char *nano_lastline_msg =
376 N_("Move to the last line of the file");
377#ifndef NANO_TINY
378 const char *nano_bracket_msg = N_("Move to the matching bracket");
379 const char *nano_scrollup_msg =
380 N_("Scroll up one line without scrolling the cursor");
381 const char *nano_scrolldown_msg =
382 N_("Scroll down one line without scrolling the cursor");
383#endif
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000384#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000385 const char *nano_prevfile_msg =
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000386 N_("Switch to the previous file buffer");
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000387 const char *nano_nextfile_msg =
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000388 N_("Switch to the next file buffer");
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000389#endif
David Lawrence Ramsey40e05722006-04-23 19:21:12 +0000390 const char *nano_verbatim_msg =
David Lawrence Ramsey939d4232006-04-24 21:00:17 +0000391 N_("Insert the next keystroke verbatim");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000392 const char *nano_tab_msg =
David Lawrence Ramseybf784202006-04-29 13:59:04 +0000393 N_("Insert a tab at the cursor position");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000394 const char *nano_enter_msg =
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000395 N_("Insert a newline at the cursor position");
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000396 const char *nano_delete_msg =
397 N_("Delete the character under the cursor");
398 const char *nano_backspace_msg =
399 N_("Delete the character to the left of the cursor");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000400#ifndef NANO_TINY
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000401 const char *nano_cut_till_end_msg =
402 N_("Cut from the cursor position to the end of the file");
403#endif
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000404#ifndef DISABLE_JUSTIFY
405 const char *nano_fulljustify_msg = N_("Justify the entire file");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000406#endif
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000407#ifndef NANO_TINY
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000408 const char *nano_wordcount_msg =
409 N_("Count the number of words, lines, and characters");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000410#endif
David Lawrence Ramsey854a44a2006-04-24 21:14:55 +0000411 const char *nano_refresh_msg =
412 N_("Refresh (redraw) the current screen");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000413#ifndef NANO_TINY
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000414 const char *nano_case_msg =
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000415 N_("Toggle the case sensitivity of the search");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000416 const char *nano_reverse_msg =
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000417 N_("Reverse the direction of the search");
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000418#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000419#ifdef HAVE_REGEX_H
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000420 const char *nano_regexp_msg =
421 N_("Toggle the use of regular expressions");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000422#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000423#ifndef NANO_TINY
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000424 const char *nano_prev_history_msg =
425 N_("Edit the previous search/replace string");
426 const char *nano_next_history_msg =
427 N_("Edit the next search/replace string");
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000428#endif
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000429#ifndef DISABLE_BROWSER
430 const char *nano_tofiles_msg = N_("Go to file browser");
431#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000432#ifndef NANO_TINY
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000433 const char *nano_dos_msg = N_("Toggle the use of DOS format");
434 const char *nano_mac_msg = N_("Toggle the use of Mac format");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000435#endif
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000436 const char *nano_append_msg = N_("Toggle appending");
437 const char *nano_prepend_msg = N_("Toggle prepending");
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000438#ifndef NANO_TINY
David Lawrence Ramsey9b108c22005-06-06 18:38:16 +0000439 const char *nano_backup_msg =
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000440 N_("Toggle backing up of the original file");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000441 const char *nano_execute_msg = N_("Execute external command");
442#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000443#if !defined(NANO_TINY) && defined(ENABLE_MULTIBUFFER)
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +0000444 const char *nano_multibuffer_msg =
445 N_("Toggle the use of a new buffer");
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000446#endif
447#ifndef DISABLE_BROWSER
David Lawrence Ramseyc41d4282004-07-23 12:51:40 +0000448 const char *nano_exitbrowser_msg = N_("Exit from the file browser");
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000449 const char *nano_firstfile_msg =
450 N_("Go to the first file in the list");
451 const char *nano_lastfile_msg =
452 N_("Go to the last file in the list");
David Lawrence Ramseyc41d4282004-07-23 12:51:40 +0000453 const char *nano_gotodir_msg = N_("Go to directory");
Chris Allegretta2bef1822001-09-28 19:53:11 +0000454#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +0000455#endif /* !DISABLE_HELP */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000456
David Lawrence Ramsey8e4adcd2004-05-20 03:29:33 +0000457/* The following macro is to be used in calling sc_init_one(). The
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000458 * point is that sc_init_one() takes 10 arguments, unless DISABLE_HELP
459 * is defined, when the 4th one should not be there. */
David Lawrence Ramseyea43a1d2004-03-02 22:52:57 +0000460#ifndef DISABLE_HELP
David Lawrence Ramseyeb509222005-03-22 04:50:11 +0000461#define IFHELP(help, nextvar) help, nextvar
David Lawrence Ramseyea43a1d2004-03-02 22:52:57 +0000462#else
David Lawrence Ramseyeb509222005-03-22 04:50:11 +0000463#define IFHELP(help, nextvar) nextvar
Chris Allegrettadab017e2002-04-23 10:56:06 +0000464#endif
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000465
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000466 free_shortcutage(&main_list);
467
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000468 sc_init_one(&main_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000469 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
470 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000471#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000472 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000473#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000474 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000475#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000476 );
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000477
David Lawrence Ramsey5b3dd0f2004-11-25 04:39:07 +0000478 sc_init_one(&main_list, NANO_EXIT_KEY,
Chris Allegretta355fbe52001-07-14 19:32:47 +0000479#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000480 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000481 openfile != NULL && openfile != openfile->next ? N_("Close") :
Chris Allegretta2d7893d2001-07-11 02:08:33 +0000482#endif
David Lawrence Ramseybdf84dd2006-04-22 19:52:27 +0000483 exit_msg, IFHELP(nano_exit_msg, FALSE), NANO_NO_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000484 NANO_EXIT_FKEY, NANO_NO_KEY, VIEW, do_exit);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000485
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000486 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000487 sc_init_one(&main_list, NANO_WRITEOUT_KEY, N_("WriteOut"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000488 IFHELP(nano_writeout_msg, FALSE), NANO_NO_KEY,
489 NANO_WRITEOUT_FKEY, NANO_NO_KEY, NOVIEW, do_writeout_void);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000490
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000491 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000492 sc_init_one(&main_list, NANO_JUSTIFY_KEY, N_("Justify"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000493 IFHELP(nano_justify_msg, TRUE), NANO_NO_KEY, NANO_JUSTIFY_FKEY,
David Lawrence Ramsey1f479ee2006-03-29 19:58:49 +0000494 NANO_NO_KEY, NOVIEW,
David Lawrence Ramseya539fce2004-06-29 00:43:56 +0000495#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000496 do_justify_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000497#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000498 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000499#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000500 );
Chris Allegretta32da4562002-01-02 15:12:21 +0000501
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000502 /* We allow inserting files in view mode if multibuffers are
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000503 * available, so that we can view multiple files. If we're using
504 * restricted mode, inserting files is disabled, since it allows
505 * reading from or writing to files not specified on the command
506 * line. */
507
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000508 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000509 sc_init_one(&main_list, NANO_INSERTFILE_KEY, N_("Read File"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000510 IFHELP(nano_insert_msg, FALSE), NANO_NO_KEY,
511 NANO_INSERTFILE_FKEY, NANO_NO_KEY,
Chris Allegretta32da4562002-01-02 15:12:21 +0000512#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000513 VIEW
Chris Allegretta32da4562002-01-02 15:12:21 +0000514#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000515 NOVIEW
Chris Allegretta32da4562002-01-02 15:12:21 +0000516#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000517 , !ISSET(RESTRICTED) ? do_insertfile_void : nano_disabled_msg);
Chris Allegrettaaf6414a2001-02-11 19:05:05 +0000518
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000519 sc_init_one(&main_list, NANO_WHEREIS_KEY, whereis_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000520 IFHELP(nano_whereis_msg, FALSE), NANO_NO_KEY, NANO_WHEREIS_FKEY,
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000521 NANO_NO_KEY, VIEW, do_search);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000522
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000523 sc_init_one(&main_list, NANO_PREVPAGE_KEY, prev_page_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000524 IFHELP(nano_prevpage_msg, FALSE), NANO_NO_KEY,
525 NANO_PREVPAGE_FKEY, NANO_NO_KEY, VIEW, do_page_up);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000526
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000527 sc_init_one(&main_list, NANO_NEXTPAGE_KEY, next_page_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000528 IFHELP(nano_nextpage_msg, TRUE), NANO_NO_KEY,
529 NANO_NEXTPAGE_FKEY, NANO_NO_KEY, VIEW, do_page_down);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000530
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000531 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000532 sc_init_one(&main_list, NANO_CUT_KEY, N_("Cut Text"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000533 IFHELP(nano_cut_msg, FALSE), NANO_NO_KEY, NANO_CUT_FKEY,
David Lawrence Ramseyc87e0c02006-04-25 02:23:28 +0000534 NANO_NO_KEY, NOVIEW, do_cut_text_void);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000535
Chris Allegretta07798352000-11-27 22:58:23 +0000536 if (unjustify)
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000537 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000538 sc_init_one(&main_list, NANO_UNJUSTIFY_KEY, N_("UnJustify"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000539 IFHELP(NULL, FALSE), NANO_NO_KEY, NANO_UNJUSTIFY_FKEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000540 NANO_NO_KEY, NOVIEW, NULL);
Chris Allegretta07798352000-11-27 22:58:23 +0000541 else
David Lawrence Ramseyed467e52006-07-03 18:40:53 +0000542 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey0ec909c2006-05-06 15:07:26 +0000543 sc_init_one(&main_list, NANO_UNCUT_KEY, N_("UnCut Text"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000544 IFHELP(nano_uncut_msg, FALSE), NANO_NO_KEY,
545 NANO_UNCUT_FKEY, NANO_NO_KEY, NOVIEW, do_uncut_text);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000546
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000547 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000548 sc_init_one(&main_list, NANO_CURSORPOS_KEY, N_("Cur Pos"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000549 IFHELP(nano_cursorpos_msg, FALSE), NANO_NO_KEY,
550 NANO_CURSORPOS_FKEY, NANO_NO_KEY, VIEW, do_cursorpos_void);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000551
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000552 /* If we're using restricted mode, spell checking is disabled
553 * because it allows reading from or writing to files not specified
554 * on the command line. */
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000555 /* TRANSLATORS: Try to keep this at most 10 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000556 sc_init_one(&main_list, NANO_SPELL_KEY, N_("To Spell"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000557 IFHELP(nano_spell_msg, TRUE), NANO_NO_KEY, NANO_SPELL_FKEY,
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000558 NANO_NO_KEY, NOVIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000559#ifndef DISABLE_SPELLER
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000560 !ISSET(RESTRICTED) ? do_spell :
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000561#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000562 nano_disabled_msg);
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000563
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +0000564 sc_init_one(&main_list, NANO_GOTOLINE_KEY, go_to_line_msg,
565 IFHELP(nano_gotoline_msg, FALSE), NANO_GOTOLINE_ALTKEY,
566 NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW,
567 do_gotolinecolumn_void);
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000568
David Lawrence Ramseyf1e56272006-05-22 18:28:20 +0000569 sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg
570#ifndef NANO_TINY
571 , IFHELP(nano_replace_msg, FALSE)
572#else
573 , IFHELP(nano_replace_msg, TRUE)
574#endif
575 , NANO_ALT_REPLACE_KEY, NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW,
576 do_replace);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000577
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000578#ifndef NANO_TINY
David Lawrence Ramsey8381fdd2004-11-01 22:40:02 +0000579 sc_init_one(&main_list, NANO_MARK_KEY, N_("Mark Text"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000580 IFHELP(nano_mark_msg, FALSE), NANO_MARK_ALTKEY, NANO_MARK_FKEY,
David Lawrence Ramseya049c832005-06-12 23:53:28 +0000581 NANO_NO_KEY, VIEW, do_mark);
David Lawrence Ramseyefb4b0a2006-04-19 14:09:01 +0000582
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +0000583 sc_init_one(&main_list, NANO_NO_KEY, whereis_next_msg,
584 IFHELP(nano_whereis_next_msg, TRUE), NANO_WHEREIS_NEXT_KEY,
585 NANO_WHEREIS_NEXT_FKEY, NANO_NO_KEY, VIEW, do_research);
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000586
587 sc_init_one(&main_list, NANO_NO_KEY, N_("Copy Text"),
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000588 IFHELP(nano_copy_msg, FALSE), NANO_COPY_KEY, NANO_NO_KEY,
David Lawrence Ramseycf1879b2006-04-27 23:39:49 +0000589 NANO_COPY_ALTKEY, NOVIEW, do_copy_text);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000590
591 sc_init_one(&main_list, NANO_NO_KEY, N_("Indent Text"),
592 IFHELP(nano_indentmarked_msg, FALSE), NANO_INDENTMARKED_KEY,
David Lawrence Ramseyf5d6d992006-05-12 12:37:53 +0000593 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_indent_marked_void);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000594
595 sc_init_one(&main_list, NANO_NO_KEY, N_("Unindent Text"),
596 IFHELP(nano_unindentmarked_msg, TRUE), NANO_UNINDENTMARKED_KEY,
David Lawrence Ramseyf5d6d992006-05-12 12:37:53 +0000597 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_unindent_marked_void);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000598#endif
599
600 sc_init_one(&main_list, NANO_FORWARD_KEY, N_("Forward"),
601 IFHELP(nano_forward_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
602 NANO_NO_KEY, VIEW, do_right);
603
604 sc_init_one(&main_list, NANO_BACK_KEY, N_("Back"),
605 IFHELP(nano_back_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
606 NANO_NO_KEY, VIEW, do_left);
607
608#ifndef NANO_TINY
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000609 sc_init_one(&main_list, NANO_NEXTWORD_KEY, N_("Next Word"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000610 IFHELP(nano_nextword_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramseye010edd2005-06-12 22:31:03 +0000611 NANO_NO_KEY, VIEW, do_next_word_void);
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000612
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000613 sc_init_one(&main_list, NANO_NO_KEY, N_("Prev Word"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000614 IFHELP(nano_prevword_msg, FALSE), NANO_PREVWORD_KEY,
615 NANO_NO_KEY, NANO_NO_KEY, VIEW, do_prev_word_void);
Chris Allegretta8d990b52001-09-22 22:14:25 +0000616#endif
David Lawrence Ramseye0497062003-08-23 21:11:06 +0000617
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000618 sc_init_one(&main_list, NANO_PREVLINE_KEY, N_("Prev Line"),
619 IFHELP(nano_prevline_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
620 NANO_NO_KEY, VIEW, do_up);
621
622 sc_init_one(&main_list, NANO_NEXTLINE_KEY, N_("Next Line"),
623 IFHELP(nano_nextline_msg, TRUE), NANO_NO_KEY, NANO_NO_KEY,
624 NANO_NO_KEY, VIEW, do_down);
625
626 sc_init_one(&main_list, NANO_HOME_KEY, N_("Home"),
627 IFHELP(nano_home_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
628 NANO_NO_KEY, VIEW, do_home);
629
630 sc_init_one(&main_list, NANO_END_KEY, N_("End"),
David Lawrence Ramseybdf84dd2006-04-22 19:52:27 +0000631 IFHELP(nano_end_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000632 NANO_NO_KEY, VIEW, do_end);
633
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000634#ifndef DISABLE_JUSTIFY
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000635 sc_init_one(&main_list, NANO_NO_KEY, beg_of_par_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000636 IFHELP(nano_parabegin_msg, FALSE), NANO_PARABEGIN_ALTKEY,
637 NANO_NO_KEY, NANO_PARABEGIN_ALTKEY2, VIEW, do_para_begin_void);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000638
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000639 sc_init_one(&main_list, NANO_NO_KEY, end_of_par_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000640 IFHELP(nano_paraend_msg, FALSE), NANO_PARAEND_ALTKEY,
641 NANO_NO_KEY, NANO_PARAEND_ALTKEY2, VIEW, do_para_end_void);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000642#endif
David Lawrence Ramseye0497062003-08-23 21:11:06 +0000643
David Lawrence Ramseydf453652006-04-21 02:05:09 +0000644 sc_init_one(&main_list, NANO_NO_KEY, first_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000645 IFHELP(nano_firstline_msg, FALSE), NANO_FIRSTLINE_ALTKEY,
646 NANO_NO_KEY, NANO_FIRSTLINE_ALTKEY2, VIEW, do_first_line);
David Lawrence Ramseydf453652006-04-21 02:05:09 +0000647
648 sc_init_one(&main_list, NANO_NO_KEY, last_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000649 IFHELP(nano_lastline_msg, TRUE), NANO_LASTLINE_ALTKEY,
650 NANO_NO_KEY, NANO_LASTLINE_ALTKEY2, VIEW, do_last_line);
651
652#ifndef NANO_TINY
David Lawrence Ramseyf5d6d992006-05-12 12:37:53 +0000653 sc_init_one(&main_list, NANO_NO_KEY, N_("Find Other Bracket"),
654 IFHELP(nano_bracket_msg, FALSE), NANO_BRACKET_KEY, NANO_NO_KEY,
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000655 NANO_NO_KEY, VIEW, do_find_bracket);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000656
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000657 sc_init_one(&main_list, NANO_NO_KEY, N_("Scroll Up"),
658 IFHELP(nano_scrollup_msg, FALSE), NANO_SCROLLUP_KEY,
659 NANO_NO_KEY, NANO_SCROLLUP_ALTKEY, VIEW, do_scroll_up);
660
661 sc_init_one(&main_list, NANO_NO_KEY, N_("Scroll Down"),
662 IFHELP(nano_scrolldown_msg, TRUE), NANO_SCROLLDOWN_KEY,
663 NANO_NO_KEY, NANO_SCROLLDOWN_ALTKEY, VIEW, do_scroll_down);
664#endif
David Lawrence Ramseydf453652006-04-21 02:05:09 +0000665
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000666#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000667 sc_init_one(&main_list, NANO_NO_KEY, N_("Previous File"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000668 IFHELP(nano_prevfile_msg, FALSE), NANO_PREVFILE_KEY,
669 NANO_NO_KEY, NANO_PREVFILE_ALTKEY, VIEW,
670 switch_to_prev_buffer_void);
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000671
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000672 sc_init_one(&main_list, NANO_NO_KEY, N_("Next File"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000673 IFHELP(nano_nextfile_msg, TRUE), NANO_NEXTFILE_KEY, NANO_NO_KEY,
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000674 NANO_NEXTFILE_ALTKEY, VIEW, switch_to_next_buffer_void);
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000675#endif
Chris Allegrettab3655b42001-10-22 03:15:31 +0000676
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000677 sc_init_one(&main_list, NANO_NO_KEY, N_("Verbatim Input"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000678 IFHELP(nano_verbatim_msg, FALSE), NANO_VERBATIM_KEY,
679 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_verbatim_input);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000680
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000681 sc_init_one(&main_list, NANO_TAB_KEY, N_("Tab"),
682 IFHELP(nano_tab_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
683 NANO_NO_KEY, NOVIEW, do_tab);
684
685 sc_init_one(&main_list, NANO_ENTER_KEY, N_("Enter"),
686 IFHELP(nano_enter_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
687 NANO_NO_KEY, NOVIEW, do_enter);
688
689 sc_init_one(&main_list, NANO_DELETE_KEY, N_("Delete"),
690 IFHELP(nano_delete_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
691 NANO_NO_KEY, NOVIEW, do_delete);
692
David Lawrence Ramseybf487982006-04-24 20:50:52 +0000693 sc_init_one(&main_list, NANO_BACKSPACE_KEY, N_("Backspace")
694#ifndef NANO_TINY
695 , IFHELP(nano_backspace_msg, FALSE)
696#else
697 , IFHELP(nano_backspace_msg, TRUE)
698#endif
David Lawrence Ramseyf1e56272006-05-22 18:28:20 +0000699 , NANO_NO_KEY, NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_backspace);
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000700
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +0000701#ifndef NANO_TINY
702 sc_init_one(&main_list, NANO_NO_KEY, cut_till_end_msg,
703 IFHELP(nano_cut_till_end_msg, TRUE), NANO_CUTTILLEND_ALTKEY,
704 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_cut_till_end);
705#endif
706
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000707#ifndef DISABLE_JUSTIFY
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000708 sc_init_one(&main_list, NANO_NO_KEY, fulljstify_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000709 IFHELP(nano_fulljustify_msg, FALSE), NANO_FULLJUSTIFY_ALTKEY,
David Lawrence Ramsey4b4b6082004-11-01 22:54:40 +0000710 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000711#endif
712
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000713#ifndef NANO_TINY
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000714 sc_init_one(&main_list, NANO_NO_KEY, N_("Word Count"),
715 IFHELP(nano_wordcount_msg, FALSE), NANO_WORDCOUNT_KEY,
716 NANO_NO_KEY, NANO_NO_KEY, VIEW, do_wordlinechar_count);
717#endif
David Lawrence Ramseyefb4b0a2006-04-19 14:09:01 +0000718
David Lawrence Ramsey97415df2006-04-22 20:03:05 +0000719 sc_init_one(&main_list, NANO_REFRESH_KEY, refresh_msg
David Lawrence Ramsey03252d42006-04-22 20:00:23 +0000720#ifndef NANO_TINY
David Lawrence Ramsey5a2dbe22006-04-23 14:53:26 +0000721 , IFHELP(nano_refresh_msg, TRUE)
David Lawrence Ramsey03252d42006-04-22 20:00:23 +0000722#else
David Lawrence Ramsey5a2dbe22006-04-23 14:53:26 +0000723 , IFHELP(nano_refresh_msg, FALSE)
David Lawrence Ramsey03252d42006-04-22 20:00:23 +0000724#endif
725 , NANO_NO_KEY, NANO_NO_KEY, NANO_NO_KEY, VIEW, total_refresh);
David Lawrence Ramseya593f532003-11-28 19:47:42 +0000726
Chris Allegrettadab017e2002-04-23 10:56:06 +0000727 free_shortcutage(&whereis_list);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +0000728
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000729 sc_init_one(&whereis_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000730 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
731 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000732#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000733 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000734#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000735 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000736#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000737 );
Chris Allegrettab3655b42001-10-22 03:15:31 +0000738
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000739 sc_init_one(&whereis_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000740 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
741 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettab3655b42001-10-22 03:15:31 +0000742
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000743 sc_init_one(&whereis_list, NANO_FIRSTLINE_KEY, first_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000744 IFHELP(nano_firstline_msg, FALSE), NANO_FIRSTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000745 NANO_FIRSTLINE_FKEY, NANO_FIRSTLINE_ALTKEY2, VIEW,
746 do_first_line);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000747
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000748 sc_init_one(&whereis_list, NANO_LASTLINE_KEY, last_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000749 IFHELP(nano_lastline_msg, FALSE), NANO_LASTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000750 NANO_LASTLINE_FKEY, NANO_LASTLINE_ALTKEY2, VIEW, do_last_line);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000751
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000752 sc_init_one(&whereis_list, NANO_TOOTHERSEARCH_KEY, replace_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000753 IFHELP(nano_replace_msg, FALSE), NANO_NO_KEY, NANO_REPLACE_FKEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000754 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000755
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000756 sc_init_one(&whereis_list, NANO_TOGOTOLINE_KEY, go_to_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000757 IFHELP(nano_gotoline_msg, FALSE), NANO_NO_KEY,
758 NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW, NULL);
Chris Allegretta8c2b40f2000-06-29 01:30:04 +0000759
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +0000760#ifndef DISABLE_JUSTIFY
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000761 sc_init_one(&whereis_list, NANO_PARABEGIN_KEY, beg_of_par_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000762 IFHELP(nano_parabegin_msg, FALSE), NANO_PARABEGIN_ALTKEY,
763 NANO_NO_KEY, NANO_PARABEGIN_ALTKEY2, VIEW, do_para_begin_void);
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +0000764
David Lawrence Ramseydb6015c2004-09-11 21:41:13 +0000765 sc_init_one(&whereis_list, NANO_PARAEND_KEY, end_of_par_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000766 IFHELP(nano_paraend_msg, FALSE), NANO_PARAEND_ALTKEY,
767 NANO_NO_KEY, NANO_PARAEND_ALTKEY2, VIEW, do_para_end_void);
David Lawrence Ramsey8faf3052003-09-04 20:25:29 +0000768#endif
769
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000770#ifndef NANO_TINY
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000771 sc_init_one(&whereis_list, NANO_NO_KEY, case_sens_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000772 IFHELP(nano_case_msg, FALSE), TOGGLE_CASE_KEY, NANO_NO_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000773 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta658399a2001-06-14 02:54:22 +0000774
David Lawrence Ramseyf3ecffd2005-06-16 18:48:30 +0000775 sc_init_one(&whereis_list, NANO_NO_KEY, backwards_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000776 IFHELP(nano_reverse_msg, FALSE), TOGGLE_BACKWARDS_KEY,
777 NANO_NO_KEY, NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000778#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000779
Chris Allegretta658399a2001-06-14 02:54:22 +0000780#ifdef HAVE_REGEX_H
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000781 sc_init_one(&whereis_list, NANO_NO_KEY, regexp_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000782 IFHELP(nano_regexp_msg, FALSE), NANO_REGEXP_KEY, NANO_NO_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000783 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta658399a2001-06-14 02:54:22 +0000784#endif
Chris Allegretta5beed502003-01-05 20:41:21 +0000785
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000786#ifndef NANO_TINY
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000787 sc_init_one(&whereis_list, NANO_PREVLINE_KEY, prev_history_msg,
788 IFHELP(nano_prev_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
789 NANO_NO_KEY, VIEW, NULL);
790
791 sc_init_one(&whereis_list, NANO_NEXTLINE_KEY, next_history_msg,
792 IFHELP(nano_next_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000793 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000794
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000795 sc_init_one(&whereis_list, NANO_CUTTILLEND_KEY, cut_till_end_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000796 IFHELP(nano_cut_till_end_msg, FALSE), NANO_CUTTILLEND_ALTKEY,
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000797 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_cut_till_end);
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000798#endif
David Lawrence Ramsey02085d72004-11-07 16:04:18 +0000799
800#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey02085d72004-11-07 16:04:18 +0000801 sc_init_one(&whereis_list, NANO_FULLJUSTIFY_KEY, fulljstify_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000802 IFHELP(nano_fulljustify_msg, FALSE), NANO_FULLJUSTIFY_ALTKEY,
David Lawrence Ramsey02085d72004-11-07 16:04:18 +0000803 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
804#endif
Chris Allegretta5f36c372001-07-16 00:48:53 +0000805
Chris Allegrettadab017e2002-04-23 10:56:06 +0000806 free_shortcutage(&replace_list);
Chris Allegrettab3655b42001-10-22 03:15:31 +0000807
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000808 sc_init_one(&replace_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000809 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
810 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000811#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000812 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000813#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000814 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000815#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000816 );
Chris Allegrettab3655b42001-10-22 03:15:31 +0000817
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000818 sc_init_one(&replace_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000819 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
820 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta5f36c372001-07-16 00:48:53 +0000821
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000822 sc_init_one(&replace_list, NANO_FIRSTLINE_KEY, first_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000823 IFHELP(nano_firstline_msg, FALSE), NANO_FIRSTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000824 NANO_FIRSTLINE_FKEY, NANO_FIRSTLINE_ALTKEY2, VIEW,
825 do_first_line);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000826
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000827 sc_init_one(&replace_list, NANO_LASTLINE_KEY, last_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000828 IFHELP(nano_lastline_msg, FALSE), NANO_LASTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000829 NANO_LASTLINE_FKEY, NANO_LASTLINE_ALTKEY2, VIEW, do_last_line);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000830
David Lawrence Ramseye328ae92006-05-25 04:02:50 +0000831 /* TRANSLATORS: Try to keep this at most 12 characters. */
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000832 sc_init_one(&replace_list, NANO_TOOTHERSEARCH_KEY, N_("No Replace"),
David Lawrence Ramseybdf84dd2006-04-22 19:52:27 +0000833 IFHELP(nano_whereis_msg, FALSE), NANO_NO_KEY, NANO_REPLACE_FKEY,
834 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000835
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000836#ifndef NANO_TINY
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000837 sc_init_one(&replace_list, NANO_NO_KEY, case_sens_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000838 IFHELP(nano_case_msg, FALSE), TOGGLE_CASE_KEY, NANO_NO_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000839 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta658399a2001-06-14 02:54:22 +0000840
David Lawrence Ramseyf3ecffd2005-06-16 18:48:30 +0000841 sc_init_one(&replace_list, NANO_NO_KEY, backwards_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000842 IFHELP(nano_reverse_msg, FALSE), TOGGLE_BACKWARDS_KEY,
843 NANO_NO_KEY, NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000844#endif
Chris Allegretta105da332000-10-31 05:10:10 +0000845
Chris Allegretta658399a2001-06-14 02:54:22 +0000846#ifdef HAVE_REGEX_H
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000847 sc_init_one(&replace_list, NANO_NO_KEY, regexp_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000848 IFHELP(nano_regexp_msg, FALSE), NANO_REGEXP_KEY, NANO_NO_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000849 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta658399a2001-06-14 02:54:22 +0000850#endif
Chris Allegretta5beed502003-01-05 20:41:21 +0000851
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000852#ifndef NANO_TINY
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000853 sc_init_one(&replace_list, NANO_PREVLINE_KEY, prev_history_msg,
854 IFHELP(nano_prev_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
855 NANO_NO_KEY, VIEW, NULL);
856
857 sc_init_one(&replace_list, NANO_NEXTLINE_KEY, next_history_msg,
858 IFHELP(nano_next_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000859 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseyc10d8ff2005-06-03 20:51:39 +0000860#endif
Chris Allegretta5f36c372001-07-16 00:48:53 +0000861
Chris Allegrettadab017e2002-04-23 10:56:06 +0000862 free_shortcutage(&replace_list_2);
Chris Allegrettab3655b42001-10-22 03:15:31 +0000863
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000864 sc_init_one(&replace_list_2, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000865 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
866 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000867#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000868 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000869#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000870 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000871#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000872 );
Chris Allegrettab3655b42001-10-22 03:15:31 +0000873
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000874 sc_init_one(&replace_list_2, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000875 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
876 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta105da332000-10-31 05:10:10 +0000877
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000878 sc_init_one(&replace_list_2, NANO_FIRSTLINE_KEY, first_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000879 IFHELP(nano_firstline_msg, FALSE), NANO_FIRSTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000880 NANO_FIRSTLINE_FKEY, NANO_FIRSTLINE_ALTKEY2, VIEW,
881 do_first_line);
Chris Allegretta105da332000-10-31 05:10:10 +0000882
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000883 sc_init_one(&replace_list_2, NANO_LASTLINE_KEY, last_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000884 IFHELP(nano_lastline_msg, FALSE), NANO_LASTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000885 NANO_LASTLINE_FKEY, NANO_LASTLINE_ALTKEY2, VIEW, do_last_line);
Chris Allegretta105da332000-10-31 05:10:10 +0000886
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000887#ifndef NANO_TINY
David Lawrence Ramsey305d8892006-05-24 19:48:03 +0000888 sc_init_one(&replace_list_2, NANO_PREVLINE_KEY, prev_history_msg,
889 IFHELP(nano_prev_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
890 NANO_NO_KEY, VIEW, NULL);
891
892 sc_init_one(&replace_list_2, NANO_NEXTLINE_KEY, next_history_msg,
893 IFHELP(nano_next_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000894 NANO_NO_KEY, VIEW, NULL);
Chris Allegretta5beed502003-01-05 20:41:21 +0000895#endif
896
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000897 free_shortcutage(&gotoline_list);
Chris Allegrettab3655b42001-10-22 03:15:31 +0000898
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000899 sc_init_one(&gotoline_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000900 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
901 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000902#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000903 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000904#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000905 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000906#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000907 );
Chris Allegrettab3655b42001-10-22 03:15:31 +0000908
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000909 sc_init_one(&gotoline_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000910 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
911 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000912
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000913 sc_init_one(&gotoline_list, NANO_FIRSTLINE_KEY, first_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000914 IFHELP(nano_firstline_msg, FALSE), NANO_FIRSTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000915 NANO_FIRSTLINE_FKEY, NANO_FIRSTLINE_ALTKEY2, VIEW,
916 do_first_line);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000917
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000918 sc_init_one(&gotoline_list, NANO_LASTLINE_KEY, last_line_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000919 IFHELP(nano_lastline_msg, FALSE), NANO_LASTLINE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +0000920 NANO_LASTLINE_FKEY, NANO_LASTLINE_ALTKEY2, VIEW, do_last_line);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000921
David Lawrence Ramsey4b4b6082004-11-01 22:54:40 +0000922 sc_init_one(&gotoline_list, NANO_TOOTHERWHEREIS_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000923 N_("Go To Text"), IFHELP(nano_whereis_msg, FALSE), NANO_NO_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +0000924 NANO_NO_KEY, NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +0000925
Chris Allegrettadab017e2002-04-23 10:56:06 +0000926 free_shortcutage(&writefile_list);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000927
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000928 sc_init_one(&writefile_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000929 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
930 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000931#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000932 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000933#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000934 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000935#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +0000936 );
Chris Allegrettab3655b42001-10-22 03:15:31 +0000937
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000938 sc_init_one(&writefile_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000939 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
940 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000941
Rocco Corsiaf5c3022001-01-12 07:51:05 +0000942#ifndef DISABLE_BROWSER
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000943 /* If we're using restricted mode, the file browser is disabled.
944 * It's useless since inserting files is disabled. */
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000945
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000946 if (!ISSET(RESTRICTED))
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000947 sc_init_one(&writefile_list, NANO_TOFILES_KEY, to_files_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000948 IFHELP(nano_tofiles_msg, FALSE), NANO_NO_KEY,
949 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegrettaf4b96012001-01-03 07:11:47 +0000950#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000951
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000952#ifndef NANO_TINY
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +0000953 /* If we're using restricted mode, the DOS format, Mac format,
954 * append, prepend, and backup toggles are disabled. The first and
955 * second are useless since inserting files is disabled, the third
956 * and fourth are disabled because they allow writing to files not
957 * specified on the command line, and the fifth is useless since
958 * backups are disabled. */
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000959
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000960 if (!ISSET(RESTRICTED))
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000961 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000962 sc_init_one(&writefile_list, NANO_NO_KEY, N_("DOS Format"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000963 IFHELP(nano_dos_msg, FALSE), TOGGLE_DOS_KEY,
964 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000965
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000966 if (!ISSET(RESTRICTED))
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000967 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000968 sc_init_one(&writefile_list, NANO_NO_KEY, N_("Mac Format"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000969 IFHELP(nano_mac_msg, FALSE), TOGGLE_MAC_KEY,
970 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000971#endif
972
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000973 if (!ISSET(RESTRICTED))
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000974 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000975 sc_init_one(&writefile_list, NANO_NO_KEY, N_("Append"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000976 IFHELP(nano_append_msg, FALSE), NANO_APPEND_KEY,
977 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegrettacc197ef2001-05-29 04:21:44 +0000978
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000979 if (!ISSET(RESTRICTED))
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000980 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000981 sc_init_one(&writefile_list, NANO_NO_KEY, N_("Prepend"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000982 IFHELP(nano_prepend_msg, FALSE), NANO_PREPEND_KEY,
983 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegretta0e9b7aa2002-04-16 03:15:47 +0000984
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000985#ifndef NANO_TINY
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000986 if (!ISSET(RESTRICTED))
David Lawrence Ramseycde90392006-04-09 18:27:42 +0000987 /* TRANSLATORS: Try to keep this at most 16 characters. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000988 sc_init_one(&writefile_list, NANO_NO_KEY, N_("Backup File"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000989 IFHELP(nano_backup_msg, FALSE), TOGGLE_BACKUP_KEY,
990 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000991#endif
992
Chris Allegrettadab017e2002-04-23 10:56:06 +0000993 free_shortcutage(&insertfile_list);
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000994
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000995 sc_init_one(&insertfile_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +0000996 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
997 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +0000998#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000999 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001000#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001001 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001002#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001003 );
Chris Allegrettab3655b42001-10-22 03:15:31 +00001004
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001005 sc_init_one(&insertfile_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001006 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1007 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001008
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001009#ifndef DISABLE_BROWSER
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00001010 /* If we're using restricted mode, the file browser is disabled.
1011 * It's useless since inserting files is disabled. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001012 if (!ISSET(RESTRICTED))
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001013 sc_init_one(&insertfile_list, NANO_TOFILES_KEY, to_files_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001014 IFHELP(nano_tofiles_msg, FALSE), NANO_NO_KEY,
1015 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001016#endif
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001017
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001018#ifndef NANO_TINY
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00001019 /* If we're using restricted mode, command execution is disabled.
1020 * It's useless since inserting files is disabled. */
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001021
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001022 if (!ISSET(RESTRICTED))
David Lawrence Ramsey4b4b6082004-11-01 22:54:40 +00001023 sc_init_one(&insertfile_list, NANO_TOOTHERINSERT_KEY,
David Lawrence Ramseyed467e52006-07-03 18:40:53 +00001024 /* TRANSLATORS: Try to keep this at most 22
1025 * characters. */
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001026 N_("Execute Command"), IFHELP(nano_execute_msg, FALSE),
1027 NANO_NO_KEY, NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
David Lawrence Ramseya593f532003-11-28 19:47:42 +00001028
Chris Allegrettaf7c68112002-09-03 22:58:40 +00001029#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey32e3b882004-05-29 01:20:17 +00001030 /* If we're using restricted mode, the multibuffer toggle is
1031 * disabled. It's useless since inserting files is disabled. */
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001032 if (!ISSET(RESTRICTED))
David Lawrence Ramsey04a8d1c2004-09-28 22:14:58 +00001033 sc_init_one(&insertfile_list, NANO_NO_KEY, new_buffer_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001034 IFHELP(nano_multibuffer_msg, FALSE),
1035 TOGGLE_MULTIBUFFER_KEY, NANO_NO_KEY, NANO_NO_KEY,
1036 NOVIEW, NULL);
Chris Allegrettaf7c68112002-09-03 22:58:40 +00001037#endif
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +00001038#endif
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001039
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001040#ifndef NANO_TINY
Chris Allegrettadab017e2002-04-23 10:56:06 +00001041 free_shortcutage(&extcmd_list);
Chris Allegretta7162e3d2002-04-06 05:02:14 +00001042
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001043 sc_init_one(&extcmd_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001044 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
1045 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001046#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001047 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001048#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001049 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001050#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001051 );
Chris Allegretta52c5a6e2002-03-21 05:07:28 +00001052
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001053 sc_init_one(&extcmd_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001054 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1055 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey04a8d1c2004-09-28 22:14:58 +00001056
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +00001057 sc_init_one(&extcmd_list, NANO_TOOTHERINSERT_KEY, N_("Insert File"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001058 IFHELP(nano_insert_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +00001059 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +00001060
David Lawrence Ramsey47e82b12004-09-28 22:21:46 +00001061#ifdef ENABLE_MULTIBUFFER
David Lawrence Ramsey04a8d1c2004-09-28 22:14:58 +00001062 sc_init_one(&extcmd_list, NANO_NO_KEY, new_buffer_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001063 IFHELP(nano_multibuffer_msg, FALSE), TOGGLE_MULTIBUFFER_KEY,
David Lawrence Ramsey35e97132005-01-08 06:04:19 +00001064 NANO_NO_KEY, NANO_NO_KEY, NOVIEW, NULL);
Chris Allegretta52c5a6e2002-03-21 05:07:28 +00001065#endif
David Lawrence Ramsey47e82b12004-09-28 22:21:46 +00001066#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00001067
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001068#ifndef DISABLE_HELP
1069 free_shortcutage(&help_list);
1070
1071 sc_init_one(&help_list, NANO_REFRESH_KEY, refresh_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001072 IFHELP(nano_refresh_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1073 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001074
1075 sc_init_one(&help_list, NANO_EXIT_KEY, exit_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001076 IFHELP(nano_exit_msg, FALSE), NANO_NO_KEY, NANO_EXIT_FKEY,
1077 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001078
1079 sc_init_one(&help_list, NANO_PREVPAGE_KEY, prev_page_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001080 IFHELP(nano_prevpage_msg, FALSE), NANO_NO_KEY,
1081 NANO_PREVPAGE_FKEY, NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001082
1083 sc_init_one(&help_list, NANO_NEXTPAGE_KEY, next_page_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001084 IFHELP(nano_nextpage_msg, FALSE), NANO_NO_KEY,
1085 NANO_NEXTPAGE_FKEY, NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001086
1087 sc_init_one(&help_list, NANO_PREVLINE_KEY, N_("Prev Line"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001088 IFHELP(nano_prevline_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001089 NANO_NO_KEY, VIEW, NULL);
1090
1091 sc_init_one(&help_list, NANO_NEXTLINE_KEY, N_("Next Line"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001092 IFHELP(nano_nextline_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001093 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey6e7d24d2006-05-06 02:26:18 +00001094
1095 sc_init_one(&help_list, NANO_NO_KEY, first_line_msg,
1096 IFHELP(nano_firstline_msg, FALSE), NANO_FIRSTLINE_ALTKEY,
1097 NANO_NO_KEY, NANO_FIRSTLINE_ALTKEY2, VIEW, NULL);
1098
1099 sc_init_one(&help_list, NANO_NO_KEY, last_line_msg,
1100 IFHELP(nano_lastline_msg, TRUE), NANO_LASTLINE_ALTKEY,
1101 NANO_NO_KEY, NANO_LASTLINE_ALTKEY2, VIEW, NULL);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001102#endif
1103
1104#ifndef DISABLE_SPELLER
1105 free_shortcutage(&spell_list);
1106
1107 sc_init_one(&spell_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001108 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
1109 NANO_NO_KEY, VIEW,
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001110#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001111 do_help_void
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001112#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001113 nano_disabled_msg
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001114#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001115 );
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001116
1117 sc_init_one(&spell_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001118 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1119 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001120#endif
1121
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001122#ifndef DISABLE_BROWSER
Chris Allegrettadab017e2002-04-23 10:56:06 +00001123 free_shortcutage(&browser_list);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001124
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001125 sc_init_one(&browser_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001126 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
1127 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettab3655b42001-10-22 03:15:31 +00001128
David Lawrence Ramsey8037fe02004-07-23 12:30:40 +00001129 sc_init_one(&browser_list, NANO_EXIT_KEY, exit_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001130 IFHELP(nano_exitbrowser_msg, FALSE), NANO_NO_KEY,
1131 NANO_EXIT_FKEY, NANO_NO_KEY, VIEW, NULL);
Chris Allegrettab3655b42001-10-22 03:15:31 +00001132
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001133 sc_init_one(&browser_list, NANO_WHEREIS_KEY, whereis_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001134 IFHELP(nano_whereis_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1135 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001136
1137 sc_init_one(&browser_list, NANO_NO_KEY, whereis_next_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001138 IFHELP(nano_whereis_next_msg, FALSE), NANO_WHEREIS_NEXT_KEY,
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001139 NANO_WHEREIS_NEXT_FKEY, NANO_NO_KEY, VIEW, NULL);
1140
David Lawrence Ramsey0ec909c2006-05-06 15:07:26 +00001141 sc_init_one(&browser_list, NANO_PREVPAGE_KEY, prev_page_msg,
1142 IFHELP(nano_prevpage_msg, FALSE), NANO_NO_KEY,
1143 NANO_PREVPAGE_FKEY, NANO_NO_KEY, VIEW, NULL);
1144
1145 sc_init_one(&browser_list, NANO_NEXTPAGE_KEY, next_page_msg,
1146 IFHELP(nano_nextpage_msg, FALSE), NANO_NO_KEY,
1147 NANO_NEXTPAGE_FKEY, NANO_NO_KEY, VIEW, NULL);
1148
1149 sc_init_one(&browser_list, NANO_NO_KEY, first_file_msg,
1150 IFHELP(nano_firstfile_msg, FALSE), NANO_FIRSTFILE_ALTKEY,
1151 NANO_NO_KEY, NANO_FIRSTFILE_ALTKEY2, VIEW, NULL);
1152
1153 sc_init_one(&browser_list, NANO_NO_KEY, last_file_msg,
1154 IFHELP(nano_lastfile_msg, FALSE), NANO_LASTFILE_ALTKEY,
1155 NANO_NO_KEY, NANO_LASTFILE_ALTKEY2, VIEW, NULL);
1156
David Lawrence Ramsey602199d2006-05-06 15:31:32 +00001157 /* TRANSLATORS: Try to keep this at most 12 characters. */
David Lawrence Ramsey0ec909c2006-05-06 15:07:26 +00001158 sc_init_one(&browser_list, NANO_GOTODIR_KEY, N_("Go To Dir"),
1159 IFHELP(nano_gotodir_msg, FALSE), NANO_GOTODIR_ALTKEY,
1160 NANO_GOTODIR_FKEY, NANO_NO_KEY, VIEW, NULL);
Rocco Corsi12f294c2001-04-14 06:50:24 +00001161
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001162 free_shortcutage(&whereis_file_list);
1163
1164 sc_init_one(&whereis_file_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001165 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
1166 NANO_NO_KEY, VIEW,
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001167#ifndef DISABLE_HELP
1168 do_browser_help
1169#else
1170 nano_disabled_msg
1171#endif
1172 );
1173
1174 sc_init_one(&whereis_file_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001175 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1176 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001177
1178 sc_init_one(&whereis_file_list, NANO_FIRSTFILE_KEY, first_file_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001179 IFHELP(nano_firstfile_msg, FALSE), NANO_FIRSTFILE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +00001180 NANO_FIRSTFILE_FKEY, NANO_FIRSTFILE_ALTKEY2, VIEW,
1181 do_first_file);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001182
1183 sc_init_one(&whereis_file_list, NANO_LASTFILE_KEY, last_file_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001184 IFHELP(nano_lastfile_msg, FALSE), NANO_LASTFILE_ALTKEY,
David Lawrence Ramsey5f0a58b2006-04-21 02:24:34 +00001185 NANO_LASTFILE_FKEY, NANO_LASTFILE_ALTKEY2, VIEW, do_last_file);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001186
1187#ifndef NANO_SMALL
1188 sc_init_one(&whereis_file_list, NANO_NO_KEY, case_sens_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001189 IFHELP(nano_case_msg, FALSE), TOGGLE_CASE_KEY, NANO_NO_KEY,
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001190 NANO_NO_KEY, VIEW, NULL);
1191
1192 sc_init_one(&whereis_file_list, NANO_NO_KEY, backwards_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001193 IFHELP(nano_reverse_msg, FALSE), TOGGLE_BACKWARDS_KEY,
1194 NANO_NO_KEY, NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001195#endif
1196
1197#ifdef HAVE_REGEX_H
1198 sc_init_one(&whereis_file_list, NANO_NO_KEY, regexp_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001199 IFHELP(nano_regexp_msg, FALSE), NANO_REGEXP_KEY, NANO_NO_KEY,
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001200 NANO_NO_KEY, VIEW, NULL);
1201#endif
1202
1203#ifndef NANO_SMALL
David Lawrence Ramsey305d8892006-05-24 19:48:03 +00001204 sc_init_one(&whereis_file_list, NANO_PREVLINE_KEY, prev_history_msg,
1205 IFHELP(nano_prev_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1206 NANO_NO_KEY, VIEW, NULL);
1207
1208 sc_init_one(&whereis_file_list, NANO_NEXTLINE_KEY, next_history_msg,
1209 IFHELP(nano_next_history_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001210 NANO_NO_KEY, VIEW, NULL);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001211#endif
1212
Chris Allegrettadab017e2002-04-23 10:56:06 +00001213 free_shortcutage(&gotodir_list);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001214
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001215 sc_init_one(&gotodir_list, NANO_HELP_KEY, get_help_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001216 IFHELP(nano_help_msg, FALSE), NANO_NO_KEY, NANO_HELP_FKEY,
1217 NANO_NO_KEY, VIEW,
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001218#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +00001219 do_help_void
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001220#else
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001221 nano_disabled_msg
David Lawrence Ramseyd893fa92004-04-30 04:49:02 +00001222#endif
David Lawrence Ramsey017dde22006-03-24 05:28:03 +00001223 );
Chris Allegrettaf4b96012001-01-03 07:11:47 +00001224
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001225 sc_init_one(&gotodir_list, NANO_CANCEL_KEY, cancel_msg,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001226 IFHELP(nano_cancel_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
1227 NANO_NO_KEY, VIEW, NULL);
Chris Allegrettaf4b96012001-01-03 07:11:47 +00001228#endif
1229
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001230 currshortcut = main_list;
David Lawrence Ramsey35e97132005-01-08 06:04:19 +00001231
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001232#ifndef NANO_TINY
Chris Allegrettadab017e2002-04-23 10:56:06 +00001233 toggle_init();
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001234#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +00001235}
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001236
David Lawrence Ramseye6757b92006-04-19 13:36:56 +00001237/* Free the given shortcut. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001238void free_shortcutage(shortcut **shortcutage)
1239{
1240 assert(shortcutage != NULL);
David Lawrence Ramsey193b0e52005-06-06 18:41:17 +00001241
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001242 while (*shortcutage != NULL) {
1243 shortcut *ps = *shortcutage;
1244 *shortcutage = (*shortcutage)->next;
1245 free(ps);
1246 }
1247}
1248
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001249#ifndef NANO_TINY
David Lawrence Ramseye6757b92006-04-19 13:36:56 +00001250/* Add a new toggle to the end of the global toggle list. */
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001251void toggle_init_one(int val, const char *desc, bool blank_after, long
1252 flag)
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001253{
1254 toggle *u;
1255
1256 if (toggles == NULL) {
David Lawrence Ramsey94b975c2004-07-20 12:57:34 +00001257 toggles = (toggle *)nmalloc(sizeof(toggle));
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001258 u = toggles;
1259 } else {
1260 for (u = toggles; u->next != NULL; u = u->next)
1261 ;
David Lawrence Ramsey94b975c2004-07-20 12:57:34 +00001262 u->next = (toggle *)nmalloc(sizeof(toggle));
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001263 u = u->next;
1264 }
1265
1266 u->val = val;
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001267 u->desc = (desc == NULL) ? "" : _(desc);
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001268 u->blank_after = blank_after;
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001269 u->flag = flag;
1270 u->next = NULL;
1271}
1272
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001273/* Initialize the global toggle list. */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001274void toggle_init(void)
1275{
1276 /* There is no need to reinitialize the toggles. They can't
1277 * change. */
1278 if (toggles != NULL)
1279 return;
1280
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001281 toggle_init_one(TOGGLE_NOHELP_KEY, N_("Help mode"), FALSE, NO_HELP);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001282
David Lawrence Ramsey8ff785c2006-04-19 23:13:44 +00001283 toggle_init_one(TOGGLE_CONST_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001284 N_("Constant cursor position display"), FALSE, CONST_UPDATE);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001285
1286 toggle_init_one(TOGGLE_MORESPACE_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001287 N_("Use of more space for editing"), FALSE, MORE_SPACE);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001288
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +00001289 toggle_init_one(TOGGLE_SMOOTH_KEY, N_("Smooth scrolling"),
1290#ifdef ENABLE_NANORC
1291 FALSE
1292#else
1293 TRUE
1294#endif
1295 , SMOOTH_SCROLL);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001296
1297#ifdef ENABLE_NANORC
1298 toggle_init_one(TOGGLE_WHITESPACE_KEY, N_("Whitespace display"),
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +00001299#ifdef ENABLE_COLOR
1300 FALSE
1301#else
1302 TRUE
1303#endif
1304 , WHITESPACE_DISPLAY);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001305#endif
1306
1307#ifdef ENABLE_COLOR
1308 toggle_init_one(TOGGLE_SYNTAX_KEY, N_("Color syntax highlighting"),
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001309 TRUE, NO_COLOR_SYNTAX);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001310#endif
1311
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001312 toggle_init_one(TOGGLE_SMARTHOME_KEY, N_("Smart home key"), FALSE,
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001313 SMART_HOME);
1314
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001315 toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"), FALSE,
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001316 AUTOINDENT);
1317
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001318 toggle_init_one(TOGGLE_CUTTOEND_KEY, N_("Cut to end"), FALSE,
1319 CUT_TO_END);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001320
1321#ifndef DISABLE_WRAPPING
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001322 toggle_init_one(TOGGLE_WRAP_KEY, N_("Long line wrapping"), FALSE,
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001323 NO_WRAP);
1324#endif
1325
1326 toggle_init_one(TOGGLE_TABSTOSPACES_KEY,
David Lawrence Ramsey2ca23562006-04-23 19:15:15 +00001327 N_("Conversion of typed tabs to spaces"),
1328#if defined(ENABLE_MULTIBUFFER) || !defined(DISABLE_MOUSE)
1329 !ISSET(RESTRICTED) ? TRUE : FALSE
1330#else
1331 FALSE
1332#endif
1333 , TABS_TO_SPACES);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001334
1335 /* If we're using restricted mode, the backup toggle is disabled.
1336 * It's useless since backups are disabled. */
1337 if (!ISSET(RESTRICTED))
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001338 toggle_init_one(TOGGLE_BACKUP_KEY, N_("Backup files"), FALSE,
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001339 BACKUP_FILE);
1340
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001341#ifdef ENABLE_MULTIBUFFER
1342 /* If we're using restricted mode, the multibuffer toggle is
1343 * disabled. It's useless since inserting files is disabled. */
1344 if (!ISSET(RESTRICTED))
David Lawrence Ramsey637b8bb2005-01-17 05:06:55 +00001345 toggle_init_one(TOGGLE_MULTIBUFFER_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001346 N_("Multiple file buffers"), FALSE, MULTIBUFFER);
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001347#endif
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001348
David Lawrence Ramsey6397b592006-04-20 22:36:10 +00001349#ifndef DISABLE_MOUSE
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001350 toggle_init_one(TOGGLE_MOUSE_KEY, N_("Mouse support"), FALSE,
1351 USE_MOUSE);
David Lawrence Ramsey6397b592006-04-20 22:36:10 +00001352#endif
1353
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001354 /* If we're using restricted mode, the DOS/Mac conversion toggle is
1355 * disabled. It's useless since inserting files is disabled. */
1356 if (!ISSET(RESTRICTED))
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001357 toggle_init_one(TOGGLE_NOCONVERT_KEY,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001358 N_("No conversion from DOS/Mac format"), FALSE,
1359 NO_CONVERT);
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001360
David Lawrence Ramseye313f5b2006-04-20 22:29:02 +00001361 /* If we're using restricted mode, the suspend toggle is disabled.
1362 * It's useless since suspending is disabled. */
David Lawrence Ramsey74835712004-12-04 17:41:52 +00001363 if (!ISSET(RESTRICTED))
David Lawrence Ramsey69e1ce52006-06-08 02:37:45 +00001364 toggle_init_one(TOGGLE_SUSPEND_KEY, N_("Suspension"), FALSE,
David Lawrence Ramsey1df3e2d2006-04-22 19:45:26 +00001365 SUSPEND);
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001366}
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001367#endif /* !NANO_TINY */
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001368
David Lawrence Ramseye6757b92006-04-19 13:36:56 +00001369#ifdef DEBUG
1370/* This function is used to gracefully return all the memory we've used.
1371 * It should be called just before calling exit(). Practically, the
Chris Allegretta6232d662002-05-12 19:52:15 +00001372 * only effect is to cause a segmentation fault if the various data
1373 * structures got bolloxed earlier. Thus, we don't bother having this
Chris Allegretta6df90f52002-07-19 01:08:59 +00001374 * function unless debugging is turned on. */
Chris Allegretta6df90f52002-07-19 01:08:59 +00001375void thanks_for_all_the_fish(void)
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001376{
David Lawrence Ramsey576bf332004-07-12 03:10:30 +00001377 delwin(topwin);
1378 delwin(edit);
1379 delwin(bottomwin);
1380
Chris Allegretta7662c862003-01-13 01:35:15 +00001381#ifndef DISABLE_JUSTIFY
1382 if (quotestr != NULL)
1383 free(quotestr);
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00001384#ifdef HAVE_REGEX_H
1385 regfree(&quotereg);
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001386 if (quoteerr != NULL)
1387 free(quoteerr);
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +00001388#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00001389#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001390#ifndef NANO_TINY
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +00001391 if (backup_dir != NULL)
1392 free(backup_dir);
1393#endif
Chris Allegretta2598c662002-03-28 01:59:34 +00001394#ifndef DISABLE_OPERATINGDIR
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001395 if (operating_dir != NULL)
1396 free(operating_dir);
1397 if (full_operating_dir != NULL)
1398 free(full_operating_dir);
1399#endif
1400 if (last_search != NULL)
1401 free(last_search);
1402 if (last_replace != NULL)
1403 free(last_replace);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001404#ifndef DISABLE_SPELLER
1405 if (alt_speller != NULL)
1406 free(alt_speller);
1407#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001408 if (answer != NULL)
1409 free(answer);
1410 if (cutbuffer != NULL)
Chris Allegretta7662c862003-01-13 01:35:15 +00001411 free_filestruct(cutbuffer);
David Lawrence Ramsey93c84052004-11-23 04:08:28 +00001412#ifndef DISABLE_JUSTIFY
1413 if (jusbuffer != NULL)
1414 free_filestruct(jusbuffer);
1415#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001416 free_shortcutage(&main_list);
1417 free_shortcutage(&whereis_list);
1418 free_shortcutage(&replace_list);
1419 free_shortcutage(&replace_list_2);
David Lawrence Ramseye5d8f322004-09-30 22:07:21 +00001420 free_shortcutage(&gotoline_list);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001421 free_shortcutage(&writefile_list);
1422 free_shortcutage(&insertfile_list);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +00001423#ifndef NANO_TINY
1424 free_shortcutage(&extcmd_list);
1425#endif
Chris Allegretta7662c862003-01-13 01:35:15 +00001426#ifndef DISABLE_HELP
Chris Allegretta6df90f52002-07-19 01:08:59 +00001427 free_shortcutage(&help_list);
Chris Allegretta7662c862003-01-13 01:35:15 +00001428#endif
1429#ifndef DISABLE_SPELLER
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001430 free_shortcutage(&spell_list);
Chris Allegretta7662c862003-01-13 01:35:15 +00001431#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001432#ifndef DISABLE_BROWSER
1433 free_shortcutage(&browser_list);
Chris Allegretta7662c862003-01-13 01:35:15 +00001434 free_shortcutage(&gotodir_list);
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001435#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001436#ifndef NANO_TINY
David Lawrence Ramsey40e4acf2005-05-26 06:09:07 +00001437 /* Free the memory associated with each toggle. */
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001438 while (toggles != NULL) {
1439 toggle *t = toggles;
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001440
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001441 toggles = toggles->next;
1442 free(t);
1443 }
1444#endif
David Lawrence Ramsey5d8d0b12005-05-26 05:53:29 +00001445 /* Free the memory associated with each open file buffer. */
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +00001446 if (openfile != NULL)
David Lawrence Ramsey64661ac2005-07-08 19:57:25 +00001447 free_openfilestruct(openfile);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001448#ifdef ENABLE_COLOR
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001449 if (syntaxstr != NULL)
1450 free(syntaxstr);
Chris Allegretta6df90f52002-07-19 01:08:59 +00001451 while (syntaxes != NULL) {
1452 syntaxtype *bill = syntaxes;
1453
1454 free(syntaxes->desc);
1455 while (syntaxes->extensions != NULL) {
1456 exttype *bob = syntaxes->extensions;
1457
1458 syntaxes->extensions = bob->next;
David Lawrence Ramsey2385c1a2005-07-29 21:42:08 +00001459 free(bob->ext_regex);
David Lawrence Ramsey7fc0ada2005-08-29 18:52:06 +00001460 if (bob->ext != NULL) {
1461 regfree(bob->ext);
1462 free(bob->ext);
1463 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00001464 free(bob);
1465 }
1466 while (syntaxes->color != NULL) {
1467 colortype *bob = syntaxes->color;
1468
1469 syntaxes->color = bob->next;
David Lawrence Ramsey2385c1a2005-07-29 21:42:08 +00001470 free(bob->start_regex);
David Lawrence Ramseydb958022005-07-13 20:18:46 +00001471 if (bob->start != NULL) {
1472 regfree(bob->start);
1473 free(bob->start);
1474 }
David Lawrence Ramseyd2361f02005-07-14 18:33:51 +00001475 if (bob->end_regex != NULL)
1476 free(bob->end_regex);
David Lawrence Ramseydb958022005-07-13 20:18:46 +00001477 if (bob->end != NULL) {
Chris Allegrettace452fb2003-02-03 02:56:44 +00001478 regfree(bob->end);
David Lawrence Ramseydb958022005-07-13 20:18:46 +00001479 free(bob->end);
1480 }
Chris Allegretta6df90f52002-07-19 01:08:59 +00001481 free(bob);
1482 }
1483 syntaxes = syntaxes->next;
1484 free(bill);
1485 }
1486#endif /* ENABLE_COLOR */
David Lawrence Ramseyebe34252005-11-15 03:17:35 +00001487#ifndef NANO_TINY
David Lawrence Ramsey40e4acf2005-05-26 06:09:07 +00001488 /* Free the search and replace history lists. */
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001489 if (searchage != NULL)
1490 free_filestruct(searchage);
1491 if (replaceage != NULL)
1492 free_filestruct(replaceage);
Chris Allegretta5beed502003-01-05 20:41:21 +00001493#endif
David Lawrence Ramseya27bd652004-08-17 05:23:38 +00001494#ifdef ENABLE_NANORC
David Lawrence Ramsey31b159c2005-05-26 05:17:13 +00001495 if (homedir != NULL)
1496 free(homedir);
David Lawrence Ramseya27bd652004-08-17 05:23:38 +00001497#endif
Chris Allegrettaf5de33a2002-02-27 04:14:16 +00001498}
Chris Allegretta6232d662002-05-12 19:52:15 +00001499#endif /* DEBUG */