2000-08-06 21:13:45 +00:00
|
|
|
/* $Id$ */
|
2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* nano.c *
|
|
|
|
* *
|
2002-01-04 17:57:40 +00:00
|
|
|
* Copyright (C) 1999-2002 Chris Allegretta *
|
2000-06-06 05:53:49 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
2001-10-24 11:33:54 +00:00
|
|
|
* the Free Software Foundation; either version 2, or (at your option) *
|
2000-06-06 05:53:49 +00:00
|
|
|
* any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software *
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2001-04-28 18:03:52 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <signal.h>
|
2001-01-29 23:37:54 +00:00
|
|
|
#include <setjmp.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/param.h>
|
2000-11-05 16:52:21 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <limits.h>
|
2000-06-07 03:56:54 +00:00
|
|
|
#include <assert.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
#include "proto.h"
|
|
|
|
#include "nano.h"
|
|
|
|
|
|
|
|
#ifndef NANO_SMALL
|
|
|
|
#include <libintl.h>
|
|
|
|
#define _(string) gettext(string)
|
|
|
|
#else
|
|
|
|
#define _(string) (string)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS_H
|
|
|
|
#include <termios.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO_H
|
|
|
|
#include <termio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_GETOPT_H
|
|
|
|
#include <getopt.h>
|
|
|
|
#endif
|
|
|
|
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2000-06-06 05:53:49 +00:00
|
|
|
/* Former globals, now static */
|
2002-02-15 19:17:02 +00:00
|
|
|
int fill = 0;/* Fill - where to wrap lines, basically */
|
|
|
|
int wrap_at = 0; /* Right justified fill value, allows resize */
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
struct termios oldterm; /* The user's original term settings */
|
2001-05-05 17:45:54 +00:00
|
|
|
static struct sigaction act; /* For all our fun signal handlers */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_HELP
|
2001-04-12 03:01:53 +00:00
|
|
|
static char *help_text_init = ""; /* Initial message, not including shortcuts */
|
2000-12-18 07:05:27 +00:00
|
|
|
#endif
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
char *last_search = NULL; /* Last string we searched for */
|
|
|
|
char *last_replace = NULL; /* Last replacement string */
|
|
|
|
int search_last_line; /* Is this the last search line? */
|
|
|
|
|
2001-01-29 23:37:54 +00:00
|
|
|
static sigjmp_buf jmpbuf; /* Used to return to mainloop after SIGWINCH */
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* What we do when we're all set to exit */
|
|
|
|
RETSIGTYPE finish(int sigage)
|
|
|
|
{
|
2001-01-06 18:12:43 +00:00
|
|
|
|
|
|
|
keypad(edit, TRUE);
|
|
|
|
keypad(bottomwin, TRUE);
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
if (!ISSET(NO_HELP)) {
|
|
|
|
mvwaddstr(bottomwin, 1, 0, hblank);
|
|
|
|
mvwaddstr(bottomwin, 2, 0, hblank);
|
2000-06-21 03:00:43 +00:00
|
|
|
} else
|
2000-06-06 05:53:49 +00:00
|
|
|
mvwaddstr(bottomwin, 0, 0, hblank);
|
2001-04-12 03:01:53 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
wrefresh(bottomwin);
|
|
|
|
endwin();
|
|
|
|
|
|
|
|
/* Restore the old term settings */
|
2000-06-21 03:00:43 +00:00
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
exit(sigage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Die (gracefully?) */
|
|
|
|
void die(char *msg, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, msg);
|
|
|
|
vfprintf(stderr, msg, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Restore the old term settings */
|
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
|
|
|
|
|
|
|
clear();
|
|
|
|
refresh();
|
|
|
|
resetty();
|
|
|
|
endwin();
|
|
|
|
|
|
|
|
fprintf(stderr, msg);
|
|
|
|
|
2002-01-02 15:12:21 +00:00
|
|
|
/* save the currently loaded file if it's been modified */
|
|
|
|
if (ISSET(MODIFIED))
|
|
|
|
die_save_file(filename);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2002-01-02 15:12:21 +00:00
|
|
|
/* then save all of the other modified loaded files, if any */
|
2001-07-11 02:08:33 +00:00
|
|
|
if (open_files) {
|
|
|
|
filestruct *tmp;
|
|
|
|
|
|
|
|
tmp = open_files;
|
|
|
|
|
|
|
|
while (open_files->prev)
|
|
|
|
open_files = open_files->prev;
|
|
|
|
|
|
|
|
while (open_files->next) {
|
|
|
|
|
|
|
|
/* if we already saved the file above (i. e. if it was the
|
|
|
|
currently loaded file), don't save it again */
|
|
|
|
if (tmp != open_files) {
|
|
|
|
fileage = open_files->file;
|
2002-01-02 15:12:21 +00:00
|
|
|
/* save the file if it's been modified */
|
|
|
|
if (open_files->file_modified)
|
|
|
|
die_save_file(open_files->data);
|
2001-07-11 02:08:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
open_files = open_files->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
exit(1); /* We have a problem: exit w/ errorlevel(1) */
|
|
|
|
}
|
|
|
|
|
|
|
|
void die_save_file(char *die_filename)
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
int i;
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* if we can't save we have REAL bad problems,
|
2000-07-17 03:04:54 +00:00
|
|
|
* but we might as well TRY. */
|
2001-07-11 02:08:33 +00:00
|
|
|
if (die_filename[0] == '\0') {
|
2000-12-02 04:36:50 +00:00
|
|
|
name = "nano.save";
|
2001-06-05 23:24:55 +00:00
|
|
|
i = write_file(name, 1, 0, 0);
|
2000-07-17 03:04:54 +00:00
|
|
|
} else {
|
2001-04-12 03:01:53 +00:00
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
char *buf = charalloc(strlen(die_filename) + 6);
|
|
|
|
strcpy(buf, die_filename);
|
2000-12-02 02:36:22 +00:00
|
|
|
strcat(buf, ".save");
|
2001-06-05 23:24:55 +00:00
|
|
|
i = write_file(buf, 1, 0, 0);
|
2000-12-02 04:36:50 +00:00
|
|
|
name = buf;
|
2000-07-17 03:04:54 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-12-02 04:36:50 +00:00
|
|
|
if (i != -1)
|
|
|
|
fprintf(stderr, _("\nBuffer written to %s\n"), name);
|
|
|
|
else
|
2000-12-03 03:06:45 +00:00
|
|
|
fprintf(stderr, _("\nNo %s written (file exists?)\n"), name);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2001-01-14 05:18:27 +00:00
|
|
|
/* Die with an error message that the screen was too small if, well, the
|
|
|
|
screen is too small */
|
|
|
|
void die_too_small(void)
|
|
|
|
{
|
|
|
|
char *too_small_msg = _("Window size is too small for Nano...");
|
|
|
|
|
|
|
|
die(too_small_msg);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
void print_view_warning(void)
|
|
|
|
{
|
|
|
|
statusbar(_("Key illegal in VIEW mode"));
|
|
|
|
}
|
|
|
|
|
2000-12-14 13:56:28 +00:00
|
|
|
void clear_filename(void)
|
|
|
|
{
|
|
|
|
if (filename != NULL)
|
|
|
|
free(filename);
|
2001-05-17 11:35:43 +00:00
|
|
|
filename = charalloc(1);
|
2000-12-14 13:56:28 +00:00
|
|
|
filename[0] = 0;
|
|
|
|
}
|
2000-11-03 01:29:04 +00:00
|
|
|
|
2001-09-27 02:46:53 +00:00
|
|
|
/* Initialize global variables - no better way for now. If
|
|
|
|
save_cutbuffer is nonzero, don't set cutbuffer to NULL. */
|
|
|
|
void global_init(int save_cutbuffer)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
|
|
|
current_x = 0;
|
|
|
|
current_y = 0;
|
2001-01-14 05:18:27 +00:00
|
|
|
|
|
|
|
if ((editwinrows = LINES - 5 + no_help()) < MIN_EDITOR_ROWS)
|
|
|
|
die_too_small();
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
fileage = NULL;
|
2001-09-27 02:46:53 +00:00
|
|
|
if (!save_cutbuffer)
|
|
|
|
cutbuffer = NULL;
|
2000-06-06 05:53:49 +00:00
|
|
|
current = NULL;
|
|
|
|
edittop = NULL;
|
|
|
|
editbot = NULL;
|
|
|
|
totlines = 0;
|
2001-09-27 02:46:53 +00:00
|
|
|
totsize = 0;
|
2000-06-06 05:53:49 +00:00
|
|
|
placewewant = 0;
|
2001-01-14 05:18:27 +00:00
|
|
|
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
|
|
|
if (wrap_at)
|
|
|
|
fill = COLS + wrap_at;
|
|
|
|
else if (!fill)
|
2001-01-14 05:18:27 +00:00
|
|
|
fill = COLS - CHARS_FROM_EOL;
|
|
|
|
|
|
|
|
if (fill < MIN_FILL_LENGTH)
|
|
|
|
die_too_small();
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-01-14 05:18:27 +00:00
|
|
|
|
2001-05-17 11:35:43 +00:00
|
|
|
hblank = charalloc(COLS + 1);
|
2001-01-23 02:35:04 +00:00
|
|
|
memset(hblank, ' ', COLS);
|
|
|
|
hblank[COLS] = 0;
|
2001-10-14 19:05:10 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_HELP
|
2000-06-06 05:53:49 +00:00
|
|
|
void init_help_msg(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
help_text_init =
|
2000-06-21 03:00:43 +00:00
|
|
|
_(" nano help text\n\n "
|
|
|
|
"The nano editor is designed to emulate the functionality and "
|
|
|
|
"ease-of-use of the UW Pico text editor. There are four main "
|
|
|
|
"sections of the editor: The top line shows the program "
|
|
|
|
"version, the current filename being edited, and whether "
|
|
|
|
"or not the file has been modified. Next is the main editor "
|
|
|
|
"window showing the file being edited. The status line is "
|
|
|
|
"the third line from the bottom and shows important messages. "
|
|
|
|
"The bottom two lines show the most commonly used shortcuts "
|
|
|
|
"in the editor.\n\n "
|
|
|
|
"The notation for shortcuts is as follows: Control-key "
|
2000-09-02 07:20:39 +00:00
|
|
|
"sequences are notated with a caret (^) symbol and are entered "
|
2000-09-02 07:27:10 +00:00
|
|
|
"with the Control (Ctrl) key. Escape-key sequences are notated "
|
|
|
|
"with the Meta (M) symbol and can be entered using either the "
|
|
|
|
"Esc, Alt or Meta key depending on your keyboard setup. The "
|
|
|
|
"following keystrokes are available in the main editor window. "
|
2000-06-21 03:00:43 +00:00
|
|
|
"Optional keys are shown in parentheses:\n\n");
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Make a copy of a node to a pointer (space will be malloc()ed). This
|
|
|
|
does NOT copy the data members used only by open_files. */
|
2000-06-06 05:53:49 +00:00
|
|
|
filestruct *copy_node(filestruct * src)
|
|
|
|
{
|
|
|
|
filestruct *dst;
|
|
|
|
|
|
|
|
dst = nmalloc(sizeof(filestruct));
|
2001-05-17 11:35:43 +00:00
|
|
|
dst->data = charalloc(strlen(src->data) + 1);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
dst->next = src->next;
|
|
|
|
dst->prev = src->prev;
|
|
|
|
|
|
|
|
strcpy(dst->data, src->data);
|
|
|
|
dst->lineno = src->lineno;
|
|
|
|
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unlink a node from the rest of the struct */
|
|
|
|
void unlink_node(filestruct * fileptr)
|
|
|
|
{
|
|
|
|
if (fileptr->prev != NULL)
|
|
|
|
fileptr->prev->next = fileptr->next;
|
|
|
|
|
|
|
|
if (fileptr->next != NULL)
|
|
|
|
fileptr->next->prev = fileptr->prev;
|
|
|
|
}
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Delete a node from the struct. This does NOT delete the data members
|
|
|
|
used only by open_files. */
|
2000-06-06 05:53:49 +00:00
|
|
|
void delete_node(filestruct * fileptr)
|
|
|
|
{
|
2001-01-20 21:40:07 +00:00
|
|
|
if (fileptr == NULL)
|
|
|
|
return;
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
if (fileptr->data != NULL)
|
2001-04-12 03:01:53 +00:00
|
|
|
free(fileptr->data);
|
2000-06-06 05:53:49 +00:00
|
|
|
free(fileptr);
|
|
|
|
}
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Okay, now let's duplicate a whole struct! This does NOT duplicate the
|
|
|
|
data members used only by open_files. */
|
2000-06-06 05:53:49 +00:00
|
|
|
filestruct *copy_filestruct(filestruct * src)
|
|
|
|
{
|
|
|
|
filestruct *dst, *tmp, *head, *prev;
|
|
|
|
|
|
|
|
head = copy_node(src);
|
|
|
|
dst = head; /* Else we barf on copying just one line */
|
|
|
|
head->prev = NULL;
|
|
|
|
tmp = src->next;
|
|
|
|
prev = head;
|
|
|
|
|
|
|
|
while (tmp != NULL) {
|
|
|
|
dst = copy_node(tmp);
|
|
|
|
dst->prev = prev;
|
|
|
|
prev->next = dst;
|
|
|
|
|
|
|
|
prev = dst;
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
dst->next = NULL;
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Frees a struct. This does NOT free the data members used only by
|
|
|
|
open_files. */
|
2000-06-06 05:53:49 +00:00
|
|
|
int free_filestruct(filestruct * src)
|
|
|
|
{
|
|
|
|
filestruct *fileptr = src;
|
|
|
|
|
|
|
|
if (src == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (fileptr->next != NULL) {
|
|
|
|
fileptr = fileptr->next;
|
2001-01-20 21:40:07 +00:00
|
|
|
delete_node(fileptr->prev);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2001-01-20 21:40:07 +00:00
|
|
|
fprintf(stderr, _("delete_node(): free'd a node, YAY!\n"));
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
2001-01-20 21:40:07 +00:00
|
|
|
delete_node(fileptr);
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef DEBUG
|
2001-01-20 21:40:07 +00:00
|
|
|
fprintf(stderr, _("delete_node(): free'd last node.\n"));
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int renumber_all(void)
|
|
|
|
{
|
|
|
|
filestruct *temp;
|
|
|
|
long i = 1;
|
|
|
|
|
|
|
|
for (temp = fileage; temp != NULL; temp = temp->next) {
|
|
|
|
temp->lineno = i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int renumber(filestruct * fileptr)
|
|
|
|
{
|
|
|
|
filestruct *temp;
|
|
|
|
|
|
|
|
if (fileptr == NULL || fileptr->prev == NULL || fileptr == fileage) {
|
|
|
|
renumber_all();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
for (temp = fileptr; temp != NULL; temp = temp->next) {
|
2000-12-10 05:44:02 +00:00
|
|
|
if (temp->prev != NULL)
|
|
|
|
temp->lineno = temp->prev->lineno + 1;
|
|
|
|
else
|
|
|
|
temp->lineno = 1;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix the memory allocation for a string */
|
|
|
|
void align(char **strp)
|
|
|
|
{
|
|
|
|
/* There was a serious bug here: the new address was never
|
|
|
|
stored anywhere... */
|
|
|
|
|
|
|
|
*strp = nrealloc(*strp, strlen(*strp) + 1);
|
|
|
|
}
|
|
|
|
|
2000-07-28 01:41:29 +00:00
|
|
|
/* Null a string at a certain index and align it */
|
2001-10-22 23:22:19 +00:00
|
|
|
void null_at(char **data, int index)
|
2000-07-28 01:41:29 +00:00
|
|
|
{
|
2001-10-22 23:22:19 +00:00
|
|
|
|
|
|
|
/* Ahh! Damn dereferencing */
|
|
|
|
(*data)[index] = 0;
|
|
|
|
align(data);
|
2000-07-28 01:41:29 +00:00
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
void usage(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_GETOPT_LONG
|
|
|
|
printf(_("Usage: nano [GNU long option] [option] +LINE <file>\n\n"));
|
|
|
|
printf(_("Option Long option Meaning\n"));
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-09-22 00:42:10 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
printf
|
|
|
|
(_
|
|
|
|
(" -D --dos Write file in DOS format\n"));
|
|
|
|
#endif
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
printf
|
|
|
|
(_
|
2001-07-14 19:32:47 +00:00
|
|
|
(" -F --multibuffer Enable multiple file buffers\n"));
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
2002-01-03 21:26:34 +00:00
|
|
|
printf(_
|
|
|
|
(" -K --keypad Use alternate keypad routines\n"));
|
2001-09-22 04:20:25 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
printf
|
|
|
|
(_
|
|
|
|
(" -M --mac Write file in Mac format\n"));
|
2002-02-15 19:17:02 +00:00
|
|
|
printf
|
|
|
|
(_
|
|
|
|
(" -N --noconvert Don't convert files from DOS/Mac format\n"));
|
2001-09-22 19:02:04 +00:00
|
|
|
#endif
|
|
|
|
#ifndef NANO_SMALL
|
|
|
|
printf(_
|
|
|
|
(" -S --smooth Smooth scrolling\n"));
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2001-09-22 00:42:10 +00:00
|
|
|
printf(_
|
|
|
|
(" -T [num] --tabsize=[num] Set width of a tab to num\n"));
|
2000-06-06 05:53:49 +00:00
|
|
|
printf
|
|
|
|
(_
|
|
|
|
(" -V --version Print version information and exit\n"));
|
|
|
|
printf(_
|
|
|
|
(" -c --const Constantly show cursor position\n"));
|
|
|
|
printf(_
|
|
|
|
(" -h --help Show this message\n"));
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2000-12-27 03:36:47 +00:00
|
|
|
printf(_
|
|
|
|
(" -i --autoindent Automatically indent new lines\n"));
|
2000-07-12 02:09:17 +00:00
|
|
|
printf(_
|
|
|
|
(" -k --cut Let ^K cut from cursor to end of line\n"));
|
2000-07-12 18:14:51 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_
|
2000-10-02 04:21:23 +00:00
|
|
|
(" -l --nofollow Don't follow symbolic links, overwrite\n"));
|
2001-04-12 14:51:48 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef NCURSES_MOUSE_VERSION
|
|
|
|
printf(_(" -m --mouse Enable mouse\n"));
|
|
|
|
#endif
|
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2000-12-27 03:36:47 +00:00
|
|
|
printf(_
|
2001-09-27 02:46:53 +00:00
|
|
|
(" -o [dir] --operatingdir=[dir] Set operating directory\n"));
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
|
|
|
printf(_
|
|
|
|
(" -p --pico Emulate Pico as closely as possible\n"));
|
2001-05-21 12:56:25 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2000-06-06 05:53:49 +00:00
|
|
|
printf
|
|
|
|
(_
|
|
|
|
(" -r [#cols] --fill=[#cols] Set fill cols to (wrap lines at) #cols\n"));
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_
|
|
|
|
(" -s [prog] --speller=[prog] Enable alternate speller\n"));
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_
|
|
|
|
(" -t --tempfile Auto save on exit, don't prompt\n"));
|
|
|
|
printf(_
|
|
|
|
(" -v --view View (read only) mode\n"));
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_
|
|
|
|
(" -w --nowrap Don't wrap long lines\n"));
|
2001-04-02 05:36:08 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_
|
|
|
|
(" -x --nohelp Don't show help window\n"));
|
|
|
|
printf(_
|
|
|
|
(" -z --suspend Enable suspend\n"));
|
|
|
|
printf(_
|
|
|
|
(" +LINE Start at line number LINE\n"));
|
|
|
|
#else
|
|
|
|
printf(_("Usage: nano [option] +LINE <file>\n\n"));
|
|
|
|
printf(_("Option Meaning\n"));
|
2001-09-22 00:42:10 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
printf(_(" -D Write file in DOS format\n"));
|
|
|
|
#endif
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
|
|
|
printf(_(" -F Enable multiple file buffers\n"));
|
2001-09-22 04:20:25 +00:00
|
|
|
#endif
|
2002-01-07 11:35:16 +00:00
|
|
|
printf(_(" -K Use alternate keypad routines\n"));
|
2001-09-22 04:20:25 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
printf(_(" -M Write file in Mac format\n"));
|
2001-07-14 19:32:47 +00:00
|
|
|
#endif
|
2000-07-07 01:49:52 +00:00
|
|
|
printf(_(" -R Use regular expressions for search\n"));
|
2001-09-22 19:02:04 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
printf(_(" -S Smooth scrolling\n"));
|
|
|
|
#endif
|
2002-01-03 21:26:34 +00:00
|
|
|
printf(_(" -T [num] Set width of a tab to num\n"));
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_(" -V Print version information and exit\n"));
|
|
|
|
printf(_(" -c Constantly show cursor position\n"));
|
|
|
|
printf(_(" -h Show this message\n"));
|
2000-07-12 18:14:51 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-09-17 13:48:00 +00:00
|
|
|
printf(_(" -i Automatically indent new lines\n"));
|
2000-07-12 02:09:17 +00:00
|
|
|
printf(_(" -k Let ^K cut from cursor to end of line\n"));
|
2000-07-12 18:14:51 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_
|
2000-10-02 04:21:23 +00:00
|
|
|
(" -l Don't follow symbolic links, overwrite\n"));
|
2001-04-12 14:51:48 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef NCURSES_MOUSE_VERSION
|
|
|
|
printf(_(" -m Enable mouse\n"));
|
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
printf(_(" -o [dir] Set operating directory\n"));
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
2000-11-17 01:37:39 +00:00
|
|
|
printf(_(" -p Emulate Pico as closely as possible\n"));
|
2001-05-21 12:56:25 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2001-04-12 03:01:53 +00:00
|
|
|
printf(_
|
|
|
|
(" -r [#cols] Set fill cols to (wrap lines at) #cols\n"));
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2000-12-27 03:36:47 +00:00
|
|
|
printf(_(" -s [prog] Enable alternate speller\n"));
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_(" -t Auto save on exit, don't prompt\n"));
|
|
|
|
printf(_(" -v View (read only) mode\n"));
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_(" -w Don't wrap long lines\n"));
|
2001-04-02 05:36:08 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
printf(_(" -x Don't show help window\n"));
|
|
|
|
printf(_(" -z Enable suspend\n"));
|
|
|
|
printf(_(" +LINE Start at line number LINE\n"));
|
|
|
|
#endif
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void version(void)
|
|
|
|
{
|
2001-02-14 14:28:27 +00:00
|
|
|
printf(_(" GNU nano version %s (compiled %s, %s)\n"),
|
2000-06-06 05:53:49 +00:00
|
|
|
VERSION, __TIME__, __DATE__);
|
2000-10-26 01:44:42 +00:00
|
|
|
printf(_
|
2000-11-24 20:45:14 +00:00
|
|
|
(" Email: nano@nano-editor.org Web: http://www.nano-editor.org"));
|
|
|
|
printf(_("\n Compiled options:"));
|
2000-12-01 18:46:01 +00:00
|
|
|
|
2000-11-24 20:45:14 +00:00
|
|
|
#ifdef NANO_EXTRA
|
|
|
|
printf(" --enable-extra");
|
2002-01-17 12:40:33 +00:00
|
|
|
#endif
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
|
|
|
printf(" --enable-multibuffer");
|
2002-01-17 12:40:33 +00:00
|
|
|
#endif
|
2001-04-18 04:34:43 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
|
|
|
printf(" --enable-nanorc");
|
|
|
|
#endif
|
2001-04-30 11:28:46 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
|
|
|
printf(" --enable-color");
|
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
|
|
|
|
#ifdef NANO_SMALL
|
|
|
|
printf(" --enable-tiny");
|
|
|
|
#else
|
2001-04-12 03:01:53 +00:00
|
|
|
#ifdef DISABLE_BROWSER
|
2001-01-05 05:41:07 +00:00
|
|
|
printf(" --disable-browser");
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DISABLE_TABCOMP
|
2000-11-24 20:45:14 +00:00
|
|
|
printf(" --disable-tabcomp");
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DISABLE_JUSTIFY
|
2000-12-01 18:46:01 +00:00
|
|
|
printf(" --disable-justify");
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DISABLE_SPELLER
|
2000-12-06 01:08:10 +00:00
|
|
|
printf(" --disable-speller");
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DISABLE_HELP
|
2000-12-18 05:36:51 +00:00
|
|
|
printf(" --disable-help");
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif
|
2001-04-12 14:51:48 +00:00
|
|
|
#ifdef DISABLE_MOUSE
|
|
|
|
printf(" --disable-mouse");
|
2000-12-18 05:36:51 +00:00
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifdef DISABLE_OPERATINGDIR
|
|
|
|
printf(" --disable-operatingdir");
|
|
|
|
#endif
|
2001-04-12 14:51:48 +00:00
|
|
|
#endif /* NANO_SMALL */
|
2001-01-12 07:51:05 +00:00
|
|
|
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifdef DISABLE_WRAPPING
|
|
|
|
printf(" --disable-wrapping");
|
|
|
|
#endif
|
2000-11-24 20:45:14 +00:00
|
|
|
#ifdef USE_SLANG
|
|
|
|
printf(" --with-slang");
|
|
|
|
#endif
|
|
|
|
printf("\n");
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Create a new node. This does NOT initialize the data members used
|
|
|
|
only by open_files. */
|
2000-06-06 05:53:49 +00:00
|
|
|
filestruct *make_new_node(filestruct * prevnode)
|
|
|
|
{
|
|
|
|
filestruct *newnode;
|
|
|
|
|
|
|
|
newnode = nmalloc(sizeof(filestruct));
|
|
|
|
newnode->data = NULL;
|
|
|
|
|
|
|
|
newnode->prev = prevnode;
|
|
|
|
newnode->next = NULL;
|
|
|
|
|
|
|
|
if (prevnode != NULL)
|
|
|
|
newnode->lineno = prevnode->lineno + 1;
|
|
|
|
|
|
|
|
return newnode;
|
|
|
|
}
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
/* Splice a node into an existing filestruct. This does NOT set the data
|
|
|
|
members used only by open_files. */
|
2001-04-12 03:01:53 +00:00
|
|
|
void splice_node(filestruct * begin, filestruct * newnode,
|
|
|
|
filestruct * end)
|
2000-07-28 00:58:35 +00:00
|
|
|
{
|
2001-03-18 16:59:34 +00:00
|
|
|
newnode->next = end;
|
|
|
|
newnode->prev = begin;
|
|
|
|
begin->next = newnode;
|
2000-07-28 00:58:35 +00:00
|
|
|
if (end != NULL)
|
2001-03-18 16:59:34 +00:00
|
|
|
end->prev = newnode;
|
2000-07-28 00:58:35 +00:00
|
|
|
}
|
|
|
|
|
2001-03-18 16:59:34 +00:00
|
|
|
int do_mark(void)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
|
|
|
#ifdef NANO_SMALL
|
2001-01-12 07:51:05 +00:00
|
|
|
nano_disabled_msg();
|
2000-06-06 05:53:49 +00:00
|
|
|
#else
|
|
|
|
if (!ISSET(MARK_ISSET)) {
|
|
|
|
statusbar(_("Mark Set"));
|
|
|
|
SET(MARK_ISSET);
|
|
|
|
mark_beginbuf = current;
|
|
|
|
mark_beginx = current_x;
|
|
|
|
} else {
|
|
|
|
statusbar(_("Mark UNset"));
|
|
|
|
UNSET(MARK_ISSET);
|
|
|
|
mark_beginbuf = NULL;
|
|
|
|
mark_beginx = 0;
|
|
|
|
|
|
|
|
edit_refresh();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int no_help(void)
|
|
|
|
{
|
|
|
|
if ISSET
|
|
|
|
(NO_HELP)
|
|
|
|
return 2;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-12-10 17:03:25 +00:00
|
|
|
#if defined(DISABLE_JUSTIFY) || defined(DISABLE_SPELLER) || defined(DISABLE_HELP)
|
2000-12-01 18:46:01 +00:00
|
|
|
void nano_disabled_msg(void)
|
|
|
|
{
|
|
|
|
statusbar("Sorry, support for this function has been disabled");
|
|
|
|
}
|
2000-12-01 18:57:11 +00:00
|
|
|
#endif
|
2000-12-01 18:46:01 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* The user typed a printable character; add it to the edit buffer */
|
|
|
|
void do_char(char ch)
|
|
|
|
{
|
2000-07-04 22:15:39 +00:00
|
|
|
/* magic-line: when a character is inserted on the current magic line,
|
|
|
|
* it means we need a new one! */
|
2000-10-26 01:44:42 +00:00
|
|
|
if (filebot == current && current->data[0] == '\0') {
|
2000-07-04 22:15:39 +00:00
|
|
|
new_magicline();
|
2000-07-05 22:47:54 +00:00
|
|
|
fix_editbot();
|
2000-07-04 22:15:39 +00:00
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* More dangerousness fun =) */
|
|
|
|
current->data = nrealloc(current->data, strlen(current->data) + 2);
|
|
|
|
memmove(¤t->data[current_x + 1],
|
|
|
|
¤t->data[current_x],
|
|
|
|
strlen(current->data) - current_x + 1);
|
|
|
|
current->data[current_x] = ch;
|
|
|
|
do_right();
|
|
|
|
|
2002-01-20 00:54:42 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
|
|
|
edit_refresh();
|
|
|
|
#endif
|
|
|
|
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2000-06-07 03:56:54 +00:00
|
|
|
if (!ISSET(NO_WRAP) && (ch != '\t'))
|
2000-06-21 03:00:43 +00:00
|
|
|
check_wrap(current, ch);
|
2001-04-02 05:36:08 +00:00
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
set_modified();
|
|
|
|
check_statblank();
|
|
|
|
UNSET(KEEP_CUTBUFFER);
|
|
|
|
totsize++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Someone hits return *gasp!* */
|
|
|
|
int do_enter(filestruct * inptr)
|
|
|
|
{
|
2001-03-18 16:59:34 +00:00
|
|
|
filestruct *newnode;
|
2001-09-17 13:49:33 +00:00
|
|
|
char *tmp;
|
|
|
|
#ifndef NANO_SMALL
|
|
|
|
char *spc;
|
2000-06-06 05:53:49 +00:00
|
|
|
int extra = 0;
|
2001-09-17 13:49:33 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-03-18 16:59:34 +00:00
|
|
|
newnode = make_new_node(inptr);
|
2000-06-06 05:53:49 +00:00
|
|
|
tmp = ¤t->data[current_x];
|
|
|
|
current_x = 0;
|
|
|
|
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2000-06-06 05:53:49 +00:00
|
|
|
/* Do auto-indenting, like the neolithic Turbo Pascal editor */
|
|
|
|
if (ISSET(AUTOINDENT)) {
|
|
|
|
spc = current->data;
|
|
|
|
if (spc) {
|
|
|
|
while ((*spc == ' ') || (*spc == '\t')) {
|
|
|
|
extra++;
|
|
|
|
spc++;
|
|
|
|
current_x++;
|
2001-03-13 18:36:03 +00:00
|
|
|
totsize++;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-05-17 11:35:43 +00:00
|
|
|
newnode->data = charalloc(strlen(tmp) + extra + 1);
|
2001-03-18 16:59:34 +00:00
|
|
|
strncpy(newnode->data, current->data, extra);
|
|
|
|
strcpy(&newnode->data[extra], tmp);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-09-17 13:48:00 +00:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2001-05-17 11:35:43 +00:00
|
|
|
newnode->data = charalloc(strlen(tmp) + 1);
|
2001-03-18 16:59:34 +00:00
|
|
|
strcpy(newnode->data, tmp);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
*tmp = 0;
|
|
|
|
|
2000-07-31 01:26:42 +00:00
|
|
|
if (inptr->next == NULL) {
|
2001-03-18 16:59:34 +00:00
|
|
|
filebot = newnode;
|
|
|
|
editbot = newnode;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-03-18 16:59:34 +00:00
|
|
|
splice_node(inptr, newnode, inptr->next);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
totsize++;
|
|
|
|
renumber(current);
|
2001-03-18 16:59:34 +00:00
|
|
|
current = newnode;
|
2000-06-06 05:53:49 +00:00
|
|
|
align(¤t->data);
|
|
|
|
|
2000-07-04 02:35:19 +00:00
|
|
|
/* The logic here is as follows:
|
|
|
|
* -> If we are at the bottom of the buffer, we want to recenter
|
2001-05-05 17:45:54 +00:00
|
|
|
* (read: rebuild) the screen and forcibly move the cursor.
|
2000-07-04 02:35:19 +00:00
|
|
|
* -> otherwise, we want simply to redraw the screen and update
|
|
|
|
* where we think the cursor is.
|
|
|
|
*/
|
2000-06-06 05:53:49 +00:00
|
|
|
if (current_y == editwinrows - 1) {
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(current, CENTER);
|
2000-10-26 01:44:42 +00:00
|
|
|
reset_cursor();
|
2000-07-04 02:35:19 +00:00
|
|
|
} else {
|
2000-06-06 05:53:49 +00:00
|
|
|
current_y++;
|
2000-07-04 02:35:19 +00:00
|
|
|
edit_refresh();
|
|
|
|
update_cursor();
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
totlines++;
|
|
|
|
set_modified();
|
|
|
|
|
2000-06-15 23:39:14 +00:00
|
|
|
placewewant = xplustabs();
|
2000-06-06 05:53:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int do_enter_void(void)
|
|
|
|
{
|
|
|
|
return do_enter(current);
|
|
|
|
}
|
|
|
|
|
2001-10-02 03:54:13 +00:00
|
|
|
#ifndef NANO_SMALL
|
2000-06-06 05:53:49 +00:00
|
|
|
void do_next_word(void)
|
|
|
|
{
|
2000-12-01 23:49:48 +00:00
|
|
|
filestruct *fileptr, *old;
|
2000-06-06 05:53:49 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (current == NULL)
|
|
|
|
return;
|
|
|
|
|
2000-12-01 23:49:48 +00:00
|
|
|
old = current;
|
2000-06-06 05:53:49 +00:00
|
|
|
i = current_x;
|
|
|
|
for (fileptr = current; fileptr != NULL; fileptr = fileptr->next) {
|
|
|
|
if (fileptr == current) {
|
|
|
|
while (isalnum((int) fileptr->data[i])
|
|
|
|
&& fileptr->data[i] != 0)
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if (fileptr->data[i] == 0) {
|
|
|
|
i = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (!isalnum((int) fileptr->data[i]) && fileptr->data[i] != 0)
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if (fileptr->data[i] != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
if (fileptr == NULL)
|
|
|
|
current = filebot;
|
|
|
|
else
|
|
|
|
current = fileptr;
|
|
|
|
|
|
|
|
current_x = i;
|
|
|
|
placewewant = xplustabs();
|
2000-12-01 23:49:48 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
if (current->lineno >= editbot->lineno)
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(current, CENTER);
|
2000-12-01 23:49:48 +00:00
|
|
|
else {
|
|
|
|
/* If we've jumped lines, refresh the old line. We can't just use
|
|
|
|
* current->prev here, because we may have skipped over some blank
|
|
|
|
* lines, in which case the previous line is the wrong one.
|
|
|
|
*/
|
|
|
|
if (current != old)
|
|
|
|
update_line(old, 0);
|
|
|
|
|
|
|
|
update_line(current, current_x);
|
|
|
|
}
|
2001-10-14 19:05:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* the same thing for backwards */
|
|
|
|
void do_prev_word(void)
|
|
|
|
{
|
|
|
|
filestruct *fileptr, *old;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (current == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
old = current;
|
|
|
|
i = current_x;
|
|
|
|
for (fileptr = current; fileptr != NULL; fileptr = fileptr->prev) {
|
|
|
|
if (fileptr == current) {
|
|
|
|
while (isalnum((int) fileptr->data[i])
|
|
|
|
&& i != 0)
|
|
|
|
i--;
|
|
|
|
|
|
|
|
if (i == 0) {
|
|
|
|
if (fileptr->prev != NULL)
|
2001-10-24 18:07:58 +00:00
|
|
|
i = strlen(fileptr->prev->data);
|
2001-10-22 20:05:34 +00:00
|
|
|
else if (fileptr == fileage && filebot != NULL) {
|
|
|
|
current_x = 0;
|
|
|
|
return;
|
|
|
|
}
|
2001-10-14 19:05:10 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!isalnum((int) fileptr->data[i]) && i != 0)
|
|
|
|
i--;
|
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
i--;
|
|
|
|
|
|
|
|
while (isalnum((int) fileptr->data[i]) && i != 0)
|
|
|
|
i--;
|
|
|
|
|
2001-10-26 15:21:41 +00:00
|
|
|
if (!isalnum((int) fileptr->data[i]))
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if (i != 0 || i != current_x)
|
2001-10-14 19:05:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (fileptr->prev != NULL)
|
2001-10-24 18:07:58 +00:00
|
|
|
i = strlen(fileptr->prev->data);
|
2001-10-22 20:05:34 +00:00
|
|
|
else if (fileptr == fileage && filebot != NULL) {
|
|
|
|
current_x = 0;
|
|
|
|
return;
|
|
|
|
}
|
2001-10-14 19:05:10 +00:00
|
|
|
}
|
|
|
|
if (fileptr == NULL)
|
|
|
|
current = fileage;
|
|
|
|
else
|
|
|
|
current = fileptr;
|
|
|
|
|
|
|
|
current_x = i;
|
|
|
|
placewewant = xplustabs();
|
|
|
|
|
|
|
|
if (current->lineno <= edittop->lineno)
|
|
|
|
edit_update(current, CENTER);
|
|
|
|
else {
|
|
|
|
/* If we've jumped lines, refresh the old line. We can't just use
|
|
|
|
* current->prev here, because we may have skipped over some blank
|
|
|
|
* lines, in which case the previous line is the wrong one.
|
|
|
|
*/
|
|
|
|
if (current != old)
|
|
|
|
update_line(old, 0);
|
|
|
|
|
|
|
|
update_line(current, current_x);
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
}
|
2001-10-02 03:54:13 +00:00
|
|
|
#endif /* NANO_SMALL */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2000-06-21 03:00:43 +00:00
|
|
|
void do_wrap(filestruct * inptr, char input_char)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2000-06-21 03:00:43 +00:00
|
|
|
int i = 0; /* Index into ->data for line. */
|
|
|
|
int i_tabs = 0; /* Screen position of ->data[i]. */
|
|
|
|
int last_word_end = -1; /* Location of end of last word found. */
|
|
|
|
int current_word_start = -1; /* Location of start of current word. */
|
|
|
|
int current_word_start_t = -1; /* Location of start of current word screen position. */
|
|
|
|
int current_word_end = -1; /* Location of end of current word */
|
|
|
|
int current_word_end_t = -1; /* Location of end of current word screen position. */
|
2000-06-07 03:56:54 +00:00
|
|
|
int len = strlen(inptr->data);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
int down = 0;
|
2000-06-07 03:56:54 +00:00
|
|
|
int right = 0;
|
|
|
|
struct filestruct *temp = NULL;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
assert(strlenpt(inptr->data) > fill);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-17 20:36:35 +00:00
|
|
|
for (i = 0, i_tabs = 0; i < len; i++, i_tabs++) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (!isspace((int) inptr->data[i])) {
|
2000-06-21 03:00:43 +00:00
|
|
|
last_word_end = current_word_end;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
current_word_start = i;
|
2000-06-07 03:56:54 +00:00
|
|
|
current_word_start_t = i_tabs;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-10-02 03:42:55 +00:00
|
|
|
while (!isspace((int) inptr->data[i])
|
2000-10-26 01:44:42 +00:00
|
|
|
&& inptr->data[i]) {
|
2000-06-07 03:56:54 +00:00
|
|
|
i++;
|
|
|
|
i_tabs++;
|
2000-06-21 03:00:43 +00:00
|
|
|
if (inptr->data[i] < 32)
|
|
|
|
i_tabs++;
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-07 03:56:54 +00:00
|
|
|
if (inptr->data[i]) {
|
2000-06-21 03:00:43 +00:00
|
|
|
current_word_end = i;
|
2000-06-07 03:56:54 +00:00
|
|
|
current_word_end_t = i_tabs;
|
2000-06-21 03:00:43 +00:00
|
|
|
} else {
|
|
|
|
current_word_end = i - 1;
|
2000-06-07 03:56:54 +00:00
|
|
|
current_word_end_t = i_tabs - 1;
|
|
|
|
}
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
if (inptr->data[i] == NANO_CONTROL_I) {
|
2000-08-03 22:51:21 +00:00
|
|
|
if (i_tabs % tabsize != 0);
|
|
|
|
i_tabs += tabsize - (i_tabs % tabsize);
|
2000-06-21 03:00:43 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-20 02:50:33 +00:00
|
|
|
if (current_word_end_t > fill)
|
2000-06-07 03:56:54 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-19 17:30:14 +00:00
|
|
|
/* There are a few (ever changing) cases of what the line could look like.
|
2000-06-07 03:56:54 +00:00
|
|
|
* 1) only one word on the line before wrap point.
|
2000-06-17 20:36:35 +00:00
|
|
|
* a) one word takes up the whole line with no starting spaces.
|
|
|
|
* - do nothing and return.
|
|
|
|
* b) cursor is on word or before word at wrap point and there are spaces at beginning.
|
2000-06-07 03:56:54 +00:00
|
|
|
* - word starts new line.
|
|
|
|
* - keep white space on original line up to the cursor.
|
|
|
|
* *) cursor is after word at wrap point
|
|
|
|
* - either it's all white space after word, and this routine isn't called.
|
|
|
|
* - or we are actually in case 2 (2 words).
|
|
|
|
* 2) Two or more words on the line before wrap point.
|
2000-06-19 17:30:14 +00:00
|
|
|
* a) cursor is at a word or space before wrap point
|
2000-06-07 03:56:54 +00:00
|
|
|
* - word at wrap point starts a new line.
|
2000-06-19 17:30:14 +00:00
|
|
|
* - white space at end of original line is cleared, unless
|
|
|
|
* it is all spaces between previous word and next word which appears after fill.
|
2000-06-07 03:56:54 +00:00
|
|
|
* b) cursor is at the word at the wrap point.
|
|
|
|
* - word at wrap point starts a new line.
|
2001-09-27 02:46:53 +00:00
|
|
|
* - white space on original line is kept to where cursor was.
|
2000-06-07 03:56:54 +00:00
|
|
|
* c) cursor is past the word at the wrap point.
|
|
|
|
* - word at wrap point starts a new line.
|
2001-09-27 02:46:53 +00:00
|
|
|
* - white space at end of original line is cleared
|
2000-06-07 03:56:54 +00:00
|
|
|
*/
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
temp = nmalloc(sizeof(filestruct));
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2000-06-17 20:36:35 +00:00
|
|
|
/* Category 1a: one word taking up the whole line with no beginning spaces. */
|
2000-10-02 03:42:55 +00:00
|
|
|
if ((last_word_end == -1) && (!isspace((int) inptr->data[0]))) {
|
2000-06-17 20:36:35 +00:00
|
|
|
for (i = current_word_end; i < len; i++) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (!isspace((int) inptr->data[i]) && i < len) {
|
2000-06-21 03:00:43 +00:00
|
|
|
current_word_start = i;
|
2000-10-02 03:42:55 +00:00
|
|
|
while (!isspace((int) inptr->data[i]) && (i < len)) {
|
2000-06-17 20:36:35 +00:00
|
|
|
i++;
|
|
|
|
}
|
2000-06-21 03:00:43 +00:00
|
|
|
last_word_end = current_word_end;
|
2000-06-17 20:36:35 +00:00
|
|
|
current_word_end = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last_word_end == -1) {
|
2000-06-21 03:00:43 +00:00
|
|
|
free(temp);
|
2000-06-17 20:36:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (current_x >= last_word_end) {
|
|
|
|
right = (current_x - current_word_start) + 1;
|
|
|
|
current_x = last_word_end;
|
2000-06-21 03:00:43 +00:00
|
|
|
down = 1;
|
2000-06-17 20:36:35 +00:00
|
|
|
}
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Subtract length of original line, plus one for the newline, from
|
|
|
|
totsize. */
|
|
|
|
totsize -= (strlen(inptr->data) + 1);
|
|
|
|
|
2001-05-17 11:35:43 +00:00
|
|
|
temp->data = charalloc(strlen(&inptr->data[current_word_start]) + 1);
|
2000-06-17 20:36:35 +00:00
|
|
|
strcpy(temp->data, &inptr->data[current_word_start]);
|
|
|
|
inptr->data = nrealloc(inptr->data, last_word_end + 2);
|
|
|
|
inptr->data[last_word_end + 1] = 0;
|
2001-11-29 03:43:08 +00:00
|
|
|
|
|
|
|
/* Now add lengths of new lines, plus two for the newlines, to totsize. */
|
|
|
|
totsize += (strlen(inptr->data) + strlen(temp->data) + 2);
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
} else
|
|
|
|
/* Category 1b: one word on the line and word not taking up whole line
|
|
|
|
(i.e. there are spaces at the beginning of the line) */
|
2000-06-17 20:36:35 +00:00
|
|
|
if (last_word_end == -1) {
|
2001-05-17 11:35:43 +00:00
|
|
|
temp->data = charalloc(strlen(&inptr->data[current_word_start]) + 1);
|
2000-06-07 03:56:54 +00:00
|
|
|
strcpy(temp->data, &inptr->data[current_word_start]);
|
|
|
|
|
|
|
|
/* Inside word, remove it from original, and move cursor to right spot. */
|
|
|
|
if (current_x >= current_word_start) {
|
|
|
|
right = current_x - current_word_start;
|
2001-09-27 02:46:53 +00:00
|
|
|
|
2000-06-07 03:56:54 +00:00
|
|
|
current_x = 0;
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-03-14 08:28:48 +00:00
|
|
|
if (ISSET(AUTOINDENT)) {
|
|
|
|
int i = 0;
|
2001-04-12 03:01:53 +00:00
|
|
|
while ((inptr->next->data[i] == ' '
|
|
|
|
|| inptr->next->data[i] == '\t')) {
|
2001-03-14 08:28:48 +00:00
|
|
|
i++;
|
2001-04-12 03:01:53 +00:00
|
|
|
}
|
2001-03-14 08:28:48 +00:00
|
|
|
}
|
2001-09-17 13:48:00 +00:00
|
|
|
#endif
|
2000-06-21 03:00:43 +00:00
|
|
|
down = 1;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Subtract length of original line, plus one for the newline, from
|
|
|
|
totsize. */
|
|
|
|
totsize -= (strlen(inptr->data) + 1);
|
|
|
|
|
2001-10-22 23:22:19 +00:00
|
|
|
null_at(&inptr->data, current_x);
|
2000-06-17 20:36:35 +00:00
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Now add lengths of new lines, plus two for the newlines, to totsize. */
|
|
|
|
totsize += (strlen(inptr->data) + strlen(temp->data) + 2);
|
|
|
|
|
2000-06-17 20:36:35 +00:00
|
|
|
if (ISSET(MARK_ISSET) && (mark_beginbuf == inptr)) {
|
|
|
|
mark_beginbuf = temp;
|
|
|
|
mark_beginx = 0;
|
|
|
|
}
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Category 2: two or more words on the line. */
|
|
|
|
else {
|
|
|
|
/* Case 2a: cursor before word at wrap point. */
|
2000-06-21 03:00:43 +00:00
|
|
|
if (current_x < current_word_start) {
|
|
|
|
temp->data =
|
2001-05-17 11:35:43 +00:00
|
|
|
charalloc(strlen(&inptr->data[current_word_start]) + 1);
|
2000-06-21 03:00:43 +00:00
|
|
|
strcpy(temp->data, &inptr->data[current_word_start]);
|
|
|
|
|
2000-10-02 03:42:55 +00:00
|
|
|
if (!isspace((int) input_char)) {
|
2000-06-21 03:00:43 +00:00
|
|
|
i = current_word_start - 1;
|
2001-09-27 02:46:53 +00:00
|
|
|
|
2000-10-02 03:42:55 +00:00
|
|
|
while (isspace((int) inptr->data[i])) {
|
2000-06-21 03:00:43 +00:00
|
|
|
i--;
|
|
|
|
assert(i >= 0);
|
|
|
|
}
|
|
|
|
} else if (current_x <= last_word_end)
|
|
|
|
i = last_word_end - 1;
|
|
|
|
else
|
|
|
|
i = current_x;
|
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Subtract length of original line, plus one for the newline, from
|
|
|
|
totsize. */
|
|
|
|
totsize -= (strlen(inptr->data) + 1);
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
inptr->data = nrealloc(inptr->data, i + 2);
|
|
|
|
inptr->data[i + 1] = 0;
|
2001-11-29 03:43:08 +00:00
|
|
|
|
|
|
|
/* Now add lengths of new lines, plus two for the newlines, to totsize. */
|
|
|
|
totsize += (strlen(inptr->data) + strlen(temp->data) + 2);
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
}
|
2000-06-07 03:56:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Case 2b: cursor at word at wrap point. */
|
2000-06-21 03:00:43 +00:00
|
|
|
else if ((current_x >= current_word_start)
|
|
|
|
&& (current_x <= (current_word_end + 1))) {
|
|
|
|
temp->data =
|
2001-05-17 11:35:43 +00:00
|
|
|
charalloc(strlen(&inptr->data[current_word_start]) + 1);
|
2000-06-07 03:56:54 +00:00
|
|
|
strcpy(temp->data, &inptr->data[current_word_start]);
|
|
|
|
|
|
|
|
down = 1;
|
|
|
|
|
|
|
|
right = current_x - current_word_start;
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-03-14 08:28:48 +00:00
|
|
|
if (ISSET(AUTOINDENT)) {
|
|
|
|
int i = 0;
|
2001-04-12 03:01:53 +00:00
|
|
|
while ((inptr->next->data[i] == ' '
|
|
|
|
|| inptr->next->data[i] == '\t')) {
|
2001-03-14 08:28:48 +00:00
|
|
|
i++;
|
2001-04-12 03:01:53 +00:00
|
|
|
}
|
2001-03-14 08:28:48 +00:00
|
|
|
}
|
2001-09-17 13:48:00 +00:00
|
|
|
#endif
|
2000-06-07 03:56:54 +00:00
|
|
|
i = current_word_start - 1;
|
2001-09-27 02:46:53 +00:00
|
|
|
current_x = current_word_start;
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Subtract length of original line, plus one for the newline, from
|
|
|
|
totsize. */
|
|
|
|
totsize -= (strlen(inptr->data) + 1);
|
|
|
|
|
2001-10-22 23:22:19 +00:00
|
|
|
null_at(&inptr->data, current_word_start);
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Now add lengths of new lines, plus two for the newlines, to totsize. */
|
|
|
|
totsize += (strlen(inptr->data) + strlen(temp->data) + 2);
|
2000-06-21 03:00:43 +00:00
|
|
|
}
|
2000-06-07 03:56:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Case 2c: cursor past word at wrap point. */
|
2000-06-21 03:00:43 +00:00
|
|
|
else {
|
|
|
|
temp->data =
|
2001-05-17 11:35:43 +00:00
|
|
|
charalloc(strlen(&inptr->data[current_word_start]) + 1);
|
2000-06-07 03:56:54 +00:00
|
|
|
strcpy(temp->data, &inptr->data[current_word_start]);
|
|
|
|
|
|
|
|
down = 1;
|
|
|
|
right = current_x - current_word_start;
|
|
|
|
|
|
|
|
current_x = current_word_start;
|
|
|
|
i = current_word_start - 1;
|
|
|
|
|
2000-10-02 03:42:55 +00:00
|
|
|
while (isspace((int) inptr->data[i])) {
|
2000-06-19 17:30:14 +00:00
|
|
|
i--;
|
2000-06-21 03:00:43 +00:00
|
|
|
assert(i >= 0);
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
2001-11-29 03:43:08 +00:00
|
|
|
|
|
|
|
/* Subtract length of original line, plus one for the newline, from
|
|
|
|
totsize. */
|
|
|
|
totsize -= (strlen(inptr->data) + 1);
|
|
|
|
|
|
|
|
inptr->data = nrealloc(inptr->data, i + 2);
|
|
|
|
inptr->data[i + 1] = 0;
|
|
|
|
|
|
|
|
/* Now add lengths of new lines, plus two for the newlines, to totsize. */
|
|
|
|
totsize += (strlen(inptr->data) + strlen(temp->data) + 2);
|
2000-06-21 03:00:43 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
/* We pre-pend wrapped part to next line. */
|
2000-06-17 20:36:35 +00:00
|
|
|
if (ISSET(SAMELINEWRAP) && inptr->next) {
|
2000-06-16 01:19:31 +00:00
|
|
|
int old_x = current_x, old_y = current_y;
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2001-03-14 08:28:48 +00:00
|
|
|
/* Plus one for the space which concatenates the two lines together plus 1 for \0. */
|
2001-04-12 03:01:53 +00:00
|
|
|
char *p =
|
2001-05-17 11:35:43 +00:00
|
|
|
charalloc((strlen(temp->data) + strlen(inptr->next->data) + 2));
|
2001-03-14 08:28:48 +00:00
|
|
|
|
2001-09-27 02:46:53 +00:00
|
|
|
/* We're adding to an existing line instead of creating a new
|
|
|
|
one; decrement totlines here so that when it gets incremented
|
|
|
|
below, it won't end up being high by one. */
|
|
|
|
totlines--;
|
|
|
|
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-03-14 08:28:48 +00:00
|
|
|
if (ISSET(AUTOINDENT)) {
|
|
|
|
int non = 0;
|
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
/* Grab the beginning of the next line until it's not a
|
|
|
|
space or tab, then null terminate it so we can strcat it
|
|
|
|
to hell */
|
|
|
|
while ((inptr->next->data[non] == ' '
|
2001-07-14 19:32:47 +00:00
|
|
|
|| inptr->next->data[non] == '\t')) {
|
|
|
|
p[non] = inptr->next->data[non];
|
|
|
|
non++;
|
|
|
|
}
|
2001-03-14 08:28:48 +00:00
|
|
|
p[non] = 0;
|
|
|
|
strcat(p, temp->data);
|
|
|
|
strcat(p, " ");
|
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
/* Now tack on the rest of the next line after the spaces and
|
|
|
|
tabs */
|
2001-03-14 08:28:48 +00:00
|
|
|
strcat(p, &inptr->next->data[non]);
|
2001-09-17 13:48:00 +00:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2001-03-14 08:28:48 +00:00
|
|
|
strcpy(p, temp->data);
|
|
|
|
strcat(p, " ");
|
|
|
|
strcat(p, inptr->next->data);
|
|
|
|
}
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
free(inptr->next->data);
|
2000-06-07 03:56:54 +00:00
|
|
|
inptr->next->data = p;
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
free(temp->data);
|
|
|
|
free(temp);
|
2000-06-16 01:19:31 +00:00
|
|
|
|
|
|
|
current_x = old_x;
|
|
|
|
current_y = old_y;
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
2000-06-21 03:00:43 +00:00
|
|
|
/* Else we start a new line. */
|
2000-06-07 03:56:54 +00:00
|
|
|
else {
|
2001-03-13 18:36:03 +00:00
|
|
|
|
2000-06-07 03:56:54 +00:00
|
|
|
temp->prev = inptr;
|
|
|
|
temp->next = inptr->next;
|
|
|
|
|
|
|
|
if (inptr->next)
|
|
|
|
inptr->next->prev = temp;
|
|
|
|
inptr->next = temp;
|
|
|
|
|
|
|
|
if (!temp->next)
|
|
|
|
filebot = temp;
|
|
|
|
|
|
|
|
SET(SAMELINEWRAP);
|
2001-03-13 18:36:03 +00:00
|
|
|
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-03-13 18:36:03 +00:00
|
|
|
if (ISSET(AUTOINDENT)) {
|
|
|
|
char *spc = inptr->data;
|
|
|
|
char *t = NULL;
|
|
|
|
int extra = 0;
|
|
|
|
if (spc) {
|
2001-04-12 03:01:53 +00:00
|
|
|
while ((*spc == ' ') || (*spc == '\t')) {
|
2001-03-13 18:36:03 +00:00
|
|
|
extra++;
|
|
|
|
spc++;
|
|
|
|
totsize++;
|
2002-01-16 00:54:47 +00:00
|
|
|
right++;
|
2001-03-13 18:36:03 +00:00
|
|
|
}
|
2001-05-17 11:35:43 +00:00
|
|
|
t = charalloc(strlen(temp->data) + extra + 1);
|
2001-03-13 18:36:03 +00:00
|
|
|
strncpy(t, inptr->data, extra);
|
|
|
|
strcpy(t + extra, temp->data);
|
|
|
|
free(temp->data);
|
|
|
|
temp->data = t;
|
|
|
|
}
|
|
|
|
}
|
2001-09-17 13:48:00 +00:00
|
|
|
#endif
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
totlines++;
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Everything about it makes me want this line here, but it causes
|
2000-07-24 23:18:48 +00:00
|
|
|
* totsize to be high by one for some reason. Sigh. (Rob) */
|
|
|
|
/* totsize++; */
|
2001-04-12 03:01:53 +00:00
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
renumber(inptr);
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(edittop, TOP);
|
2000-06-17 20:36:35 +00:00
|
|
|
|
2000-06-07 03:56:54 +00:00
|
|
|
|
|
|
|
/* Move the cursor to the new line if appropriate. */
|
|
|
|
if (down) {
|
|
|
|
do_right();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move the cursor to the correct spot in the line if appropriate. */
|
|
|
|
while (right--) {
|
|
|
|
do_right();
|
|
|
|
}
|
|
|
|
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(edittop, TOP);
|
2000-06-07 03:56:54 +00:00
|
|
|
reset_cursor();
|
|
|
|
edit_refresh();
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check to see if we've just caused the line to wrap to a new line */
|
2000-06-07 03:56:54 +00:00
|
|
|
void check_wrap(filestruct * inptr, char ch)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2000-06-21 03:00:43 +00:00
|
|
|
int len = strlenpt(inptr->data);
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("check_wrap called with inptr->data=\"%s\"\n"),
|
|
|
|
inptr->data);
|
|
|
|
#endif
|
|
|
|
|
2000-06-07 03:56:54 +00:00
|
|
|
if (len <= fill)
|
2000-06-06 05:53:49 +00:00
|
|
|
return;
|
2000-06-07 03:56:54 +00:00
|
|
|
else {
|
2000-06-21 03:00:43 +00:00
|
|
|
int i = actual_x(inptr, fill);
|
2000-06-07 03:56:54 +00:00
|
|
|
|
|
|
|
/* Do not wrap if there are no words on or after wrap point. */
|
2000-06-20 02:50:33 +00:00
|
|
|
int char_found = 0;
|
2000-06-07 03:56:54 +00:00
|
|
|
|
2000-10-26 01:44:42 +00:00
|
|
|
while (isspace((int) inptr->data[i]) && inptr->data[i])
|
2000-06-20 02:50:33 +00:00
|
|
|
i++;
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2000-06-20 02:50:33 +00:00
|
|
|
if (!inptr->data[i])
|
|
|
|
return;
|
2000-06-17 20:36:35 +00:00
|
|
|
|
2000-06-20 02:50:33 +00:00
|
|
|
/* String must be at least 1 character long. */
|
|
|
|
for (i = strlen(inptr->data) - 1; i >= 0; i--) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (isspace((int) inptr->data[i])) {
|
2000-06-20 02:50:33 +00:00
|
|
|
if (!char_found)
|
|
|
|
continue;
|
2000-06-21 03:00:43 +00:00
|
|
|
char_found = 2; /* 2 for yes do wrap. */
|
2000-06-20 02:50:33 +00:00
|
|
|
break;
|
2000-06-21 03:00:43 +00:00
|
|
|
} else
|
|
|
|
char_found = 1; /* 1 for yes found a word, but must check further. */
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
2000-06-20 02:50:33 +00:00
|
|
|
|
|
|
|
if (char_found == 2)
|
|
|
|
do_wrap(inptr, ch);
|
2000-06-07 03:56:54 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif /* DISABLE_WRAPPING */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* Stuff we do when we abort from programs and want to clean up the
|
2001-05-05 17:45:54 +00:00
|
|
|
* screen. This doesn't do much right now.
|
2000-06-06 05:53:49 +00:00
|
|
|
*/
|
|
|
|
void do_early_abort(void)
|
|
|
|
{
|
|
|
|
blank_statusbar_refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
int do_backspace(void)
|
|
|
|
{
|
|
|
|
filestruct *previous, *tmp;
|
|
|
|
|
|
|
|
if (current_x != 0) {
|
|
|
|
/* Let's get dangerous */
|
|
|
|
memmove(¤t->data[current_x - 1], ¤t->data[current_x],
|
|
|
|
strlen(current->data) - current_x + 1);
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("current->data now = \"%s\"\n"), current->data);
|
|
|
|
#endif
|
|
|
|
align(¤t->data);
|
|
|
|
do_left();
|
|
|
|
} else {
|
|
|
|
if (current == fileage)
|
|
|
|
return 0; /* Can't delete past top of file */
|
|
|
|
|
|
|
|
previous = current->prev;
|
|
|
|
current_x = strlen(previous->data);
|
|
|
|
previous->data = nrealloc(previous->data,
|
|
|
|
strlen(previous->data) +
|
|
|
|
strlen(current->data) + 1);
|
|
|
|
strcat(previous->data, current->data);
|
|
|
|
|
|
|
|
tmp = current;
|
|
|
|
unlink_node(current);
|
|
|
|
delete_node(current);
|
|
|
|
if (current == edittop) {
|
|
|
|
if (previous->next)
|
|
|
|
current = previous->next;
|
|
|
|
else
|
|
|
|
current = previous;
|
2001-09-22 19:02:04 +00:00
|
|
|
page_up();
|
2000-06-06 05:53:49 +00:00
|
|
|
} else {
|
|
|
|
if (previous->next)
|
|
|
|
current = previous->next;
|
|
|
|
else
|
|
|
|
current = previous;
|
|
|
|
update_line(current, current_x);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ooops, sanity check */
|
2000-06-21 03:00:43 +00:00
|
|
|
if (tmp == filebot) {
|
2000-06-06 05:53:49 +00:00
|
|
|
filebot = current;
|
|
|
|
editbot = current;
|
2000-07-05 22:47:54 +00:00
|
|
|
|
|
|
|
/* Recreate the magic line if we're deleting it AND if the
|
2000-10-26 01:44:42 +00:00
|
|
|
line we're on now is NOT blank. if it is blank we
|
|
|
|
can just use IT for the magic line. This is how Pico
|
|
|
|
appears to do it, in any case */
|
2000-07-05 22:47:54 +00:00
|
|
|
if (strcmp(current->data, "")) {
|
|
|
|
new_magicline();
|
|
|
|
fix_editbot();
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
current = previous;
|
|
|
|
renumber(current);
|
|
|
|
previous_line();
|
|
|
|
totlines--;
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("After, data = \"%s\"\n"), current->data);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
totsize--;
|
|
|
|
set_modified();
|
|
|
|
UNSET(KEEP_CUTBUFFER);
|
|
|
|
edit_refresh();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int do_delete(void)
|
|
|
|
{
|
|
|
|
filestruct *foo;
|
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* blbf -> blank line before filebot (see below) */
|
|
|
|
int blbf = 0;
|
|
|
|
|
|
|
|
if (current->next == filebot && !strcmp(current->data, ""))
|
|
|
|
blbf = 1;
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
if (current_x != strlen(current->data)) {
|
|
|
|
/* Let's get dangerous */
|
|
|
|
memmove(¤t->data[current_x], ¤t->data[current_x + 1],
|
|
|
|
strlen(current->data) - current_x);
|
|
|
|
|
|
|
|
align(¤t->data);
|
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
/* Now that we have a magic line again, we can check for both being
|
|
|
|
on the line before filebot as well as at filebot; it's a special
|
|
|
|
case if we're on the line before filebot and it's blank, since we
|
|
|
|
should be able to delete it */
|
|
|
|
} else if (current->next != NULL && (current->next != filebot || blbf)) {
|
2000-06-06 05:53:49 +00:00
|
|
|
current->data = nrealloc(current->data,
|
|
|
|
strlen(current->data) +
|
|
|
|
strlen(current->next->data) + 1);
|
|
|
|
strcat(current->data, current->next->data);
|
|
|
|
|
|
|
|
foo = current->next;
|
2000-06-21 03:00:43 +00:00
|
|
|
if (filebot == foo) {
|
2000-06-06 05:53:49 +00:00
|
|
|
filebot = current;
|
|
|
|
editbot = current;
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink_node(foo);
|
|
|
|
delete_node(foo);
|
|
|
|
update_line(current, current_x);
|
|
|
|
|
2001-02-10 17:50:50 +00:00
|
|
|
/* Please see the comment in do_backspace if you don't understand
|
2000-07-05 22:47:54 +00:00
|
|
|
this test */
|
2000-10-26 01:44:42 +00:00
|
|
|
if (current == filebot && strcmp(current->data, "")) {
|
2000-07-05 22:47:54 +00:00
|
|
|
new_magicline();
|
|
|
|
fix_editbot();
|
2000-07-06 22:38:37 +00:00
|
|
|
totsize++;
|
2000-07-05 22:47:54 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
renumber(current);
|
|
|
|
totlines--;
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
totsize--;
|
|
|
|
set_modified();
|
|
|
|
UNSET(KEEP_CUTBUFFER);
|
|
|
|
edit_refresh();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wrap_reset(void)
|
|
|
|
{
|
|
|
|
UNSET(SAMELINEWRAP);
|
|
|
|
}
|
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
int do_int_spell_fix(char *word)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2000-11-05 16:52:21 +00:00
|
|
|
char *prevanswer = NULL, *save_search = NULL, *save_replace = NULL;
|
2000-11-29 04:33:26 +00:00
|
|
|
filestruct *begin;
|
2002-01-21 20:32:22 +00:00
|
|
|
int i = 0, j = 0, beginx, beginx_top, reverse_search_set;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
/* save where we are */
|
|
|
|
begin = current;
|
|
|
|
beginx = current_x + 1;
|
|
|
|
|
2002-01-21 20:32:22 +00:00
|
|
|
/* Make sure Spell Check goes forward only */
|
|
|
|
reverse_search_set = ISSET(REVERSE_SEARCH);
|
|
|
|
UNSET(REVERSE_SEARCH);
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
/* save the current search/replace strings */
|
|
|
|
search_init_globals();
|
|
|
|
save_search = mallocstrcpy(save_search, last_search);
|
|
|
|
save_replace = mallocstrcpy(save_replace, last_replace);
|
|
|
|
|
|
|
|
/* set search/replace strings to mis-spelt word */
|
|
|
|
prevanswer = mallocstrcpy(prevanswer, word);
|
|
|
|
last_search = mallocstrcpy(last_search, word);
|
|
|
|
last_replace = mallocstrcpy(last_replace, word);
|
|
|
|
|
|
|
|
/* start from the top of file */
|
2000-11-29 04:33:26 +00:00
|
|
|
current = fileage;
|
|
|
|
current_x = beginx_top = -1;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
search_last_line = FALSE;
|
|
|
|
|
2000-11-29 04:33:26 +00:00
|
|
|
edit_update(fileage, TOP);
|
|
|
|
|
2002-01-08 15:00:24 +00:00
|
|
|
while (1) {
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2002-01-08 15:00:24 +00:00
|
|
|
/* make sure word is still mis-spelt (i.e. when multi-errors) */
|
|
|
|
if (findnextstr(TRUE, FALSE, fileage, beginx_top, prevanswer) != NULL) {
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2002-01-08 15:00:24 +00:00
|
|
|
/* find wholewords only */
|
|
|
|
if (!is_whole_word(current_x, current, prevanswer))
|
|
|
|
continue;
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2002-01-08 15:00:24 +00:00
|
|
|
do_replace_highlight(TRUE, prevanswer);
|
|
|
|
|
|
|
|
/* allow replace word to be corrected */
|
2002-02-15 19:17:02 +00:00
|
|
|
i = statusq(0, spell_list, last_replace, _("Edit a replacement"));
|
2002-01-08 15:00:24 +00:00
|
|
|
|
|
|
|
do_replace_highlight(FALSE, prevanswer);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2002-01-08 15:00:24 +00:00
|
|
|
/* start from the start of this line again */
|
|
|
|
current = fileage;
|
|
|
|
current_x = beginx_top;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2002-01-08 15:00:24 +00:00
|
|
|
search_last_line = FALSE;
|
|
|
|
|
|
|
|
if (strcmp(prevanswer,answer) != 0) {
|
|
|
|
j = i;
|
|
|
|
do_replace_loop(prevanswer, fileage, &beginx_top, TRUE, &j);
|
|
|
|
}
|
2001-12-02 06:03:22 +00:00
|
|
|
}
|
2002-01-08 15:00:24 +00:00
|
|
|
|
|
|
|
break;
|
2002-01-13 03:18:03 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
/* restore the search/replace strings */
|
|
|
|
last_search = mallocstrcpy(last_search, save_search);
|
|
|
|
last_replace = mallocstrcpy(last_replace, save_replace);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
/* restore where we were */
|
|
|
|
current = begin;
|
|
|
|
current_x = beginx - 1;
|
|
|
|
|
2002-01-21 20:32:22 +00:00
|
|
|
/* restore Search/Replace direction */
|
|
|
|
if (reverse_search_set)
|
|
|
|
SET(REVERSE_SEARCH);
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
edit_update(current, CENTER);
|
|
|
|
|
|
|
|
if (i == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Integrated spell checking using 'spell' program */
|
2000-11-10 18:15:43 +00:00
|
|
|
int do_int_speller(char *tempfile_name)
|
2000-11-05 16:52:21 +00:00
|
|
|
{
|
2000-11-10 18:15:43 +00:00
|
|
|
char *read_buff, *read_buff_ptr, *read_buff_word;
|
|
|
|
long pipe_buff_size;
|
|
|
|
int in_fd[2], tempfile_fd;
|
2000-11-05 16:52:21 +00:00
|
|
|
int spell_status;
|
|
|
|
pid_t pid_spell;
|
|
|
|
ssize_t bytesread;
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Create a pipe to spell program */
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
if (pipe(in_fd) == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* A new process to run spell in */
|
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
if ((pid_spell = fork()) == 0) {
|
2000-11-10 18:15:43 +00:00
|
|
|
|
|
|
|
/* Child continues, (i.e. future spell process) */
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
close(in_fd[0]);
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* replace the standard in with the tempfile */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
if ((tempfile_fd = open(tempfile_name, O_RDONLY)) == -1) {
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
close(in_fd[1]);
|
|
|
|
exit(1);
|
|
|
|
}
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
if (dup2(tempfile_fd, STDIN_FILENO) != STDIN_FILENO) {
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
close(tempfile_fd);
|
|
|
|
close(in_fd[1]);
|
|
|
|
exit(1);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2000-11-10 18:15:43 +00:00
|
|
|
close(tempfile_fd);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* send spell's standard out to the pipe */
|
|
|
|
|
|
|
|
if (dup2(in_fd[1], STDOUT_FILENO) != STDOUT_FILENO) {
|
|
|
|
|
|
|
|
close(in_fd[1]);
|
|
|
|
exit(1);
|
2000-11-05 16:52:21 +00:00
|
|
|
}
|
2000-11-10 18:15:43 +00:00
|
|
|
close(in_fd[1]);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Start spell program, we are using the PATH here!?!? */
|
2000-11-05 16:52:21 +00:00
|
|
|
execlp("spell", "spell", NULL);
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Should not be reached, if spell is found!!! */
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
exit(1);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
/* Parent continues here */
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
close(in_fd[1]);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Child process was not forked successfully */
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
if (pid_spell < 0) {
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
close(in_fd[0]);
|
2000-11-05 16:52:21 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Get system pipe buffer size */
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
if ((pipe_buff_size = fpathconf(in_fd[0], _PC_PIPE_BUF)) < 1) {
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
close(in_fd[0]);
|
|
|
|
return FALSE;
|
2000-11-05 16:52:21 +00:00
|
|
|
}
|
|
|
|
|
2001-05-17 11:35:43 +00:00
|
|
|
read_buff = charalloc(pipe_buff_size + 1);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Process the returned spelling errors */
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
while ((bytesread = read(in_fd[0], read_buff, pipe_buff_size)) > 0) {
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
read_buff[bytesread] = (char) NULL;
|
|
|
|
read_buff_word = read_buff_ptr = read_buff;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
while (*read_buff_ptr != (char) NULL) {
|
|
|
|
|
|
|
|
/* Windows version may need to process additional char '\r' */
|
|
|
|
|
|
|
|
/* Possible problem here if last word not followed by '\n' */
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
if (*read_buff_ptr == '\n') {
|
2000-11-10 18:15:43 +00:00
|
|
|
*read_buff_ptr = (char) NULL;
|
2001-04-12 03:01:53 +00:00
|
|
|
if (!do_int_spell_fix(read_buff_word)) {
|
2000-11-10 18:15:43 +00:00
|
|
|
|
|
|
|
close(in_fd[0]);
|
|
|
|
free(read_buff);
|
|
|
|
replace_abort();
|
|
|
|
|
|
|
|
return TRUE;
|
2001-04-12 03:01:53 +00:00
|
|
|
}
|
2000-11-10 18:15:43 +00:00
|
|
|
read_buff_word = read_buff_ptr;
|
|
|
|
read_buff_word++;
|
2000-11-05 16:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
read_buff_ptr++;
|
|
|
|
}
|
|
|
|
}
|
2000-11-10 18:15:43 +00:00
|
|
|
|
|
|
|
close(in_fd[0]);
|
|
|
|
free(read_buff);
|
2000-11-05 16:52:21 +00:00
|
|
|
replace_abort();
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Process end of spell process */
|
|
|
|
|
|
|
|
wait(&spell_status);
|
|
|
|
if (WIFEXITED(spell_status)) {
|
|
|
|
if (WEXITSTATUS(spell_status) != 0)
|
|
|
|
return FALSE;
|
2001-04-12 03:01:53 +00:00
|
|
|
} else
|
2000-11-10 18:15:43 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* External spell checking */
|
2000-11-10 18:15:43 +00:00
|
|
|
int do_alt_speller(char *file_name)
|
2000-11-05 16:52:21 +00:00
|
|
|
{
|
2001-10-22 03:15:31 +00:00
|
|
|
int alt_spell_status, lineno_cur = current->lineno;
|
|
|
|
int x_cur = current_x, y_cur = current_y, pww_cur = placewewant;
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
pid_t pid_spell;
|
2001-01-26 01:57:32 +00:00
|
|
|
char *ptr;
|
|
|
|
static int arglen = 3;
|
|
|
|
static char **spellargs = (char **) NULL;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
endwin();
|
|
|
|
|
2001-01-27 19:25:00 +00:00
|
|
|
/* Set up an argument list to pass the execvp function */
|
|
|
|
if (spellargs == NULL) {
|
|
|
|
spellargs = nmalloc(arglen * sizeof(char *));
|
|
|
|
|
|
|
|
spellargs[0] = strtok(alt_speller, " ");
|
|
|
|
while ((ptr = strtok(NULL, " ")) != NULL) {
|
|
|
|
arglen++;
|
|
|
|
spellargs = nrealloc(spellargs, arglen * sizeof(char *));
|
|
|
|
spellargs[arglen - 3] = ptr;
|
|
|
|
}
|
|
|
|
spellargs[arglen - 1] = NULL;
|
|
|
|
}
|
|
|
|
spellargs[arglen - 2] = file_name;
|
2000-11-10 18:15:43 +00:00
|
|
|
|
2001-01-27 19:25:00 +00:00
|
|
|
/* Start a new process for the alternate speller */
|
2001-04-12 03:01:53 +00:00
|
|
|
if ((pid_spell = fork()) == 0) {
|
2000-11-10 18:15:43 +00:00
|
|
|
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Start alternate spell program; we are using the PATH here!?!? */
|
2001-01-26 01:57:32 +00:00
|
|
|
execvp(spellargs[0], spellargs);
|
2000-11-10 18:15:43 +00:00
|
|
|
|
|
|
|
/* Should not be reached, if alternate speller is found!!! */
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Could not fork?? */
|
|
|
|
|
|
|
|
if (pid_spell < 0)
|
2000-11-05 16:52:21 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
/* Wait for alternate speller to complete */
|
|
|
|
|
|
|
|
wait(&alt_spell_status);
|
|
|
|
if (WIFEXITED(alt_spell_status)) {
|
|
|
|
if (WEXITSTATUS(alt_spell_status) != 0)
|
|
|
|
return FALSE;
|
2001-04-12 03:01:53 +00:00
|
|
|
} else
|
2000-11-10 18:15:43 +00:00
|
|
|
return FALSE;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
refresh();
|
2000-06-06 05:53:49 +00:00
|
|
|
free_filestruct(fileage);
|
2001-09-27 02:46:53 +00:00
|
|
|
global_init(1);
|
2000-11-05 16:52:21 +00:00
|
|
|
open_file(file_name, 0, 1);
|
2001-04-20 01:59:55 +00:00
|
|
|
|
2001-09-28 21:59:01 +00:00
|
|
|
/* go back to the old position, mark the file as modified, and make
|
|
|
|
sure that the titlebar is refreshed */
|
|
|
|
do_gotopos(lineno_cur, x_cur, y_cur, pww_cur);
|
2000-06-06 05:53:49 +00:00
|
|
|
set_modified();
|
2001-09-19 03:19:43 +00:00
|
|
|
clearok(topwin, FALSE);
|
|
|
|
titlebar(NULL);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int do_spell(void)
|
|
|
|
{
|
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifdef DISABLE_SPELLER
|
2000-12-01 18:46:01 +00:00
|
|
|
nano_disabled_msg();
|
|
|
|
return (TRUE);
|
2000-11-05 16:52:21 +00:00
|
|
|
#else
|
2000-11-10 18:15:43 +00:00
|
|
|
char *temp;
|
|
|
|
int spell_res;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if ((temp = safe_tempnam(0, "nano.")) == NULL) {
|
2000-11-10 18:15:43 +00:00
|
|
|
statusbar(_("Could not create a temporary filename: %s"),
|
2001-04-12 03:01:53 +00:00
|
|
|
strerror(errno));
|
2000-11-10 18:15:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2001-06-05 23:24:55 +00:00
|
|
|
if (write_file(temp, 1, 0, 0) == -1) {
|
2000-12-02 04:36:50 +00:00
|
|
|
statusbar(_("Spell checking failed: unable to write temp file!"));
|
2000-11-10 18:15:43 +00:00
|
|
|
return 0;
|
2000-12-02 04:36:50 +00:00
|
|
|
}
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
|
|
|
/* update the current open_files entry before spell-checking, in case
|
|
|
|
any problems occur; the case of there being no open_files entries
|
|
|
|
is handled elsewhere (before we reach this point); no duplicate
|
|
|
|
checking is needed here */
|
|
|
|
add_open_file(1, 0);
|
|
|
|
#endif
|
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
if (alt_speller)
|
|
|
|
spell_res = do_alt_speller(temp);
|
|
|
|
else
|
|
|
|
spell_res = do_int_speller(temp);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2000-11-10 18:15:43 +00:00
|
|
|
remove(temp);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
|
|
|
if (spell_res)
|
|
|
|
statusbar(_("Finished checking spelling"));
|
|
|
|
else
|
|
|
|
statusbar(_("Spell checking failed"));
|
|
|
|
|
|
|
|
return spell_res;
|
|
|
|
|
2000-07-03 03:10:14 +00:00
|
|
|
#endif
|
2000-07-03 03:18:32 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
int do_exit(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2001-07-11 02:08:33 +00:00
|
|
|
if (!ISSET(MODIFIED)) {
|
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
if (!close_open_file()) {
|
|
|
|
display_main_list();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
|
|
|
|
finish(0);
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-14 01:20:12 +00:00
|
|
|
if (ISSET(TEMP_OPT)) {
|
2000-06-06 05:53:49 +00:00
|
|
|
i = 1;
|
|
|
|
} else {
|
2001-04-12 03:01:53 +00:00
|
|
|
i = do_yesno(0, 0,
|
2000-06-06 05:53:49 +00:00
|
|
|
_
|
|
|
|
("Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
dump_buffer(fileage);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (i == 1) {
|
2001-07-11 02:08:33 +00:00
|
|
|
if (do_writeout(filename, 1, 0) > 0) {
|
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
if (!close_open_file()) {
|
|
|
|
display_main_list();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
|
|
|
|
finish(0);
|
|
|
|
}
|
|
|
|
} else if (i == 0) {
|
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
if (!close_open_file()) {
|
|
|
|
display_main_list();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
finish(0);
|
2001-07-11 02:08:33 +00:00
|
|
|
} else
|
2000-06-06 05:53:49 +00:00
|
|
|
statusbar(_("Cancelled"));
|
|
|
|
|
|
|
|
display_main_list();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-04-12 14:51:48 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef NCURSES_MOUSE_VERSION
|
|
|
|
void do_mouse(void)
|
|
|
|
{
|
|
|
|
MEVENT mevent;
|
2000-08-22 01:26:42 +00:00
|
|
|
int foo = 0, tab_found = 0;
|
2002-02-15 19:17:02 +00:00
|
|
|
int currslen;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
if (getmouse(&mevent) == ERR)
|
|
|
|
return;
|
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
/* If mouse not in edit or bottom window, return */
|
|
|
|
if (wenclose(edit, mevent.y, mevent.x)) {
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
/* Don't let people screw with the marker when they're in a
|
|
|
|
subfunction */
|
|
|
|
if (currshortcut != main_list)
|
2000-06-06 05:53:49 +00:00
|
|
|
return;
|
2001-04-12 03:01:53 +00:00
|
|
|
|
|
|
|
/* Subtract out size of topwin. Perhaps we need a constant somewhere? */
|
|
|
|
mevent.y -= 2;
|
|
|
|
|
|
|
|
/* Selecting where the cursor is sets the mark.
|
|
|
|
* Selecting beyond the line length with the cursor at the end of the
|
|
|
|
* line sets the mark as well.
|
|
|
|
*/
|
|
|
|
if ((mevent.y == current_y) &&
|
|
|
|
((mevent.x == current_x) || (current_x == strlen(current->data)
|
|
|
|
&& (mevent.x >
|
|
|
|
strlen(current->data))))) {
|
|
|
|
if (ISSET(VIEW_MODE)) {
|
|
|
|
print_view_warning();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
do_mark();
|
|
|
|
} else if (mevent.y > current_y) {
|
|
|
|
while (mevent.y > current_y) {
|
|
|
|
if (current->next != NULL)
|
|
|
|
current = current->next;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
current_y++;
|
|
|
|
}
|
|
|
|
} else if (mevent.y < current_y) {
|
|
|
|
while (mevent.y < current_y) {
|
|
|
|
if (current->prev != NULL)
|
|
|
|
current = current->prev;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
current_y--;
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-04-12 03:01:53 +00:00
|
|
|
current_x = mevent.x;
|
|
|
|
placewewant = current_x;
|
|
|
|
while (foo < current_x) {
|
|
|
|
if (current->data[foo] == NANO_CONTROL_I) {
|
|
|
|
current_x -= tabsize - (foo % tabsize);
|
|
|
|
tab_found = 1;
|
|
|
|
} else if (current->data[foo] & 0x80);
|
|
|
|
else if (current->data[foo] < 32)
|
|
|
|
current_x--;
|
|
|
|
foo++;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2001-04-12 03:01:53 +00:00
|
|
|
/* This is where tab_found comes in. I can't figure out why,
|
|
|
|
* but without it any line with a tab will place the cursor
|
|
|
|
* one character behind. Whatever, this fixes it. */
|
|
|
|
if (tab_found == 1)
|
|
|
|
current_x++;
|
2000-08-22 01:26:42 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
if (current_x > strlen(current->data))
|
|
|
|
current_x = strlen(current->data);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
update_cursor();
|
|
|
|
edit_refresh();
|
|
|
|
} else if (wenclose(bottomwin, mevent.y, mevent.x) && !ISSET(NO_HELP)) {
|
2001-09-27 21:07:39 +00:00
|
|
|
|
|
|
|
int k, val = 0;
|
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if (currshortcut == main_list)
|
|
|
|
currslen = MAIN_VISIBLE;
|
|
|
|
else
|
|
|
|
currslen = length_of_list(currshortcut);
|
|
|
|
|
2001-09-27 21:07:39 +00:00
|
|
|
if (currslen < 2)
|
|
|
|
k = COLS / 6;
|
|
|
|
else
|
|
|
|
k = COLS / ((currslen + (currslen %2)) / 2);
|
2001-04-12 03:01:53 +00:00
|
|
|
|
|
|
|
/* Determine what shortcut list was clicked */
|
|
|
|
mevent.y -= (editwinrows + 3);
|
|
|
|
|
|
|
|
if (mevent.y < 0) /* They clicked on the statusbar */
|
|
|
|
return;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-04-12 03:01:53 +00:00
|
|
|
/* Don't select stuff beyond list length */
|
|
|
|
if (mevent.x / k >= currslen)
|
|
|
|
return;
|
|
|
|
|
|
|
|
val = currshortcut[(mevent.x / k) * 2 + mevent.y].val;
|
|
|
|
|
|
|
|
/* And ungetch that value */
|
|
|
|
ungetch(val);
|
2001-09-21 03:21:11 +00:00
|
|
|
|
|
|
|
/* And if it's an alt-key sequence, we should probably send alt
|
|
|
|
too ;-) */
|
|
|
|
if (val >= 'a' && val <= 'z')
|
|
|
|
ungetch(27);
|
2001-04-12 03:01:53 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Handler for SIGHUP */
|
|
|
|
RETSIGTYPE handle_hup(int signal)
|
|
|
|
{
|
2000-12-02 02:36:22 +00:00
|
|
|
die(_("Received SIGHUP"));
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2000-09-04 03:20:38 +00:00
|
|
|
/* What do we do when we catch the suspend signal */
|
|
|
|
RETSIGTYPE do_suspend(int signal)
|
|
|
|
{
|
|
|
|
endwin();
|
2001-06-28 16:52:52 +00:00
|
|
|
printf("\n\n\n\n\nUse \"fg\" to return to nano\n");
|
|
|
|
fflush(stdout);
|
|
|
|
|
2002-01-10 12:44:21 +00:00
|
|
|
/* Restore the terminal settings for the disabled keys */
|
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
|
|
|
|
2001-06-28 16:52:52 +00:00
|
|
|
/* We used to re-enable the default SIG_DFL and raise SIGTSTP, but
|
|
|
|
then we could be (and were) interrupted in the middle of the call.
|
|
|
|
So we do it the mutt way instead */
|
|
|
|
kill(0, SIGSTOP);
|
2000-09-04 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore the suspend handler when we come back into the prog */
|
|
|
|
RETSIGTYPE do_cont(int signal)
|
|
|
|
{
|
|
|
|
|
2001-06-28 16:52:52 +00:00
|
|
|
/* Now we just update the screen instead of having to reenable the
|
|
|
|
SIGTSTP handler */
|
|
|
|
|
|
|
|
doupdate();
|
2001-12-17 04:34:23 +00:00
|
|
|
/* The Hurd seems to need this, otherwise a ^Y after a ^Z will
|
|
|
|
start suspending again */
|
|
|
|
signal_init();
|
2000-09-04 03:20:38 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
void handle_sigwinch(int s)
|
|
|
|
{
|
|
|
|
#ifndef NANO_SMALL
|
|
|
|
char *tty = NULL;
|
|
|
|
int fd = 0;
|
|
|
|
int result = 0;
|
|
|
|
struct winsize win;
|
|
|
|
|
|
|
|
tty = ttyname(0);
|
|
|
|
if (!tty)
|
|
|
|
return;
|
|
|
|
fd = open(tty, O_RDWR);
|
|
|
|
if (fd == -1)
|
|
|
|
return;
|
|
|
|
result = ioctl(fd, TIOCGWINSZ, &win);
|
|
|
|
if (result == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
COLS = win.ws_col;
|
|
|
|
LINES = win.ws_row;
|
|
|
|
|
2001-01-14 05:18:27 +00:00
|
|
|
if ((editwinrows = LINES - 5 + no_help()) < MIN_EDITOR_ROWS)
|
|
|
|
die_too_small();
|
|
|
|
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2001-01-14 05:18:27 +00:00
|
|
|
if ((fill = COLS - CHARS_FROM_EOL) < MIN_FILL_LENGTH)
|
|
|
|
die_too_small();
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-01-23 02:35:04 +00:00
|
|
|
hblank = nrealloc(hblank, COLS + 1);
|
|
|
|
memset(hblank, ' ', COLS);
|
|
|
|
hblank[COLS] = 0;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-02-16 04:48:30 +00:00
|
|
|
#ifdef HAVE_RESIZETERM
|
2000-06-06 05:53:49 +00:00
|
|
|
resizeterm(LINES, COLS);
|
|
|
|
#ifdef HAVE_WRESIZE
|
|
|
|
if (wresize(topwin, 2, COLS) == ERR)
|
|
|
|
die(_("Cannot resize top win"));
|
|
|
|
if (mvwin(topwin, 0, 0) == ERR)
|
|
|
|
die(_("Cannot move top win"));
|
|
|
|
if (wresize(edit, editwinrows, COLS) == ERR)
|
|
|
|
die(_("Cannot resize edit win"));
|
|
|
|
if (mvwin(edit, 2, 0) == ERR)
|
|
|
|
die(_("Cannot move edit win"));
|
|
|
|
if (wresize(bottomwin, 3 - no_help(), COLS) == ERR)
|
|
|
|
die(_("Cannot resize bottom win"));
|
|
|
|
if (mvwin(bottomwin, LINES - 3 + no_help(), 0) == ERR)
|
|
|
|
die(_("Cannot move bottom win"));
|
|
|
|
#endif /* HAVE_WRESIZE */
|
2001-02-16 04:48:30 +00:00
|
|
|
#endif /* HAVE_RESIZETERM */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-04 02:35:19 +00:00
|
|
|
fix_editbot();
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
if (current_y > editwinrows - 1) {
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(editbot, CENTER);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
erase();
|
2000-06-19 05:45:52 +00:00
|
|
|
|
|
|
|
/* Do these b/c width may have changed... */
|
2000-06-06 05:53:49 +00:00
|
|
|
refresh();
|
2001-01-03 07:11:47 +00:00
|
|
|
titlebar(NULL);
|
2000-06-19 05:45:52 +00:00
|
|
|
edit_refresh();
|
|
|
|
display_main_list();
|
2001-01-29 23:37:54 +00:00
|
|
|
blank_statusbar();
|
2000-06-06 05:53:49 +00:00
|
|
|
total_refresh();
|
2001-01-29 23:37:54 +00:00
|
|
|
|
2001-01-29 23:40:43 +00:00
|
|
|
/* Turn cursor back on for sure */
|
|
|
|
curs_set(1);
|
|
|
|
|
2001-01-29 23:37:54 +00:00
|
|
|
/* Jump back to mainloop */
|
|
|
|
siglongjmp(jmpbuf, 1);
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
void signal_init(void)
|
|
|
|
{
|
2001-06-30 04:09:09 +00:00
|
|
|
#ifdef _POSIX_VDISABLE
|
|
|
|
struct termios term;
|
|
|
|
#endif
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Trap SIGINT and SIGQUIT cuz we want them to do useful things. */
|
2000-09-01 13:32:47 +00:00
|
|
|
memset(&act, 0, sizeof(struct sigaction));
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGINT, &act, NULL);
|
|
|
|
|
2001-06-28 16:52:52 +00:00
|
|
|
/* Trap SIGHUP cuz we want to write the file out. */
|
|
|
|
act.sa_handler = handle_hup;
|
|
|
|
sigaction(SIGHUP, &act, NULL);
|
|
|
|
|
|
|
|
act.sa_handler = handle_sigwinch;
|
|
|
|
sigaction(SIGWINCH, &act, NULL);
|
|
|
|
|
2001-12-17 04:34:23 +00:00
|
|
|
|
|
|
|
#ifdef _POSIX_VDISABLE
|
|
|
|
tcgetattr(0, &term);
|
|
|
|
|
|
|
|
#ifdef VDSUSP
|
|
|
|
term.c_cc[VDSUSP] = _POSIX_VDISABLE;
|
|
|
|
#endif /* VDSUSP */
|
|
|
|
|
|
|
|
#endif /* _POSIX_VDISABLE */
|
|
|
|
|
2000-09-04 03:20:38 +00:00
|
|
|
if (!ISSET(SUSPEND)) {
|
2001-06-30 04:09:09 +00:00
|
|
|
|
|
|
|
/* Insane! */
|
|
|
|
#ifdef _POSIX_VDISABLE
|
|
|
|
term.c_cc[VSUSP] = _POSIX_VDISABLE;
|
2001-12-17 04:34:23 +00:00
|
|
|
#else
|
2001-06-30 04:09:09 +00:00
|
|
|
act.sa_handler = SIG_IGN;
|
2000-09-04 03:20:38 +00:00
|
|
|
sigaction(SIGTSTP, &act, NULL);
|
2001-12-17 04:34:23 +00:00
|
|
|
#endif
|
2001-06-30 04:09:09 +00:00
|
|
|
|
2000-10-26 01:44:42 +00:00
|
|
|
} else {
|
2001-06-28 16:52:52 +00:00
|
|
|
/* if we don't do this, it seems other stuff interrupts the
|
|
|
|
suspend handler! Try using nano with mutt without this line */
|
|
|
|
sigfillset(&act.sa_mask);
|
|
|
|
|
2000-09-04 03:20:38 +00:00
|
|
|
act.sa_handler = do_suspend;
|
2000-09-01 13:32:47 +00:00
|
|
|
sigaction(SIGTSTP, &act, NULL);
|
|
|
|
|
2000-09-04 03:20:38 +00:00
|
|
|
act.sa_handler = do_cont;
|
2000-10-26 01:44:42 +00:00
|
|
|
sigaction(SIGCONT, &act, NULL);
|
2000-09-04 03:20:38 +00:00
|
|
|
}
|
|
|
|
|
2001-12-17 04:34:23 +00:00
|
|
|
|
|
|
|
#ifdef _POSIX_VDISABLE
|
|
|
|
tcsetattr(0, TCSANOW, &term);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
}
|
|
|
|
|
2000-09-12 23:02:49 +00:00
|
|
|
void window_init(void)
|
|
|
|
{
|
2001-01-14 05:18:27 +00:00
|
|
|
if ((editwinrows = LINES - 5 + no_help()) < MIN_EDITOR_ROWS)
|
|
|
|
die_too_small();
|
2000-09-13 14:03:27 +00:00
|
|
|
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Set up the main text window */
|
2000-09-12 23:02:49 +00:00
|
|
|
edit = newwin(editwinrows, COLS, 2, 0);
|
|
|
|
|
|
|
|
/* And the other windows */
|
|
|
|
topwin = newwin(2, COLS, 0, 0);
|
2000-10-26 01:44:42 +00:00
|
|
|
bottomwin = newwin(3 - no_help(), COLS, LINES - 3 + no_help(), 0);
|
2001-01-04 02:33:52 +00:00
|
|
|
|
2001-01-08 01:50:37 +00:00
|
|
|
#ifdef PDCURSES
|
|
|
|
/* Oops, I guess we need this again.
|
|
|
|
Moved here so the keypad still works after a Meta-X, for example */
|
|
|
|
keypad(edit, TRUE);
|
|
|
|
keypad(bottomwin, TRUE);
|
|
|
|
#endif
|
|
|
|
|
2000-09-12 23:02:49 +00:00
|
|
|
}
|
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
void mouse_init(void)
|
|
|
|
{
|
2001-04-12 14:51:48 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2000-09-01 13:32:47 +00:00
|
|
|
#ifdef NCURSES_MOUSE_VERSION
|
|
|
|
if (ISSET(USE_MOUSE)) {
|
2001-01-06 18:12:43 +00:00
|
|
|
keypad_on(edit, 1);
|
2001-04-12 03:01:53 +00:00
|
|
|
keypad_on(bottomwin, 1);
|
2001-01-06 18:12:43 +00:00
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
mousemask(BUTTON1_RELEASED, NULL);
|
|
|
|
mouseinterval(50);
|
2000-09-15 15:46:32 +00:00
|
|
|
|
2001-01-04 02:33:52 +00:00
|
|
|
} else
|
2000-09-01 13:32:47 +00:00
|
|
|
mousemask(0, NULL);
|
2001-01-04 02:33:52 +00:00
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
int do_tab(void)
|
|
|
|
{
|
|
|
|
do_char('\t');
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2000-06-06 05:53:49 +00:00
|
|
|
int empty_line(const char *data)
|
|
|
|
{
|
|
|
|
while (*data) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (!isspace((int) *data))
|
2000-06-06 05:53:49 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int no_spaces(const char *data)
|
|
|
|
{
|
|
|
|
while (*data) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (isspace((int) *data))
|
2000-06-06 05:53:49 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void justify_format(char *data)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int len = strlen(data);
|
|
|
|
|
|
|
|
/* Skip first character regardless and leading whitespace. */
|
|
|
|
for (i = 1; i < len; i++) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (!isspace((int) data[i]))
|
2000-06-06 05:53:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++; /* (i) is now at least 2. */
|
|
|
|
|
|
|
|
/* No double spaces allowed unless following a period. Tabs -> space. No double tabs. */
|
|
|
|
for (; i < len; i++) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (isspace((int) data[i]) && isspace((int) data[i - 1])
|
2000-06-06 05:53:49 +00:00
|
|
|
&& (data[i - 2] != '.')) {
|
|
|
|
memmove(data + i, data + i + 1, len - i);
|
|
|
|
len--;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int do_justify(void)
|
|
|
|
{
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifdef DISABLE_JUSTIFY
|
2000-12-01 18:46:01 +00:00
|
|
|
nano_disabled_msg();
|
|
|
|
return 1;
|
|
|
|
#else
|
2000-06-06 05:53:49 +00:00
|
|
|
int slen = 0; /* length of combined lines on one line. */
|
2001-01-20 21:40:07 +00:00
|
|
|
int initial_y, kbinput = 0, totbak;
|
2000-11-27 00:23:41 +00:00
|
|
|
filestruct *initial = NULL, *tmpjust = NULL, *cutbak, *tmptop, *tmpbot;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
if (empty_line(current->data)) {
|
|
|
|
/* Justify starting at first non-empty line. */
|
|
|
|
do {
|
|
|
|
if (!current->next)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
current = current->next;
|
|
|
|
current_y++;
|
|
|
|
}
|
|
|
|
while (empty_line(current->data));
|
|
|
|
} else {
|
|
|
|
/* Search back for the beginning of the paragraph, where
|
|
|
|
* Paragraph is 1) A line with leading whitespace
|
|
|
|
* or 2) A line following an empty line.
|
|
|
|
*/
|
|
|
|
while (current->prev != NULL) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (isspace((int) current->data[0]) || !current->data[0])
|
2000-06-06 05:53:49 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
current = current->prev;
|
|
|
|
current_y--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First line with leading whitespace may be empty. */
|
|
|
|
if (empty_line(current->data)) {
|
|
|
|
if (current->next) {
|
|
|
|
current = current->next;
|
|
|
|
current_y++;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
initial = current;
|
|
|
|
initial_y = current_y;
|
|
|
|
|
|
|
|
set_modified();
|
2001-04-12 03:01:53 +00:00
|
|
|
cutbak = cutbuffer; /* Got to like cutbak ;) */
|
2001-01-20 21:40:07 +00:00
|
|
|
totbak = totsize;
|
2000-11-27 00:23:41 +00:00
|
|
|
cutbuffer = NULL;
|
|
|
|
|
|
|
|
tmptop = current;
|
|
|
|
tmpjust = copy_node(current);
|
2001-01-21 23:23:48 +00:00
|
|
|
|
|
|
|
/* This is annoying because it mucks with totsize */
|
2000-11-27 00:23:41 +00:00
|
|
|
add_to_cutbuffer(tmpjust);
|
2001-01-21 23:23:48 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* Put the whole paragraph into one big line. */
|
2000-10-02 03:42:55 +00:00
|
|
|
while (current->next && !isspace((int) current->next->data[0])
|
2000-06-06 05:53:49 +00:00
|
|
|
&& current->next->data[0]) {
|
|
|
|
filestruct *tmpnode = current->next;
|
|
|
|
int len = strlen(current->data);
|
|
|
|
int len2 = strlen(current->next->data);
|
|
|
|
|
2000-11-27 00:23:41 +00:00
|
|
|
tmpjust = NULL;
|
|
|
|
tmpjust = copy_node(current->next);
|
|
|
|
add_to_cutbuffer(tmpjust);
|
|
|
|
|
2001-01-21 23:23:48 +00:00
|
|
|
/* Wiping out a newline */
|
2001-04-12 03:01:53 +00:00
|
|
|
totsize--;
|
2001-01-21 23:23:48 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* length of both strings plus space between strings and ending \0. */
|
|
|
|
current->data = nrealloc(current->data, len + len2 + 2);
|
|
|
|
current->data[len++] = ' ';
|
|
|
|
current->data[len] = '\0';
|
|
|
|
|
|
|
|
strncat(current->data, current->next->data, len2);
|
|
|
|
|
|
|
|
unlink_node(tmpnode);
|
|
|
|
delete_node(tmpnode);
|
|
|
|
}
|
|
|
|
|
|
|
|
justify_format(current->data);
|
|
|
|
|
|
|
|
slen = strlen(current->data);
|
2000-07-24 23:18:48 +00:00
|
|
|
totsize += slen;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-10-26 01:44:42 +00:00
|
|
|
if ((strlenpt(current->data) > (fill))
|
|
|
|
&& !no_spaces(current->data)) {
|
2000-07-24 23:18:48 +00:00
|
|
|
do {
|
|
|
|
int i = 0;
|
|
|
|
int len2 = 0;
|
|
|
|
filestruct *tmpline = nmalloc(sizeof(filestruct));
|
|
|
|
|
|
|
|
/* Start at fill , unless line isn't that long (but it
|
|
|
|
* appears at least fill long with tabs.
|
|
|
|
*/
|
|
|
|
if (slen > fill)
|
|
|
|
i = fill;
|
|
|
|
else
|
|
|
|
i = slen;
|
2001-01-21 23:23:48 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
for (; i > 0; i--) {
|
2000-10-02 03:42:55 +00:00
|
|
|
if (isspace((int) current->data[i]) &&
|
2000-10-26 01:44:42 +00:00
|
|
|
((strlenpt(current->data) - strlen(current->data + i))
|
|
|
|
<= fill))
|
|
|
|
break;
|
2000-07-24 23:18:48 +00:00
|
|
|
}
|
2001-01-21 23:23:48 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
if (!i)
|
2000-10-26 01:44:42 +00:00
|
|
|
break;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
current->data[i] = '\0';
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
len2 = strlen(current->data + i + 1);
|
2001-05-17 11:35:43 +00:00
|
|
|
tmpline->data = charalloc(len2 + 1);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
/* Skip the white space in current. */
|
|
|
|
memcpy(tmpline->data, current->data + i + 1, len2);
|
|
|
|
tmpline->data[len2] = '\0';
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
current->data = nrealloc(current->data, i + 1);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
tmpline->prev = current;
|
|
|
|
tmpline->next = current->next;
|
|
|
|
if (current->next != NULL)
|
|
|
|
current->next->prev = tmpline;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-07-24 23:18:48 +00:00
|
|
|
current->next = tmpline;
|
|
|
|
current = tmpline;
|
|
|
|
slen -= i + 1;
|
|
|
|
current_y++;
|
2000-10-26 01:44:42 +00:00
|
|
|
} while ((strlenpt(current->data) > (fill))
|
|
|
|
&& !no_spaces(current->data));
|
2000-07-24 23:18:48 +00:00
|
|
|
}
|
2000-11-27 00:23:41 +00:00
|
|
|
tmpbot = current;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
if (current->next)
|
|
|
|
current = current->next;
|
2000-06-20 02:50:33 +00:00
|
|
|
else
|
|
|
|
filebot = current;
|
2000-06-06 05:53:49 +00:00
|
|
|
current_x = 0;
|
|
|
|
placewewant = 0;
|
|
|
|
|
2000-06-20 02:50:33 +00:00
|
|
|
renumber(initial);
|
|
|
|
totlines = filebot->lineno;
|
|
|
|
|
|
|
|
werase(edit);
|
|
|
|
|
2000-06-21 03:00:43 +00:00
|
|
|
if ((current_y < 0) || (current_y >= editwinrows - 1)
|
|
|
|
|| (initial_y <= 0)) {
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(current, CENTER);
|
2000-06-06 05:53:49 +00:00
|
|
|
center_cursor();
|
|
|
|
} else {
|
2000-07-04 02:35:19 +00:00
|
|
|
fix_editbot();
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2000-06-20 02:50:33 +00:00
|
|
|
edit_refresh();
|
2000-11-27 00:23:41 +00:00
|
|
|
statusbar(_("Can now UnJustify!"));
|
2000-11-27 22:58:23 +00:00
|
|
|
/* Change the shortcut list to display the unjustify code */
|
|
|
|
shortcut_init(1);
|
|
|
|
display_main_list();
|
2000-11-27 00:23:41 +00:00
|
|
|
reset_cursor();
|
|
|
|
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Now get a keystroke and see if it's unjustify; if not, unget the keystroke
|
2000-11-27 00:23:41 +00:00
|
|
|
and return */
|
2001-05-06 02:34:31 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_MOUSE
|
|
|
|
#ifdef NCURSES_MOUSE_VERSION
|
|
|
|
|
|
|
|
/* If it was a mouse click, parse it with do_mouse and it might become
|
|
|
|
the unjustify key. Else give it back to the input stream. */
|
|
|
|
if ((kbinput = wgetch(edit)) == KEY_MOUSE)
|
|
|
|
do_mouse();
|
|
|
|
else
|
|
|
|
ungetch(kbinput);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2001-02-05 18:24:33 +00:00
|
|
|
if ((kbinput = wgetch(edit)) != NANO_UNJUSTIFY_KEY) {
|
2001-04-12 03:01:53 +00:00
|
|
|
ungetch(kbinput);
|
2001-02-05 18:24:33 +00:00
|
|
|
blank_statusbar_refresh();
|
|
|
|
} else {
|
2000-11-27 00:23:41 +00:00
|
|
|
/* Else restore the justify we just did (ungrateful user!) */
|
|
|
|
if (tmptop->prev != NULL)
|
|
|
|
tmptop->prev->next = tmpbot->next;
|
2000-11-27 02:50:49 +00:00
|
|
|
else
|
|
|
|
fileage = current;
|
2000-11-27 00:23:41 +00:00
|
|
|
tmpbot->next->prev = tmptop->prev;
|
2001-04-12 03:01:53 +00:00
|
|
|
current = tmpbot->next;
|
2000-11-27 00:23:41 +00:00
|
|
|
tmpbot->next = NULL;
|
|
|
|
do_uncut_text();
|
2000-11-27 02:50:49 +00:00
|
|
|
if (tmptop->prev == NULL)
|
|
|
|
edit_refresh();
|
|
|
|
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Restore totsize from before justify */
|
2001-01-20 21:40:07 +00:00
|
|
|
totsize = totbak;
|
2000-11-27 00:23:41 +00:00
|
|
|
free_filestruct(tmptop);
|
|
|
|
blank_statusbar_refresh();
|
|
|
|
}
|
2000-11-27 22:59:40 +00:00
|
|
|
shortcut_init(0);
|
|
|
|
display_main_list();
|
2000-11-27 00:23:41 +00:00
|
|
|
free_filestruct(cutbuffer);
|
|
|
|
cutbuffer = cutbak;
|
2001-04-12 03:01:53 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_HELP
|
2000-06-06 05:53:49 +00:00
|
|
|
void help_init(void)
|
|
|
|
{
|
2002-02-15 19:17:02 +00:00
|
|
|
int i, sofar = 0, meta_shortcut = 0, helplen;
|
2000-06-06 05:53:49 +00:00
|
|
|
long allocsize = 1; /* How much space we're gonna need for the help text */
|
2001-10-22 03:15:31 +00:00
|
|
|
char buf[BUFSIZ] = "", *ptr = NULL;
|
2002-02-15 19:17:02 +00:00
|
|
|
toggle *t;
|
|
|
|
shortcut *s;
|
2001-10-22 03:15:31 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
/*
|
|
|
|
if (currshortcut = main_list)
|
|
|
|
helplen = MAIN_VISIBLE;
|
|
|
|
else */
|
|
|
|
helplen = length_of_list(currshortcut);
|
2002-01-02 13:59:11 +00:00
|
|
|
|
2001-10-22 03:15:31 +00:00
|
|
|
/* First set up the initial help text for the current function */
|
|
|
|
if (currshortcut == whereis_list || currshortcut == replace_list
|
|
|
|
|| currshortcut == replace_list_2)
|
|
|
|
ptr = _("Search Command Help Text\n\n "
|
|
|
|
"Enter the words or characters you would like to search "
|
|
|
|
"for, then hit enter. If there is a match for the text you "
|
|
|
|
"entered, the screen will be updated to the location of the "
|
2001-10-28 21:00:49 +00:00
|
|
|
"nearest match for the search string.\n\n "
|
|
|
|
"If using Pico Mode via the -p or --pico flags, using the "
|
|
|
|
"Meta-P toggle or using a nanorc file, the previous search "
|
|
|
|
"string will be shown in brackets after the Search: prompt. "
|
2001-12-26 00:16:40 +00:00
|
|
|
"Hitting enter without entering any text will perform the "
|
2001-10-28 21:00:49 +00:00
|
|
|
"previous search. Otherwise, the previous string will be "
|
|
|
|
"placed in front of the cursor, and can be edited or deleted "
|
|
|
|
"before hitting enter.\n\n The following functions keys are "
|
|
|
|
"available in Search mode:\n\n");
|
2001-10-22 03:15:31 +00:00
|
|
|
else if (currshortcut == goto_list)
|
|
|
|
ptr = _("Goto Line Help Text\n\n "
|
|
|
|
"Enter the line number that you wish to go to and hit "
|
2001-10-28 21:00:49 +00:00
|
|
|
"Enter. If there are fewer lines of text than the "
|
2001-10-22 03:15:31 +00:00
|
|
|
"number you entered, you will be brought to the last line "
|
|
|
|
"of the file.\n\n The following functions keys are "
|
|
|
|
"available in Goto Line mode:\n\n");
|
|
|
|
else if (currshortcut == insertfile_list)
|
|
|
|
ptr = _("Insert File Help Text\n\n "
|
|
|
|
"Type in the name of a file to be inserted into the current "
|
|
|
|
"file buffer at the current cursor location.\n\n "
|
|
|
|
"If you have compiled nano with multiple file buffer "
|
|
|
|
"support, and enable multiple buffers with the -F "
|
2001-10-28 21:00:49 +00:00
|
|
|
"or --multibuffer command line flags, the Meta-F toggle or "
|
|
|
|
"using a nanorc file, inserting a file will cause it to be "
|
2002-01-02 14:30:33 +00:00
|
|
|
"loaded into a separate buffer (use Meta-< and > to switch "
|
2002-02-15 19:17:02 +00:00
|
|
|
"between file buffers).\n\n In multiple buffer mode, the "
|
|
|
|
"same file cannot be loaded twice, not even a \"New "
|
|
|
|
"Buffer.\" A workaround to load another blank buffer is to "
|
|
|
|
"load a nonexistent filename into a separate buffer.\n\n "
|
|
|
|
"The following function keys are available in Insert File "
|
|
|
|
"mode:\n\n");
|
2001-10-22 03:15:31 +00:00
|
|
|
else if (currshortcut == writefile_list)
|
|
|
|
ptr = _("Write File Help Text\n\n "
|
|
|
|
"Type the name that you wish to save the current file "
|
|
|
|
"as and hit enter to save the file.\n\n "
|
|
|
|
"If you are using the marker code with Ctrl-^ and have "
|
|
|
|
"selected text, you will be prompted to save only the "
|
|
|
|
"selected portion to a separate file. To reduce the "
|
|
|
|
"chance of overwriting the current file with just a portion "
|
|
|
|
"of it, the current filename is not the default in this "
|
|
|
|
"mode.\n\n The following function keys are available in "
|
|
|
|
"Write File mode:\n\n");
|
|
|
|
#ifndef DISABLE_BROWSER
|
|
|
|
else if (currshortcut == browser_list)
|
|
|
|
ptr = _("File Browser Help Text\n\n "
|
|
|
|
"The file browser is used to visually browse the "
|
|
|
|
"directory structure to select a file for reading "
|
|
|
|
"or writing. You may use the arrow keys or Page Up/"
|
|
|
|
"Down to browse through the files, and S or Enter to "
|
|
|
|
"choose the selected file or enter the selected "
|
|
|
|
"directory. To move up one level, select the directory "
|
|
|
|
"called \"..\" at the top of the file list.\n\n The "
|
|
|
|
"following functions keys are available in the file "
|
|
|
|
"browser:\n\n");
|
|
|
|
else if (currshortcut == gotodir_list)
|
|
|
|
ptr = _("Browser Goto Directory Help Text\n\n "
|
|
|
|
"Enter the name of the directory you would like to "
|
|
|
|
"browse to.\n\n If tab completion has not been disabled, "
|
|
|
|
"you can use the TAB key to (attempt to) automatically "
|
|
|
|
"complete the directory name. The following function "
|
|
|
|
"keys are available in Browser GotoDir mode:\n\n");
|
|
|
|
#endif
|
|
|
|
else if (currshortcut == spell_list)
|
|
|
|
ptr = _("Spell Check Help Text\n\n "
|
|
|
|
"The spell checker checks the spelling of all text "
|
|
|
|
"in the current file. When an unknown word is "
|
|
|
|
"encountered, it is highlighted and a replacement can "
|
|
|
|
"be edited. It will then prompt to replace every "
|
|
|
|
"instance of the given misspelled word in the "
|
|
|
|
"current file.\n\n The following other functions are "
|
|
|
|
"available in Spell Check mode:\n\n");
|
|
|
|
else /* Default to the main help list */
|
|
|
|
ptr = help_text_init;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* Compute the space needed for the shortcut lists - we add 15 to
|
|
|
|
have room for the shortcut abbrev and its possible alternate keys */
|
2002-02-15 19:17:02 +00:00
|
|
|
s = currshortcut;
|
|
|
|
for (i = 0; i <= helplen - 1; i++) {
|
|
|
|
if (s->help != NULL)
|
|
|
|
allocsize += strlen(s->help) + 15;
|
|
|
|
s = s->next;
|
|
|
|
}
|
2001-10-22 03:15:31 +00:00
|
|
|
|
|
|
|
/* If we're on the main list, we also allocate space for toggle help text. */
|
|
|
|
if (currshortcut == main_list) {
|
2002-02-15 19:17:02 +00:00
|
|
|
for (t = toggles; t != NULL; t = t->next)
|
|
|
|
if (t->desc != NULL)
|
|
|
|
allocsize += strlen(t->desc) + 30;
|
2001-10-22 03:15:31 +00:00
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-10-22 03:15:31 +00:00
|
|
|
allocsize += strlen(ptr);
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
if (help_text != NULL)
|
|
|
|
free(help_text);
|
|
|
|
|
|
|
|
/* Allocate space for the help text */
|
2001-05-17 11:35:43 +00:00
|
|
|
help_text = charalloc(allocsize);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* Now add the text we want */
|
2001-10-22 03:15:31 +00:00
|
|
|
strcpy(help_text, ptr);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* Now add our shortcut info */
|
2002-02-15 19:17:02 +00:00
|
|
|
s = currshortcut;
|
2002-01-02 13:59:11 +00:00
|
|
|
for (i = 0; i <= helplen - 1; i++) {
|
2002-02-15 19:17:02 +00:00
|
|
|
if (s->val > 0 && s->val < 'a')
|
|
|
|
sofar = snprintf(buf, BUFSIZ, "^%c ", s->val + 64);
|
|
|
|
else {
|
|
|
|
if (s->altval > 0) {
|
|
|
|
sofar = 0;
|
|
|
|
meta_shortcut = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sofar = snprintf(buf, BUFSIZ, " ");
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if (!meta_shortcut) {
|
|
|
|
if (s->misc1 > KEY_F0 && s->misc1 <= KEY_F(64))
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar, "(F%d) ",
|
|
|
|
s->misc1 - KEY_F0);
|
|
|
|
else
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar, " ");
|
|
|
|
}
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if (s->altval > 0 && s->altval < 91
|
|
|
|
&& (s->altval - 32) > 32)
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
|
|
|
|
(meta_shortcut ? "M-%c " : "(M-%c) "),
|
|
|
|
s->altval - 32);
|
|
|
|
else if (s->altval > 0)
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
|
|
|
|
(meta_shortcut ? "M-%c " : "(M-%c) "),
|
|
|
|
s->altval);
|
2001-10-22 03:15:31 +00:00
|
|
|
/* Hack */
|
2002-02-15 19:17:02 +00:00
|
|
|
else if (s->val >= 'a')
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
|
|
|
|
(meta_shortcut ? "(M-%c) " : "M-%c "),
|
|
|
|
s->val - 32);
|
2000-06-06 05:53:49 +00:00
|
|
|
else
|
2000-07-01 21:34:26 +00:00
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar, " ");
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if (meta_shortcut) {
|
|
|
|
if (s->misc1 > KEY_F0 && s->misc1 <= KEY_F(64))
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
|
|
|
|
"(F%d) ", s->misc1 - KEY_F0);
|
|
|
|
else
|
|
|
|
sofar += snprintf(&buf[sofar], BUFSIZ - sofar,
|
|
|
|
" ");
|
|
|
|
}
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if (s->help != NULL)
|
|
|
|
snprintf(&buf[sofar], BUFSIZ - sofar, "%s", s->help);
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
strcat(help_text, buf);
|
2000-07-06 03:43:05 +00:00
|
|
|
strcat(help_text, "\n");
|
2002-02-15 19:17:02 +00:00
|
|
|
|
|
|
|
s = s->next;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
/* And the toggles... */
|
2001-10-22 03:15:31 +00:00
|
|
|
if (currshortcut == main_list)
|
2002-02-15 19:17:02 +00:00
|
|
|
for (t = toggles; t != NULL; t = t->next) {
|
2001-10-22 03:15:31 +00:00
|
|
|
sofar = snprintf(buf, BUFSIZ,
|
2002-02-15 19:17:02 +00:00
|
|
|
"M-%c ", t->val - 32);
|
|
|
|
if (t->desc != NULL) {
|
2001-10-22 03:15:31 +00:00
|
|
|
snprintf(&buf[sofar], BUFSIZ - sofar, _("%s enable/disable"),
|
2002-02-15 19:17:02 +00:00
|
|
|
t->desc);
|
2001-07-11 02:08:33 +00:00
|
|
|
}
|
2000-09-01 13:32:47 +00:00
|
|
|
strcat(help_text, buf);
|
|
|
|
strcat(help_text, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2000-12-10 17:03:25 +00:00
|
|
|
#endif
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
void do_toggle(toggle *which)
|
2000-09-01 13:32:47 +00:00
|
|
|
{
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifdef NANO_SMALL
|
|
|
|
nano_disabled_msg();
|
|
|
|
#else
|
2000-09-07 10:48:00 +00:00
|
|
|
char *enabled = _("enabled");
|
|
|
|
char *disabled = _("disabled");
|
2000-09-02 18:44:21 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
switch (which->val) {
|
2001-09-22 22:14:25 +00:00
|
|
|
case TOGGLE_BACKWARDS_KEY:
|
|
|
|
case TOGGLE_CASE_KEY:
|
|
|
|
case TOGGLE_REGEXP_KEY:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-06-14 02:54:22 +00:00
|
|
|
/* Even easier! */
|
2002-02-15 19:17:02 +00:00
|
|
|
TOGGLE(which->flag);
|
2000-09-12 23:02:49 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
switch (which->val) {
|
2000-09-01 13:32:47 +00:00
|
|
|
case TOGGLE_PICOMODE_KEY:
|
2000-11-27 22:58:23 +00:00
|
|
|
shortcut_init(0);
|
2001-08-17 00:03:46 +00:00
|
|
|
SET(CLEAR_BACKUPSTRING);
|
2000-09-01 13:32:47 +00:00
|
|
|
display_main_list();
|
|
|
|
break;
|
|
|
|
case TOGGLE_SUSPEND_KEY:
|
|
|
|
signal_init();
|
|
|
|
break;
|
|
|
|
case TOGGLE_MOUSE_KEY:
|
|
|
|
mouse_init();
|
|
|
|
break;
|
|
|
|
case TOGGLE_NOHELP_KEY:
|
2000-09-12 23:02:49 +00:00
|
|
|
wclear(bottomwin);
|
|
|
|
wrefresh(bottomwin);
|
|
|
|
window_init();
|
2000-12-18 04:03:48 +00:00
|
|
|
fix_editbot();
|
2000-09-12 23:02:49 +00:00
|
|
|
edit_refresh();
|
|
|
|
display_main_list();
|
2000-09-01 13:32:47 +00:00
|
|
|
break;
|
2001-09-23 02:45:27 +00:00
|
|
|
case TOGGLE_DOS_KEY:
|
|
|
|
UNSET(MAC_FILE);
|
|
|
|
break;
|
|
|
|
case TOGGLE_MAC_KEY:
|
|
|
|
UNSET(DOS_FILE);
|
|
|
|
break;
|
2000-09-01 13:32:47 +00:00
|
|
|
}
|
2000-09-12 23:02:49 +00:00
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
if (!ISSET(which->flag)) {
|
|
|
|
if (which->val == TOGGLE_NOHELP_KEY ||
|
|
|
|
which->val == TOGGLE_WRAP_KEY)
|
|
|
|
statusbar("%s %s", which->desc, enabled);
|
2001-07-11 02:37:19 +00:00
|
|
|
else
|
2002-02-15 19:17:02 +00:00
|
|
|
statusbar("%s %s", which->desc, disabled);
|
2001-07-11 02:37:19 +00:00
|
|
|
} else {
|
2002-02-15 19:17:02 +00:00
|
|
|
if (which->val == TOGGLE_NOHELP_KEY ||
|
|
|
|
which->val == TOGGLE_WRAP_KEY)
|
|
|
|
statusbar("%s %s", which->desc, disabled);
|
2001-07-11 02:37:19 +00:00
|
|
|
else
|
2002-02-15 19:17:02 +00:00
|
|
|
statusbar("%s %s", which->desc, enabled);
|
2000-09-12 23:02:49 +00:00
|
|
|
}
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2000-09-01 13:32:47 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2001-05-05 17:45:54 +00:00
|
|
|
/* If the NumLock key has made the keypad go awry, print an error
|
|
|
|
message; hopefully we can address it later. */
|
2001-01-14 03:17:53 +00:00
|
|
|
void print_numlock_warning(void)
|
|
|
|
{
|
|
|
|
static int didmsg = 0;
|
|
|
|
if (!didmsg) {
|
2001-04-12 03:01:53 +00:00
|
|
|
statusbar(_
|
|
|
|
("NumLock glitch detected. Keypad will malfunction with NumLock off"));
|
2001-01-14 03:17:53 +00:00
|
|
|
didmsg = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-13 17:22:54 +00:00
|
|
|
/* This function returns the correct keystroke, given the A,B,C or D
|
|
|
|
input key. This is a common sequence of many terms which send
|
|
|
|
Esc-O-[A-D] or Esc-[-[A-D]. */
|
|
|
|
int ABCD(int input)
|
|
|
|
{
|
2001-04-12 03:01:53 +00:00
|
|
|
switch (input) {
|
|
|
|
case 'A':
|
2001-04-28 16:31:19 +00:00
|
|
|
case 'a':
|
2001-04-12 03:01:53 +00:00
|
|
|
return (KEY_UP);
|
|
|
|
case 'B':
|
2001-04-28 16:31:19 +00:00
|
|
|
case 'b':
|
2001-04-12 03:01:53 +00:00
|
|
|
return (KEY_DOWN);
|
|
|
|
case 'C':
|
2001-04-28 16:31:19 +00:00
|
|
|
case 'c':
|
2001-04-12 03:01:53 +00:00
|
|
|
return (KEY_RIGHT);
|
|
|
|
case 'D':
|
2001-04-28 16:31:19 +00:00
|
|
|
case 'd':
|
2001-04-12 03:01:53 +00:00
|
|
|
return (KEY_LEFT);
|
|
|
|
default:
|
|
|
|
return 0;
|
2001-01-13 17:22:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int optchr;
|
|
|
|
int kbinput; /* Input from keyboard */
|
|
|
|
long startline = 0; /* Line to try and start at */
|
2001-01-29 23:37:54 +00:00
|
|
|
int keyhandled; /* Have we handled the keystroke yet? */
|
|
|
|
int i, modify_control_seq;
|
2000-06-06 05:53:49 +00:00
|
|
|
char *argv0;
|
2002-02-15 19:17:02 +00:00
|
|
|
shortcut *s;
|
|
|
|
toggle *t;
|
2001-09-19 02:59:25 +00:00
|
|
|
|
2000-09-21 04:25:45 +00:00
|
|
|
#ifdef _POSIX_VDISABLE
|
2000-06-06 05:53:49 +00:00
|
|
|
struct termios term;
|
2000-09-21 04:25:45 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_GETOPT_LONG
|
|
|
|
int option_index = 0;
|
|
|
|
struct option long_options[] = {
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-10-26 01:44:42 +00:00
|
|
|
{"regexp", 0, 0, 'R'},
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
{"version", 0, 0, 'V'},
|
|
|
|
{"const", 0, 0, 'c'},
|
|
|
|
{"suspend", 0, 0, 'z'},
|
|
|
|
{"nowrap", 0, 0, 'w'},
|
|
|
|
{"nohelp", 0, 0, 'x'},
|
|
|
|
{"help", 0, 0, 'h'},
|
2000-12-18 04:55:21 +00:00
|
|
|
{"view", 0, 0, 'v'},
|
2000-07-12 18:14:51 +00:00
|
|
|
#ifndef NANO_SMALL
|
2000-07-12 02:09:17 +00:00
|
|
|
{"cut", 0, 0, 'k'},
|
2001-09-22 00:42:10 +00:00
|
|
|
{"dos", 0, 0, 'D'},
|
2001-09-22 04:20:25 +00:00
|
|
|
{"mac", 0, 0, 'M'},
|
2002-02-15 19:17:02 +00:00
|
|
|
{"noconvert", 0, 0, 'N'},
|
2000-06-06 05:53:49 +00:00
|
|
|
{"autoindent", 0, 0, 'i'},
|
2001-09-17 13:48:00 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
{"tempfile", 0, 0, 't'},
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2000-06-06 05:53:49 +00:00
|
|
|
{"speller", 1, 0, 's'},
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2001-05-21 12:56:25 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2000-06-06 05:53:49 +00:00
|
|
|
{"fill", 1, 0, 'r'},
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
{"mouse", 0, 0, 'm'},
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
{"operatingdir", 1, 0, 'o'},
|
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
{"pico", 0, 0, 'p'},
|
|
|
|
{"nofollow", 0, 0, 'l'},
|
2000-08-04 15:44:29 +00:00
|
|
|
{"tabsize", 1, 0, 'T'},
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-15 20:25:33 +00:00
|
|
|
{"multibuffer", 0, 0, 'F'},
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
2001-09-22 19:02:04 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
{"smooth", 0, 0, 'S'},
|
|
|
|
#endif
|
2002-01-03 21:26:34 +00:00
|
|
|
{"keypad", 0, 0, 'K'},
|
2000-06-06 05:53:49 +00:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Flag inits... */
|
|
|
|
SET(FOLLOW_SYMLINKS);
|
|
|
|
|
|
|
|
#ifndef NANO_SMALL
|
2001-02-09 02:57:52 +00:00
|
|
|
#ifdef ENABLE_NLS
|
2000-06-06 05:53:49 +00:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
|
|
|
textdomain(PACKAGE);
|
|
|
|
#endif
|
2001-02-09 02:57:52 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-04-18 04:28:54 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
|
|
|
do_rcfile();
|
|
|
|
#endif /* ENABLE_NANORC */
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-02-15 19:17:02 +00:00
|
|
|
while ((optchr = getopt_long(argc, argv, "h?DFKMNRST:Vabcefgijklmo:pr:s:tvwxz",
|
2000-06-06 05:53:49 +00:00
|
|
|
long_options, &option_index)) != EOF) {
|
|
|
|
#else
|
2001-04-12 03:01:53 +00:00
|
|
|
while ((optchr =
|
2002-02-15 19:17:02 +00:00
|
|
|
getopt(argc, argv, "h?DFKMNRST:Vabcefgijklmo:pr:s:tvwxz")) != EOF) {
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (optchr) {
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-09-22 00:42:10 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
case 'D':
|
|
|
|
SET(DOS_FILE);
|
|
|
|
break;
|
|
|
|
#endif
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-15 20:25:33 +00:00
|
|
|
case 'F':
|
2001-07-14 19:32:47 +00:00
|
|
|
SET(MULTIBUFFER);
|
2001-07-11 02:08:33 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2002-01-03 21:26:34 +00:00
|
|
|
case 'K':
|
|
|
|
SET(ALT_KEYPAD);
|
|
|
|
break;
|
2001-09-22 04:20:25 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
case 'M':
|
|
|
|
SET(MAC_FILE);
|
|
|
|
break;
|
2002-02-15 19:17:02 +00:00
|
|
|
case 'N':
|
|
|
|
SET(NO_CONVERT);
|
2000-06-19 23:19:07 +00:00
|
|
|
break;
|
2002-02-15 19:17:02 +00:00
|
|
|
#endif
|
2000-09-06 13:39:17 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
case 'R':
|
|
|
|
SET(USE_REGEXP);
|
|
|
|
break;
|
2001-09-22 19:02:04 +00:00
|
|
|
#endif
|
|
|
|
#ifndef NANO_SMALL
|
|
|
|
case 'S':
|
|
|
|
SET(SMOOTHSCROLL);
|
|
|
|
break;
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2002-02-15 19:17:02 +00:00
|
|
|
case 'T':
|
|
|
|
tabsize = atoi(optarg);
|
|
|
|
if (tabsize <= 0) {
|
|
|
|
usage(); /* To stop bogus data for tab width */
|
|
|
|
finish(1);
|
|
|
|
}
|
|
|
|
break;
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'V':
|
|
|
|
version();
|
|
|
|
exit(0);
|
2001-09-19 03:19:43 +00:00
|
|
|
case 'a':
|
2000-12-18 02:23:50 +00:00
|
|
|
case 'b':
|
|
|
|
case 'e':
|
|
|
|
case 'f':
|
2001-04-14 06:50:24 +00:00
|
|
|
case 'g':
|
|
|
|
case 'j':
|
2001-04-12 03:01:53 +00:00
|
|
|
/* Pico compatibility flags */
|
|
|
|
break;
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'c':
|
|
|
|
SET(CONSTUPDATE);
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
usage();
|
|
|
|
exit(0);
|
2001-09-17 13:48:00 +00:00
|
|
|
#ifndef NANO_SMALL
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'i':
|
|
|
|
SET(AUTOINDENT);
|
|
|
|
break;
|
2000-07-12 02:09:17 +00:00
|
|
|
case 'k':
|
|
|
|
SET(CUT_TO_END);
|
|
|
|
break;
|
2000-07-12 18:14:51 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'l':
|
|
|
|
UNSET(FOLLOW_SYMLINKS);
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
SET(USE_MOUSE);
|
|
|
|
break;
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
case 'o':
|
|
|
|
operating_dir = charalloc(strlen(optarg) + 1);
|
|
|
|
strcpy(operating_dir, optarg);
|
|
|
|
|
|
|
|
/* make sure we're inside the operating directory */
|
|
|
|
if (check_operating_dir(".", 0)) {
|
|
|
|
if (chdir(operating_dir) == -1) {
|
|
|
|
free(operating_dir);
|
|
|
|
operating_dir = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'p':
|
2000-11-17 01:37:39 +00:00
|
|
|
SET(PICO_MODE);
|
2000-06-06 05:53:49 +00:00
|
|
|
break;
|
|
|
|
case 'r':
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2000-06-06 05:53:49 +00:00
|
|
|
fill = atoi(optarg);
|
2001-05-21 12:56:25 +00:00
|
|
|
if (fill < 0)
|
|
|
|
wrap_at = fill;
|
|
|
|
else if (fill == 0) {
|
2000-06-06 05:53:49 +00:00
|
|
|
usage(); /* To stop bogus data (like a string) */
|
|
|
|
finish(1);
|
|
|
|
}
|
|
|
|
break;
|
2001-05-21 12:56:25 +00:00
|
|
|
#else
|
|
|
|
usage();
|
|
|
|
exit(0);
|
|
|
|
|
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2000-06-06 05:53:49 +00:00
|
|
|
case 's':
|
2001-05-17 11:35:43 +00:00
|
|
|
alt_speller = charalloc(strlen(optarg) + 1);
|
2000-06-06 05:53:49 +00:00
|
|
|
strcpy(alt_speller, optarg);
|
|
|
|
break;
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
case 't':
|
2000-07-14 01:20:12 +00:00
|
|
|
SET(TEMP_OPT);
|
2000-06-06 05:53:49 +00:00
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
SET(VIEW_MODE);
|
|
|
|
break;
|
|
|
|
case 'w':
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifdef DISABLE_WRAPPING
|
|
|
|
usage();
|
|
|
|
exit(0);
|
|
|
|
#else
|
2000-06-06 05:53:49 +00:00
|
|
|
SET(NO_WRAP);
|
|
|
|
break;
|
2001-04-12 03:01:53 +00:00
|
|
|
#endif /* DISABLE_WRAPPING */
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'x':
|
|
|
|
SET(NO_HELP);
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
SET(SUSPEND);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
2000-06-21 03:00:43 +00:00
|
|
|
exit(0);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
argv0 = strrchr(argv[0], '/');
|
|
|
|
if ((argv0 && strstr(argv0, "pico"))
|
|
|
|
|| (!argv0 && strstr(argv[0], "pico")))
|
2000-11-17 01:37:39 +00:00
|
|
|
SET(PICO_MODE);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* See if there's a non-option in argv (first non-option is the
|
|
|
|
filename, if +LINE is not given) */
|
|
|
|
if (argc == 1 || argc <= optind)
|
2000-12-14 13:56:28 +00:00
|
|
|
clear_filename();
|
2000-06-06 05:53:49 +00:00
|
|
|
else {
|
|
|
|
/* Look for the +line flag... */
|
|
|
|
if (argv[optind][0] == '+') {
|
|
|
|
startline = atoi(&argv[optind][1]);
|
|
|
|
optind++;
|
|
|
|
if (argc == 1 || argc <= optind)
|
2000-12-14 13:56:28 +00:00
|
|
|
clear_filename();
|
2000-06-06 05:53:49 +00:00
|
|
|
else
|
2000-12-14 13:56:28 +00:00
|
|
|
filename = mallocstrcpy(filename, argv[optind]);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-12-14 13:56:28 +00:00
|
|
|
} else
|
|
|
|
filename = mallocstrcpy(filename, argv[optind]);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* First back up the old settings so they can be restored, duh */
|
2000-06-21 03:00:43 +00:00
|
|
|
tcgetattr(0, &oldterm);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-09-06 15:19:18 +00:00
|
|
|
#ifdef _POSIX_VDISABLE
|
2000-07-19 01:16:18 +00:00
|
|
|
term = oldterm;
|
|
|
|
term.c_cc[VINTR] = _POSIX_VDISABLE;
|
|
|
|
term.c_cc[VQUIT] = _POSIX_VDISABLE;
|
|
|
|
term.c_lflag &= ~IEXTEN;
|
2000-06-21 03:00:43 +00:00
|
|
|
tcsetattr(0, TCSANOW, &term);
|
2000-09-06 15:19:18 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* now ncurses init stuff... */
|
|
|
|
initscr();
|
|
|
|
savetty();
|
|
|
|
nonl();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
|
|
|
|
|
|
|
/* Set up some global variables */
|
2001-09-27 02:46:53 +00:00
|
|
|
global_init(0);
|
2000-11-27 22:58:23 +00:00
|
|
|
shortcut_init(0);
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_HELP
|
2000-06-06 05:53:49 +00:00
|
|
|
init_help_msg();
|
|
|
|
help_init();
|
2000-12-10 17:03:25 +00:00
|
|
|
#endif
|
2000-09-01 13:32:47 +00:00
|
|
|
signal_init();
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("Main: set up windows\n"));
|
|
|
|
#endif
|
|
|
|
|
2001-11-29 02:42:27 +00:00
|
|
|
window_init();
|
|
|
|
mouse_init();
|
|
|
|
|
2002-01-03 21:26:34 +00:00
|
|
|
if (!ISSET(ALT_KEYPAD)) {
|
|
|
|
keypad(edit, TRUE);
|
|
|
|
keypad(bottomwin, TRUE);
|
|
|
|
}
|
|
|
|
|
2001-04-30 11:28:46 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
|
|
|
do_colorinit();
|
|
|
|
|
2001-11-29 02:42:27 +00:00
|
|
|
#endif /* ENABLE_COLOR */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("Main: bottom win\n"));
|
|
|
|
#endif
|
2001-05-05 17:45:54 +00:00
|
|
|
/* Set up bottom of window */
|
2000-06-06 05:53:49 +00:00
|
|
|
display_main_list();
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("Main: open file\n"));
|
|
|
|
#endif
|
|
|
|
|
2001-01-03 07:11:47 +00:00
|
|
|
titlebar(NULL);
|
2000-11-21 06:20:20 +00:00
|
|
|
|
|
|
|
/* Now we check to see if argv[optind] is non-null to determine if
|
|
|
|
we're dealing with a new file or not, not argc == 1... */
|
|
|
|
if (argv[optind] == NULL)
|
2000-06-06 05:53:49 +00:00
|
|
|
new_file();
|
|
|
|
else
|
|
|
|
open_file(filename, 0, 0);
|
|
|
|
|
|
|
|
if (startline > 0)
|
2001-07-11 02:08:33 +00:00
|
|
|
do_gotoline(startline, 0);
|
2000-06-06 05:53:49 +00:00
|
|
|
else
|
2000-07-29 04:33:38 +00:00
|
|
|
edit_update(fileage, CENTER);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-01-29 23:37:54 +00:00
|
|
|
/* return here after a sigwinch */
|
2001-04-12 03:01:53 +00:00
|
|
|
sigsetjmp(jmpbuf, 1);
|
2001-01-29 23:37:54 +00:00
|
|
|
|
|
|
|
/* Fix clobber-age */
|
|
|
|
kbinput = 0;
|
|
|
|
keyhandled = 0;
|
|
|
|
modify_control_seq = 0;
|
|
|
|
|
2000-07-08 14:23:32 +00:00
|
|
|
edit_refresh();
|
|
|
|
reset_cursor();
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
while (1) {
|
2000-09-06 15:19:18 +00:00
|
|
|
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2001-04-12 03:01:53 +00:00
|
|
|
currshortcut = main_list;
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-04-12 03:01:53 +00:00
|
|
|
|
2000-09-06 15:19:18 +00:00
|
|
|
#ifndef _POSIX_VDISABLE
|
|
|
|
/* We're going to have to do it the old way, i.e. on cygwin */
|
|
|
|
raw();
|
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
kbinput = wgetch(edit);
|
2001-01-06 18:12:43 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "AHA! %c (%d)\n", kbinput, kbinput);
|
|
|
|
#endif
|
2001-09-23 01:18:03 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
if (kbinput == 27) { /* Grab Alt-key stuff first */
|
|
|
|
switch (kbinput = wgetch(edit)) {
|
2000-10-26 01:44:42 +00:00
|
|
|
/* Alt-O, suddenly very important ;) */
|
2001-09-23 01:18:03 +00:00
|
|
|
case 'O':
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = wgetch(edit);
|
2001-04-28 16:31:19 +00:00
|
|
|
if ((kbinput <= 'D' && kbinput >= 'A') ||
|
|
|
|
(kbinput <= 'd' && kbinput >= 'a'))
|
2001-04-12 03:01:53 +00:00
|
|
|
kbinput = ABCD(kbinput);
|
2001-01-14 03:17:53 +00:00
|
|
|
else if (kbinput <= 'z' && kbinput >= 'j')
|
|
|
|
print_numlock_warning();
|
|
|
|
else if (kbinput <= 'S' && kbinput >= 'P')
|
2000-10-26 01:44:42 +00:00
|
|
|
kbinput = KEY_F(kbinput - 79);
|
2000-09-11 22:33:54 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
else {
|
2000-10-26 01:44:42 +00:00
|
|
|
fprintf(stderr, _("I got Alt-O-%c! (%d)\n"),
|
|
|
|
kbinput, kbinput);
|
|
|
|
break;
|
2000-09-11 22:33:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
2000-12-18 02:23:50 +00:00
|
|
|
case 27:
|
|
|
|
/* If we get Alt-Alt, the next keystroke should be the same as a
|
|
|
|
control sequence */
|
|
|
|
modify_control_seq = 1;
|
|
|
|
keyhandled = 1;
|
|
|
|
break;
|
2001-10-24 00:58:19 +00:00
|
|
|
#ifndef NANO_SMALL
|
2001-10-14 19:05:10 +00:00
|
|
|
case ' ':
|
|
|
|
/* If control-space is next word, Alt-space should be previous word */
|
|
|
|
do_prev_word();
|
|
|
|
keyhandled = 1;
|
|
|
|
break;
|
2001-10-24 00:58:19 +00:00
|
|
|
#endif
|
2001-09-23 01:18:03 +00:00
|
|
|
case '[':
|
2000-06-06 05:53:49 +00:00
|
|
|
switch (kbinput = wgetch(edit)) {
|
2000-10-26 01:44:42 +00:00
|
|
|
case '1': /* Alt-[-1-[0-5,7-9] = F1-F8 in X at least */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = wgetch(edit);
|
|
|
|
if (kbinput >= '1' && kbinput <= '5') {
|
2000-10-26 01:44:42 +00:00
|
|
|
kbinput = KEY_F(kbinput - 48);
|
|
|
|
wgetch(edit);
|
|
|
|
} else if (kbinput >= '7' && kbinput <= '9') {
|
|
|
|
kbinput = KEY_F(kbinput - 49);
|
|
|
|
wgetch(edit);
|
2001-09-23 01:18:03 +00:00
|
|
|
} else if (kbinput == '~')
|
2000-10-26 01:44:42 +00:00
|
|
|
kbinput = KEY_HOME;
|
2000-09-11 22:33:54 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
else {
|
2000-10-26 01:44:42 +00:00
|
|
|
fprintf(stderr, _("I got Alt-[-1-%c! (%d)\n"),
|
|
|
|
kbinput, kbinput);
|
|
|
|
break;
|
2000-09-11 22:33:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
break;
|
2000-10-26 01:44:42 +00:00
|
|
|
case '2': /* Alt-[-2-[0,1,3,4] = F9-F12 in many terms */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = wgetch(edit);
|
|
|
|
switch (kbinput) {
|
2000-10-26 01:44:42 +00:00
|
|
|
case '0':
|
|
|
|
kbinput = KEY_F(9);
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
kbinput = KEY_F(10);
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
|
|
|
case '3':
|
|
|
|
kbinput = KEY_F(11);
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
|
|
|
case '4':
|
|
|
|
kbinput = KEY_F(12);
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
2001-09-23 01:18:03 +00:00
|
|
|
case '~':
|
|
|
|
goto do_insertkey;
|
2000-09-11 22:33:54 +00:00
|
|
|
#ifdef DEBUG
|
2000-10-26 01:44:42 +00:00
|
|
|
default:
|
|
|
|
fprintf(stderr, _("I got Alt-[-2-%c! (%d)\n"),
|
|
|
|
kbinput, kbinput);
|
|
|
|
break;
|
2000-09-11 22:33:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
2000-10-26 01:44:42 +00:00
|
|
|
case '3': /* Alt-[-3 = Delete? */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = NANO_DELETE_KEY;
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
2000-10-26 01:44:42 +00:00
|
|
|
case '4': /* Alt-[-4 = End? */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = NANO_END_KEY;
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
2000-10-26 01:44:42 +00:00
|
|
|
case '5': /* Alt-[-5 = Page Up */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = KEY_PPAGE;
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
2001-11-19 05:09:15 +00:00
|
|
|
case 'V': /* Alt-[-V = Page Up in Hurd Console */
|
2001-10-28 04:29:55 +00:00
|
|
|
case 'I': /* Alt-[-I = Page Up - FreeBSD Console */
|
|
|
|
kbinput = KEY_PPAGE;
|
|
|
|
break;
|
2000-10-26 01:44:42 +00:00
|
|
|
case '6': /* Alt-[-6 = Page Down */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = KEY_NPAGE;
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
2001-11-19 05:09:15 +00:00
|
|
|
case 'U': /* Alt-[-U = Page Down in Hurd Console */
|
2001-10-28 04:29:55 +00:00
|
|
|
case 'G': /* Alt-[-G = Page Down - FreeBSD Console */
|
|
|
|
kbinput = KEY_NPAGE;
|
|
|
|
break;
|
2001-07-04 16:27:05 +00:00
|
|
|
case '7':
|
|
|
|
kbinput = KEY_HOME;
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
|
|
|
case '8':
|
|
|
|
kbinput = KEY_END;
|
|
|
|
wgetch(edit);
|
|
|
|
break;
|
2001-11-19 05:09:15 +00:00
|
|
|
case '9': /* Alt-[-9 = Delete in Hurd Console */
|
|
|
|
kbinput = KEY_DC;
|
|
|
|
break;
|
2002-01-02 15:12:21 +00:00
|
|
|
case '@': /* Alt-[-@ = Insert in Hurd Console */
|
|
|
|
case 'L': /* Alt-[-L = Insert - FreeBSD Console */
|
|
|
|
goto do_insertkey;
|
|
|
|
case '[': /* Alt-[-[-[A-E], F1-F5 in Linux console */
|
2000-09-11 22:33:54 +00:00
|
|
|
kbinput = wgetch(edit);
|
2001-07-04 16:27:05 +00:00
|
|
|
if (kbinput >= 'A' && kbinput <= 'E')
|
2000-10-26 01:44:42 +00:00
|
|
|
kbinput = KEY_F(kbinput - 64);
|
2000-09-11 22:33:54 +00:00
|
|
|
break;
|
2000-06-06 05:53:49 +00:00
|
|
|
case 'A':
|
|
|
|
case 'B':
|
|
|
|
case 'C':
|
|
|
|
case 'D':
|
2001-04-28 16:31:19 +00:00
|
|
|
case 'a':
|
|
|
|
case 'b':
|
|
|
|
case 'c':
|
|
|
|
case 'd':
|
2001-01-13 17:22:54 +00:00
|
|
|
kbinput = ABCD(kbinput);
|
2000-06-06 05:53:49 +00:00
|
|
|
break;
|
|
|
|
case 'H':
|
|
|
|
kbinput = KEY_HOME;
|
|
|
|
break;
|
|
|
|
case 'F':
|
2001-11-19 05:09:15 +00:00
|
|
|
case 'Y': /* End Key in Hurd Console */
|
2000-06-06 05:53:49 +00:00
|
|
|
kbinput = KEY_END;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("I got Alt-[-%c! (%d)\n"),
|
|
|
|
kbinput, kbinput);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:37:19 +00:00
|
|
|
case NANO_OPENPREV_KEY:
|
2002-01-02 14:30:33 +00:00
|
|
|
case NANO_OPENPREV_ALTKEY:
|
2001-07-11 02:37:19 +00:00
|
|
|
open_prevfile(0);
|
|
|
|
keyhandled = 1;
|
|
|
|
break;
|
|
|
|
case NANO_OPENNEXT_KEY:
|
2002-01-02 14:30:33 +00:00
|
|
|
case NANO_OPENNEXT_ALTKEY:
|
2001-07-11 02:37:19 +00:00
|
|
|
open_nextfile(0);
|
|
|
|
keyhandled = 1;
|
|
|
|
break;
|
2001-07-11 12:06:13 +00:00
|
|
|
#endif
|
2002-02-15 19:17:02 +00:00
|
|
|
|
|
|
|
#if !defined (NANO_SMALL) && defined (HAVE_REGEX_H)
|
|
|
|
case NANO_BRACKET_KEY:
|
|
|
|
do_find_bracket();
|
|
|
|
keyhandled = 1;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
default:
|
|
|
|
/* Check for the altkey defs.... */
|
2002-02-15 19:17:02 +00:00
|
|
|
for (s = main_list; s != NULL; s = s->next)
|
|
|
|
if (kbinput == s->altval ||
|
|
|
|
kbinput == s->altval - 32) {
|
|
|
|
kbinput = s->val;
|
2000-10-26 01:44:42 +00:00
|
|
|
break;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2000-09-01 13:32:47 +00:00
|
|
|
#ifndef NANO_SMALL
|
|
|
|
/* And for toggle switches */
|
2002-02-15 19:17:02 +00:00
|
|
|
for (t = toggles; t != NULL && !keyhandled; t = t->next)
|
|
|
|
if (kbinput == t->val ||
|
|
|
|
(t->val > 'a' &&
|
|
|
|
kbinput == t->val - 32)) {
|
|
|
|
do_toggle(t);
|
2000-10-26 01:44:42 +00:00
|
|
|
keyhandled = 1;
|
|
|
|
break;
|
2000-09-01 13:32:47 +00:00
|
|
|
}
|
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, _("I got Alt-%c! (%d)\n"), kbinput,
|
|
|
|
kbinput);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-12-18 02:23:50 +00:00
|
|
|
/* If the modify_control_seq is set, we received an Alt-Alt
|
|
|
|
sequence before this, so we make this key a control sequence
|
|
|
|
by subtracting 64 or 96, depending on its value. */
|
|
|
|
if (!keyhandled && modify_control_seq) {
|
|
|
|
if (kbinput >= 'A' && kbinput < 'a')
|
|
|
|
kbinput -= 64;
|
|
|
|
else if (kbinput >= 'a' && kbinput <= 'z')
|
|
|
|
kbinput -= 96;
|
|
|
|
|
|
|
|
modify_control_seq = 0;
|
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* Look through the main shortcut list to see if we've hit a
|
|
|
|
shortcut key */
|
2002-02-15 19:17:02 +00:00
|
|
|
|
|
|
|
for (s = currshortcut; s != NULL && !keyhandled; s = s->next) {
|
|
|
|
if (kbinput == s->val ||
|
|
|
|
(s->misc1 && kbinput == s->misc1) ||
|
|
|
|
(s->misc2 && kbinput == s->misc2)) {
|
|
|
|
if (ISSET(VIEW_MODE) && !s->viewok)
|
2000-06-06 05:53:49 +00:00
|
|
|
print_view_warning();
|
|
|
|
else
|
2002-02-15 19:17:02 +00:00
|
|
|
s->func();
|
2000-06-06 05:53:49 +00:00
|
|
|
keyhandled = 1;
|
|
|
|
}
|
|
|
|
}
|
2000-12-18 02:23:50 +00:00
|
|
|
/* If we're in raw mode or using Alt-Alt-x, we have to catch
|
|
|
|
Control-S and Control-Q */
|
2000-09-06 15:19:18 +00:00
|
|
|
if (kbinput == 17 || kbinput == 19)
|
|
|
|
keyhandled = 1;
|
|
|
|
|
2000-12-18 02:23:50 +00:00
|
|
|
/* Catch ^Z by hand when triggered also */
|
2000-09-06 15:19:18 +00:00
|
|
|
if (kbinput == 26) {
|
|
|
|
if (ISSET(SUSPEND))
|
|
|
|
do_suspend(0);
|
|
|
|
keyhandled = 1;
|
|
|
|
}
|
|
|
|
|
2001-09-23 01:18:03 +00:00
|
|
|
|
2001-10-02 02:56:45 +00:00
|
|
|
#ifndef USE_SLANG
|
2001-09-23 01:18:03 +00:00
|
|
|
/* Hack, make insert key do something useful, like insert file */
|
|
|
|
if (kbinput == KEY_IC) {
|
2001-10-02 02:56:45 +00:00
|
|
|
#else
|
|
|
|
if (0) {
|
|
|
|
#endif
|
2001-09-23 01:18:03 +00:00
|
|
|
do_insertkey:
|
|
|
|
|
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2002-01-02 15:12:21 +00:00
|
|
|
/* do_insertfile_void() contains the logic needed to
|
|
|
|
handle view mode with the view mode/multibuffer
|
|
|
|
exception, so use it here */
|
|
|
|
do_insertfile_void();
|
2001-09-23 01:18:03 +00:00
|
|
|
#else
|
2002-01-02 15:12:21 +00:00
|
|
|
print_view_warning();
|
2001-09-23 01:18:03 +00:00
|
|
|
#endif
|
|
|
|
|
2001-10-02 02:56:45 +00:00
|
|
|
keyhandled = 1;
|
2001-09-23 01:18:03 +00:00
|
|
|
}
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
/* Last gasp, stuff that's not in the main lists */
|
|
|
|
if (!keyhandled)
|
|
|
|
switch (kbinput) {
|
2001-04-12 14:51:48 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef NCURSES_MOUSE_VERSION
|
|
|
|
case KEY_MOUSE:
|
|
|
|
do_mouse();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#endif
|
2001-10-02 03:54:13 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
case 0: /* Erg */
|
2001-10-24 01:34:15 +00:00
|
|
|
#ifndef NANO_SMALL
|
2000-06-06 05:53:49 +00:00
|
|
|
do_next_word();
|
|
|
|
break;
|
2001-10-02 03:54:13 +00:00
|
|
|
#endif
|
2001-01-04 16:56:15 +00:00
|
|
|
|
2001-09-23 01:18:03 +00:00
|
|
|
case -1: /* Stuff that we don't want to do squat */
|
2000-06-06 05:53:49 +00:00
|
|
|
case 410: /* Must ignore this, it gets sent when we resize */
|
2001-10-22 03:15:31 +00:00
|
|
|
case 29: /* Ctrl-] */
|
2000-09-21 04:25:45 +00:00
|
|
|
#ifdef PDCURSES
|
2000-10-26 01:44:42 +00:00
|
|
|
case 541: /* ???? */
|
|
|
|
case 542: /* Control and alt in Windows *shrug* */
|
2000-11-29 23:43:28 +00:00
|
|
|
case 543: /* Right ctrl key */
|
2000-09-21 04:25:45 +00:00
|
|
|
case 544:
|
2000-11-29 23:43:28 +00:00
|
|
|
case 545: /* Right alt key */
|
2000-09-21 04:25:45 +00:00
|
|
|
#endif
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "I got %c (%d)!\n", kbinput, kbinput);
|
|
|
|
#endif
|
|
|
|
/* We no longer stop unhandled sequences so that people with
|
|
|
|
odd character sets can type... */
|
|
|
|
|
|
|
|
if (ISSET(VIEW_MODE)) {
|
|
|
|
print_view_warning();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
do_char(kbinput);
|
|
|
|
}
|
2001-10-02 00:55:38 +00:00
|
|
|
if (ISSET(DISABLE_CURPOS))
|
|
|
|
UNSET(DISABLE_CURPOS);
|
|
|
|
else if (ISSET(CONSTUPDATE))
|
2001-11-29 03:43:08 +00:00
|
|
|
do_cursorpos(1);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
reset_cursor();
|
|
|
|
wrefresh(edit);
|
|
|
|
keyhandled = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
getchar();
|
|
|
|
finish(0);
|
|
|
|
|
|
|
|
}
|