2012-12-30 19:20:10 +00:00
|
|
|
/* $Id$ */
|
2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* nano.c *
|
|
|
|
* *
|
2009-12-02 03:36:22 +00:00
|
|
|
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, *
|
|
|
|
* 2008, 2009 Free Software Foundation, Inc. *
|
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 *
|
2007-08-11 05:17:36 +00:00
|
|
|
* the Free Software Foundation; either version 3, or (at your option) *
|
2000-06-06 05:53:49 +00:00
|
|
|
* any later version. *
|
|
|
|
* *
|
2005-05-15 19:57:17 +00:00
|
|
|
* 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. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software *
|
2005-05-15 19:57:17 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
|
|
|
|
* 02110-1301, USA. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2005-12-08 02:47:10 +00:00
|
|
|
#include "proto.h"
|
2001-04-28 18:03:52 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <locale.h>
|
2009-02-06 03:41:02 +00:00
|
|
|
#include <time.h>
|
2008-07-12 02:32:19 +00:00
|
|
|
#ifdef ENABLE_UTF8
|
2007-05-25 14:39:40 +00:00
|
|
|
#include <langinfo.h>
|
2008-07-12 02:32:19 +00:00
|
|
|
#endif
|
2005-12-28 05:01:00 +00:00
|
|
|
#include <termios.h>
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef HAVE_GETOPT_H
|
|
|
|
#include <getopt.h>
|
|
|
|
#endif
|
2006-07-12 18:57:04 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
|
2007-12-04 20:49:09 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
|
|
|
static int oldinterval = -1;
|
|
|
|
/* Used to store the user's original mouse click interval. */
|
|
|
|
#endif
|
2006-04-24 18:54:29 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
|
|
|
static bool no_rcfiles = FALSE;
|
|
|
|
/* Should we ignore all rcfiles? */
|
|
|
|
#endif
|
2005-12-08 07:09:08 +00:00
|
|
|
static struct termios oldterm;
|
|
|
|
/* The user's original terminal settings. */
|
|
|
|
static struct sigaction act;
|
2007-01-01 05:15:32 +00:00
|
|
|
/* Used to set up all our fun signal handlers. */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2006-08-29 21:18:24 +00:00
|
|
|
/* Create a new filestruct node. Note that we do not set prevnode->next
|
|
|
|
* to the new line. */
|
2005-07-08 02:47:05 +00:00
|
|
|
filestruct *make_new_node(filestruct *prevnode)
|
2005-01-19 19:52:42 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
filestruct *newnode = (filestruct *)nmalloc(sizeof(filestruct));
|
|
|
|
|
|
|
|
newnode->data = NULL;
|
|
|
|
newnode->prev = prevnode;
|
|
|
|
newnode->next = NULL;
|
|
|
|
newnode->lineno = (prevnode != NULL) ? prevnode->lineno + 1 : 1;
|
|
|
|
|
2009-01-19 19:10:39 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2009-02-03 05:05:58 +00:00
|
|
|
newnode->multidata = NULL;
|
2009-01-19 19:10:39 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
return newnode;
|
2005-01-19 19:52:42 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Make a copy of a filestruct node. */
|
|
|
|
filestruct *copy_node(const filestruct *src)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
filestruct *dst;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(src != NULL);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
dst = (filestruct *)nmalloc(sizeof(filestruct));
|
2003-03-11 03:50:40 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
dst->data = mallocstrcpy(NULL, src->data);
|
|
|
|
dst->next = src->next;
|
|
|
|
dst->prev = src->prev;
|
|
|
|
dst->lineno = src->lineno;
|
2009-01-25 07:25:17 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2009-02-03 05:05:58 +00:00
|
|
|
dst->multidata = NULL;
|
2009-01-25 07:25:17 +00:00
|
|
|
#endif
|
2002-02-27 04:14:16 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
return dst;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Splice a node into an existing filestruct. */
|
|
|
|
void splice_node(filestruct *begin, filestruct *newnode, filestruct
|
|
|
|
*end)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(newnode != NULL && begin != NULL);
|
2005-06-06 16:27:18 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
newnode->next = end;
|
|
|
|
newnode->prev = begin;
|
|
|
|
begin->next = newnode;
|
|
|
|
if (end != NULL)
|
|
|
|
end->prev = newnode;
|
|
|
|
}
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Unlink a node from the rest of the filestruct. */
|
|
|
|
void unlink_node(const filestruct *fileptr)
|
|
|
|
{
|
|
|
|
assert(fileptr != NULL);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
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
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Delete a node from the filestruct. */
|
|
|
|
void delete_node(filestruct *fileptr)
|
|
|
|
{
|
|
|
|
assert(fileptr != NULL && fileptr->data != NULL);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (fileptr->data != NULL)
|
|
|
|
free(fileptr->data);
|
2005-07-19 04:50:55 +00:00
|
|
|
|
2009-01-25 07:25:17 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2009-02-03 05:05:58 +00:00
|
|
|
if (fileptr->multidata)
|
|
|
|
free(fileptr->multidata);
|
2009-01-25 07:25:17 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
free(fileptr);
|
2001-07-11 02:08:33 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Duplicate a whole filestruct. */
|
|
|
|
filestruct *copy_filestruct(const filestruct *src)
|
2001-07-11 02:08:33 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
filestruct *head, *copy;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(src != NULL);
|
2004-04-30 04:49:02 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
copy = copy_node(src);
|
|
|
|
copy->prev = NULL;
|
|
|
|
head = copy;
|
|
|
|
src = src->next;
|
2004-08-10 23:05:59 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
while (src != NULL) {
|
|
|
|
copy->next = copy_node(src);
|
|
|
|
copy->next->prev = copy;
|
|
|
|
copy = copy->next;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
src = src->next;
|
|
|
|
}
|
2005-07-19 04:50:55 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
copy->next = NULL;
|
2002-02-22 04:30:50 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
return head;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
/* Free a filestruct. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void free_filestruct(filestruct *src)
|
2001-01-14 05:18:27 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(src != NULL);
|
|
|
|
|
|
|
|
while (src->next != NULL) {
|
|
|
|
src = src->next;
|
|
|
|
delete_node(src->prev);
|
|
|
|
}
|
2005-07-19 04:50:55 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
delete_node(src);
|
2001-01-14 05:18:27 +00:00
|
|
|
}
|
|
|
|
|
2005-07-17 01:44:35 +00:00
|
|
|
/* Renumber all entries in a filestruct, starting with fileptr. */
|
2005-07-08 20:59:24 +00:00
|
|
|
void renumber(filestruct *fileptr)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2005-07-08 20:59:24 +00:00
|
|
|
ssize_t line;
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2006-04-20 03:02:33 +00:00
|
|
|
assert(fileptr != NULL);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-15 00:08:23 +00:00
|
|
|
line = (fileptr->prev == NULL) ? 0 : fileptr->prev->lineno;
|
2001-01-14 05:18:27 +00:00
|
|
|
|
2005-07-08 20:59:24 +00:00
|
|
|
assert(fileptr != fileptr->next);
|
2005-07-08 02:47:05 +00:00
|
|
|
|
2005-07-08 20:59:24 +00:00
|
|
|
for (; fileptr != NULL; fileptr = fileptr->next)
|
2005-07-14 23:51:52 +00:00
|
|
|
fileptr->lineno = ++line;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2007-01-11 22:54:55 +00:00
|
|
|
/* Partition a filestruct so that it begins at (top, top_x) and ends at
|
|
|
|
* (bot, bot_x). */
|
2005-07-08 02:47:05 +00:00
|
|
|
partition *partition_filestruct(filestruct *top, size_t top_x,
|
|
|
|
filestruct *bot, size_t bot_x)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
partition *p;
|
2003-01-26 04:15:56 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(top != NULL && bot != NULL && openfile->fileage != NULL && openfile->filebot != NULL);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Initialize the partition. */
|
|
|
|
p = (partition *)nmalloc(sizeof(partition));
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If the top and bottom of the partition are different from the top
|
|
|
|
* and bottom of the filestruct, save the latter and then set them
|
|
|
|
* to top and bot. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (top != openfile->fileage) {
|
|
|
|
p->fileage = openfile->fileage;
|
|
|
|
openfile->fileage = top;
|
2002-09-06 20:35:28 +00:00
|
|
|
} else
|
2005-07-08 02:47:05 +00:00
|
|
|
p->fileage = NULL;
|
2005-07-08 20:09:16 +00:00
|
|
|
if (bot != openfile->filebot) {
|
|
|
|
p->filebot = openfile->filebot;
|
|
|
|
openfile->filebot = bot;
|
2005-07-08 02:47:05 +00:00
|
|
|
} else
|
|
|
|
p->filebot = NULL;
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Save the line above the top of the partition, detach the top of
|
|
|
|
* the partition from it, and save the text before top_x in
|
|
|
|
* top_data. */
|
|
|
|
p->top_prev = top->prev;
|
|
|
|
top->prev = NULL;
|
|
|
|
p->top_data = mallocstrncpy(NULL, top->data, top_x + 1);
|
|
|
|
p->top_data[top_x] = '\0';
|
2005-03-30 18:11:59 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Save the line below the bottom of the partition, detach the
|
|
|
|
* bottom of the partition from it, and save the text after bot_x in
|
|
|
|
* bot_data. */
|
|
|
|
p->bot_next = bot->next;
|
|
|
|
bot->next = NULL;
|
|
|
|
p->bot_data = mallocstrcpy(NULL, bot->data + bot_x);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Remove all text after bot_x at the bottom of the partition. */
|
|
|
|
null_at(&bot->data, bot_x);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Remove all text before top_x at the top of the partition. */
|
2005-09-02 03:08:09 +00:00
|
|
|
charmove(top->data, top->data + top_x, strlen(top->data) -
|
|
|
|
top_x + 1);
|
2005-07-08 02:47:05 +00:00
|
|
|
align(&top->data);
|
2003-02-10 02:32:58 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Return the partition. */
|
|
|
|
return p;
|
|
|
|
}
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2007-01-11 22:54:55 +00:00
|
|
|
/* Unpartition a filestruct so that it begins at (fileage, 0) and ends
|
|
|
|
* at (filebot, strlen(filebot->data)) again. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void unpartition_filestruct(partition **p)
|
|
|
|
{
|
|
|
|
char *tmp;
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(p != NULL && openfile->fileage != NULL && openfile->filebot != NULL);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Reattach the line above the top of the partition, and restore the
|
|
|
|
* text before top_x from top_data. Free top_data when we're done
|
|
|
|
* with it. */
|
2005-07-08 20:09:16 +00:00
|
|
|
tmp = mallocstrcpy(NULL, openfile->fileage->data);
|
|
|
|
openfile->fileage->prev = (*p)->top_prev;
|
|
|
|
if (openfile->fileage->prev != NULL)
|
|
|
|
openfile->fileage->prev->next = openfile->fileage;
|
|
|
|
openfile->fileage->data = charealloc(openfile->fileage->data,
|
|
|
|
strlen((*p)->top_data) + strlen(openfile->fileage->data) + 1);
|
|
|
|
strcpy(openfile->fileage->data, (*p)->top_data);
|
2005-07-08 02:47:05 +00:00
|
|
|
free((*p)->top_data);
|
2005-07-08 20:09:16 +00:00
|
|
|
strcat(openfile->fileage->data, tmp);
|
2005-07-08 02:47:05 +00:00
|
|
|
free(tmp);
|
2005-03-30 18:11:59 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Reattach the line below the bottom of the partition, and restore
|
|
|
|
* the text after bot_x from bot_data. Free bot_data when we're
|
|
|
|
* done with it. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filebot->next = (*p)->bot_next;
|
|
|
|
if (openfile->filebot->next != NULL)
|
|
|
|
openfile->filebot->next->prev = openfile->filebot;
|
|
|
|
openfile->filebot->data = charealloc(openfile->filebot->data,
|
|
|
|
strlen(openfile->filebot->data) + strlen((*p)->bot_data) + 1);
|
|
|
|
strcat(openfile->filebot->data, (*p)->bot_data);
|
2005-07-08 02:47:05 +00:00
|
|
|
free((*p)->bot_data);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Restore the top and bottom of the filestruct, if they were
|
|
|
|
* different from the top and bottom of the partition. */
|
|
|
|
if ((*p)->fileage != NULL)
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fileage = (*p)->fileage;
|
2005-07-08 02:47:05 +00:00
|
|
|
if ((*p)->filebot != NULL)
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filebot = (*p)->filebot;
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Uninitialize the partition. */
|
|
|
|
free(*p);
|
|
|
|
*p = NULL;
|
|
|
|
}
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Move all the text between (top, top_x) and (bot, bot_x) in the
|
|
|
|
* current filestruct to a filestruct beginning with file_top and ending
|
|
|
|
* with file_bot. If no text is between (top, top_x) and (bot, bot_x),
|
|
|
|
* don't do anything. */
|
|
|
|
void move_to_filestruct(filestruct **file_top, filestruct **file_bot,
|
|
|
|
filestruct *top, size_t top_x, filestruct *bot, size_t bot_x)
|
|
|
|
{
|
|
|
|
filestruct *top_save;
|
2005-09-02 04:35:58 +00:00
|
|
|
bool edittop_inside;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
bool mark_inside = FALSE;
|
2014-02-22 16:46:27 +00:00
|
|
|
bool same_line = FALSE;
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(file_top != NULL && file_bot != NULL && top != NULL && bot != NULL);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If (top, top_x)-(bot, bot_x) doesn't cover any text, get out. */
|
|
|
|
if (top == bot && top_x == bot_x)
|
|
|
|
return;
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Partition the filestruct so that it contains only the text from
|
|
|
|
* (top, top_x) to (bot, bot_x), keep track of whether the top of
|
2005-09-02 04:35:58 +00:00
|
|
|
* the edit window is inside the partition, and keep track of
|
2005-07-08 02:47:05 +00:00
|
|
|
* whether the mark begins inside the partition. */
|
|
|
|
filepart = partition_filestruct(top, top_x, bot, bot_x);
|
2005-09-02 04:35:58 +00:00
|
|
|
edittop_inside = (openfile->edittop->lineno >=
|
|
|
|
openfile->fileage->lineno && openfile->edittop->lineno <=
|
|
|
|
openfile->filebot->lineno);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-02-22 16:46:27 +00:00
|
|
|
if (openfile->mark_set) {
|
2005-07-12 17:40:16 +00:00
|
|
|
mark_inside = (openfile->mark_begin->lineno >=
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fileage->lineno &&
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->mark_begin->lineno <=
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->filebot->lineno &&
|
2005-07-12 17:40:16 +00:00
|
|
|
(openfile->mark_begin != openfile->fileage ||
|
|
|
|
openfile->mark_begin_x >= top_x) &&
|
|
|
|
(openfile->mark_begin != openfile->filebot ||
|
|
|
|
openfile->mark_begin_x <= bot_x));
|
2014-02-22 16:46:27 +00:00
|
|
|
same_line = (openfile->mark_begin == openfile->fileage);
|
|
|
|
}
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Get the number of characters in the text, and subtract it from
|
|
|
|
* totsize. */
|
2005-07-17 01:44:35 +00:00
|
|
|
openfile->totsize -= get_totsize(top, bot);
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (*file_top == NULL) {
|
|
|
|
/* If file_top is empty, just move all the text directly into
|
|
|
|
* it. This is equivalent to tacking the text in top onto the
|
|
|
|
* (lack of) text at the end of file_top. */
|
2005-07-08 20:09:16 +00:00
|
|
|
*file_top = openfile->fileage;
|
|
|
|
*file_bot = openfile->filebot;
|
2005-07-17 01:44:35 +00:00
|
|
|
|
|
|
|
/* Renumber starting with file_top. */
|
|
|
|
renumber(*file_top);
|
2005-07-08 02:47:05 +00:00
|
|
|
} else {
|
2005-07-17 01:44:35 +00:00
|
|
|
filestruct *file_bot_save = *file_bot;
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Otherwise, tack the text in top onto the text at the end of
|
|
|
|
* file_bot. */
|
|
|
|
(*file_bot)->data = charealloc((*file_bot)->data,
|
2005-07-08 20:09:16 +00:00
|
|
|
strlen((*file_bot)->data) +
|
|
|
|
strlen(openfile->fileage->data) + 1);
|
|
|
|
strcat((*file_bot)->data, openfile->fileage->data);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Attach the line after top to the line after file_bot. Then,
|
|
|
|
* if there's more than one line after top, move file_bot down
|
|
|
|
* to bot. */
|
2005-07-08 20:09:16 +00:00
|
|
|
(*file_bot)->next = openfile->fileage->next;
|
2005-07-08 02:47:05 +00:00
|
|
|
if ((*file_bot)->next != NULL) {
|
|
|
|
(*file_bot)->next->prev = *file_bot;
|
2005-07-08 20:09:16 +00:00
|
|
|
*file_bot = openfile->filebot;
|
2004-09-11 21:41:13 +00:00
|
|
|
}
|
2005-07-17 01:44:35 +00:00
|
|
|
|
|
|
|
/* Renumber starting with the line after the original
|
|
|
|
* file_bot. */
|
|
|
|
if (file_bot_save->next != NULL)
|
|
|
|
renumber(file_bot_save->next);
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2007-08-07 19:55:06 +00:00
|
|
|
/* Since the text has now been saved, remove it from the
|
|
|
|
* filestruct. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fileage = (filestruct *)nmalloc(sizeof(filestruct));
|
|
|
|
openfile->fileage->data = mallocstrcpy(NULL, "");
|
|
|
|
openfile->filebot = openfile->fileage;
|
2007-08-07 19:55:06 +00:00
|
|
|
|
2009-01-31 23:36:00 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2009-02-03 05:05:58 +00:00
|
|
|
openfile->fileage->multidata = NULL;
|
2009-01-31 23:36:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-08-07 19:55:06 +00:00
|
|
|
/* Restore the current line and cursor position. If the mark begins
|
|
|
|
* inside the partition, set the beginning of the mark to where the
|
|
|
|
* saved text used to start. */
|
|
|
|
openfile->current = openfile->fileage;
|
|
|
|
openfile->current_x = top_x;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 02:47:05 +00:00
|
|
|
if (mark_inside) {
|
2007-08-07 19:55:06 +00:00
|
|
|
openfile->mark_begin = openfile->current;
|
|
|
|
openfile->mark_begin_x = openfile->current_x;
|
2014-02-22 16:46:27 +00:00
|
|
|
} else if (same_line)
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Update the content of this partially cut line. */
|
2014-02-22 16:46:27 +00:00
|
|
|
openfile->mark_begin = openfile->current;
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
top_save = openfile->fileage;
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Unpartition the filestruct so that it contains all the text
|
|
|
|
* again, minus the saved text. */
|
|
|
|
unpartition_filestruct(&filepart);
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2005-09-02 04:35:58 +00:00
|
|
|
/* If the top of the edit window was inside the old partition, put
|
|
|
|
* it in range of current. */
|
|
|
|
if (edittop_inside)
|
2009-11-22 21:35:56 +00:00
|
|
|
edit_update(NONE);
|
2005-09-02 04:35:58 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Renumber starting with the beginning line of the old
|
|
|
|
* partition. */
|
|
|
|
renumber(top_save);
|
2005-06-13 14:00:22 +00:00
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, and the text doesn't end with
|
|
|
|
* a magicline, add a new magicline. */
|
|
|
|
if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0')
|
2005-07-08 02:47:05 +00:00
|
|
|
new_magicline();
|
|
|
|
}
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Copy all the text from the filestruct beginning with file_top and
|
|
|
|
* ending with file_bot to the current filestruct at the current cursor
|
|
|
|
* position. */
|
|
|
|
void copy_from_filestruct(filestruct *file_top, filestruct *file_bot)
|
|
|
|
{
|
|
|
|
filestruct *top_save;
|
2007-08-16 03:23:30 +00:00
|
|
|
size_t current_x_save = openfile->current_x;
|
2005-09-02 04:35:58 +00:00
|
|
|
bool edittop_inside;
|
2007-08-07 20:21:39 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-08-16 14:45:17 +00:00
|
|
|
bool right_side_up = FALSE, single_line = FALSE;
|
2007-08-07 20:21:39 +00:00
|
|
|
#endif
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
assert(file_top != NULL && file_bot != NULL);
|
2005-02-25 19:17:57 +00:00
|
|
|
|
2007-08-16 14:45:17 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
/* Keep track of whether the mark begins inside the partition and
|
|
|
|
* will need adjustment. */
|
|
|
|
if (openfile->mark_set) {
|
|
|
|
filestruct *top, *bot;
|
|
|
|
size_t top_x, bot_x;
|
|
|
|
|
|
|
|
mark_order((const filestruct **)&top, &top_x,
|
|
|
|
(const filestruct **)&bot, &bot_x, &right_side_up);
|
|
|
|
|
|
|
|
single_line = (top == bot);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Partition the filestruct so that it contains no text, and keep
|
|
|
|
* track of whether the top of the edit window is inside the
|
|
|
|
* partition. */
|
2007-08-08 00:05:49 +00:00
|
|
|
filepart = partition_filestruct(openfile->current,
|
|
|
|
openfile->current_x, openfile->current, openfile->current_x);
|
|
|
|
edittop_inside = (openfile->edittop == openfile->fileage);
|
2007-08-07 20:21:39 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Put the top and bottom of the filestruct at copies of file_top
|
|
|
|
* and file_bot. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->fileage = copy_filestruct(file_top);
|
|
|
|
openfile->filebot = openfile->fileage;
|
|
|
|
while (openfile->filebot->next != NULL)
|
|
|
|
openfile->filebot = openfile->filebot->next;
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2007-08-07 20:21:39 +00:00
|
|
|
/* Restore the current line and cursor position. If the mark begins
|
|
|
|
* inside the partition, adjust the mark coordinates to compensate
|
|
|
|
* for the change in the current line. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = openfile->filebot;
|
|
|
|
openfile->current_x = strlen(openfile->filebot->data);
|
2007-08-07 20:21:39 +00:00
|
|
|
if (openfile->fileage == openfile->filebot) {
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (openfile->mark_set) {
|
|
|
|
openfile->mark_begin = openfile->current;
|
2007-08-16 14:45:17 +00:00
|
|
|
if (!right_side_up)
|
2007-08-07 20:21:39 +00:00
|
|
|
openfile->mark_begin_x += openfile->current_x;
|
|
|
|
}
|
|
|
|
#endif
|
2007-08-16 03:23:30 +00:00
|
|
|
openfile->current_x += current_x_save;
|
2007-08-07 20:21:39 +00:00
|
|
|
}
|
2007-08-16 03:23:30 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-08-16 14:45:17 +00:00
|
|
|
else if (openfile->mark_set) {
|
2014-01-26 22:47:08 +00:00
|
|
|
if (right_side_up) {
|
|
|
|
if (single_line)
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Get the new data, stuff was inserted on the mark line. */
|
2014-01-26 22:47:08 +00:00
|
|
|
openfile->mark_begin = openfile->fileage;
|
2014-03-24 21:48:23 +00:00
|
|
|
/* The x is okay, it did not move. */
|
2014-01-26 22:47:08 +00:00
|
|
|
} else {
|
2007-08-16 14:45:17 +00:00
|
|
|
if (single_line) {
|
|
|
|
openfile->mark_begin = openfile->current;
|
|
|
|
openfile->mark_begin_x -= current_x_save;
|
|
|
|
} else
|
|
|
|
openfile->mark_begin_x -= openfile->current_x;
|
|
|
|
}
|
|
|
|
}
|
2007-08-16 03:23:30 +00:00
|
|
|
#endif
|
2005-05-14 20:52:20 +00:00
|
|
|
|
2005-09-02 04:35:58 +00:00
|
|
|
/* Get the number of characters in the copied text, and add it to
|
2005-07-17 01:44:35 +00:00
|
|
|
* totsize. */
|
|
|
|
openfile->totsize += get_totsize(openfile->fileage,
|
|
|
|
openfile->filebot);
|
2005-05-14 20:52:20 +00:00
|
|
|
|
2005-09-02 04:35:58 +00:00
|
|
|
/* Update the current y-coordinate to account for the number of
|
|
|
|
* lines the copied text has, less one since the first line will be
|
|
|
|
* tacked onto the current line. */
|
2005-07-17 01:44:35 +00:00
|
|
|
openfile->current_y += openfile->filebot->lineno - 1;
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
top_save = openfile->fileage;
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-09-02 04:35:58 +00:00
|
|
|
/* If the top of the edit window is inside the partition, set it to
|
|
|
|
* where the copied text now starts. */
|
|
|
|
if (edittop_inside)
|
|
|
|
openfile->edittop = openfile->fileage;
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Unpartition the filestruct so that it contains all the text
|
2005-09-02 04:35:58 +00:00
|
|
|
* again, plus the copied text. */
|
2005-07-08 02:47:05 +00:00
|
|
|
unpartition_filestruct(&filepart);
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Renumber starting with the beginning line of the old
|
|
|
|
* partition. */
|
|
|
|
renumber(top_save);
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, and the text doesn't end with
|
|
|
|
* a magicline, add a new magicline. */
|
|
|
|
if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0')
|
2005-07-08 02:47:05 +00:00
|
|
|
new_magicline();
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 21:08:38 +00:00
|
|
|
/* Create a new openfilestruct node. */
|
|
|
|
openfilestruct *make_new_opennode(void)
|
|
|
|
{
|
|
|
|
openfilestruct *newnode =
|
|
|
|
(openfilestruct *)nmalloc(sizeof(openfilestruct));
|
|
|
|
|
|
|
|
newnode->filename = NULL;
|
|
|
|
newnode->fileage = NULL;
|
|
|
|
newnode->filebot = NULL;
|
|
|
|
newnode->edittop = NULL;
|
|
|
|
newnode->current = NULL;
|
2008-08-02 14:39:42 +00:00
|
|
|
#ifndef NANO_TINY
|
2010-01-18 03:43:24 +00:00
|
|
|
newnode->current_stat = NULL;
|
2008-07-10 20:13:04 +00:00
|
|
|
newnode->last_action = OTHER;
|
2013-01-01 03:24:39 +00:00
|
|
|
newnode->lock_filename = NULL;
|
2008-08-02 14:39:42 +00:00
|
|
|
#endif
|
2005-07-20 21:08:38 +00:00
|
|
|
|
|
|
|
return newnode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Splice a node into an existing openfilestruct. */
|
|
|
|
void splice_opennode(openfilestruct *begin, openfilestruct *newnode,
|
|
|
|
openfilestruct *end)
|
|
|
|
{
|
|
|
|
assert(newnode != NULL && begin != NULL);
|
|
|
|
|
|
|
|
newnode->next = end;
|
|
|
|
newnode->prev = begin;
|
|
|
|
begin->next = newnode;
|
|
|
|
|
|
|
|
if (end != NULL)
|
|
|
|
end->prev = newnode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unlink a node from the rest of the openfilestruct, and delete it. */
|
|
|
|
void unlink_opennode(openfilestruct *fileptr)
|
|
|
|
{
|
|
|
|
assert(fileptr != NULL && fileptr->prev != NULL && fileptr->next != NULL && fileptr != fileptr->prev && fileptr != fileptr->next);
|
|
|
|
|
|
|
|
fileptr->prev->next = fileptr->next;
|
|
|
|
fileptr->next->prev = fileptr->prev;
|
|
|
|
|
|
|
|
delete_opennode(fileptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete a node from the openfilestruct. */
|
|
|
|
void delete_opennode(openfilestruct *fileptr)
|
|
|
|
{
|
|
|
|
assert(fileptr != NULL && fileptr->filename != NULL && fileptr->fileage != NULL);
|
|
|
|
|
|
|
|
free(fileptr->filename);
|
|
|
|
free_filestruct(fileptr->fileage);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-20 21:08:38 +00:00
|
|
|
if (fileptr->current_stat != NULL)
|
|
|
|
free(fileptr->current_stat);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
free(fileptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
/* Deallocate all memory associated with this and later files, including
|
|
|
|
* the lines of text. */
|
|
|
|
void free_openfilestruct(openfilestruct *src)
|
|
|
|
{
|
|
|
|
assert(src != NULL);
|
|
|
|
|
|
|
|
while (src != src->next) {
|
|
|
|
src = src->next;
|
|
|
|
delete_opennode(src->prev);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete_opennode(src);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Display a warning about a key disabled in view mode. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void print_view_warning(void)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2006-07-31 01:30:31 +00:00
|
|
|
statusbar(_("Key invalid in view mode"));
|
2002-09-06 20:35:28 +00:00
|
|
|
}
|
|
|
|
|
2007-01-09 22:56:56 +00:00
|
|
|
/* Make nano exit gracefully. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void finish(void)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2006-08-21 14:04:28 +00:00
|
|
|
/* Blank the statusbar (and shortcut list, if applicable), and move
|
|
|
|
* the cursor to the last line of the screen. */
|
2005-07-08 02:47:05 +00:00
|
|
|
if (!ISSET(NO_HELP))
|
|
|
|
blank_bottombars();
|
|
|
|
else
|
|
|
|
blank_statusbar();
|
2005-07-29 03:28:09 +00:00
|
|
|
wrefresh(bottomwin);
|
2005-07-08 02:47:05 +00:00
|
|
|
endwin();
|
2002-04-10 02:31:20 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Restore the old terminal settings. */
|
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
|
2006-04-24 18:54:29 +00:00
|
|
|
if (!no_rcfiles && ISSET(HISTORYLOG))
|
2005-07-08 02:47:05 +00:00
|
|
|
save_history();
|
2011-02-18 07:30:57 +00:00
|
|
|
if (!no_rcfiles && ISSET(POS_HISTORY)) {
|
|
|
|
update_poshistory(openfile->filename, openfile->current->lineno, xplustabs()+1);
|
2011-02-16 06:52:30 +00:00
|
|
|
save_poshistory();
|
2011-02-18 07:30:57 +00:00
|
|
|
}
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
thanks_for_all_the_fish();
|
|
|
|
#endif
|
|
|
|
|
2007-01-09 22:56:56 +00:00
|
|
|
/* Get out. */
|
2005-07-08 02:47:05 +00:00
|
|
|
exit(0);
|
2002-04-10 02:31:20 +00:00
|
|
|
}
|
|
|
|
|
2007-01-09 22:56:56 +00:00
|
|
|
/* Make nano die gracefully. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void die(const char *msg, ...)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
va_list ap;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
endwin();
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Restore the old terminal settings. */
|
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
2005-05-14 20:52:20 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
va_start(ap, msg);
|
|
|
|
vfprintf(stderr, msg, ap);
|
|
|
|
va_end(ap);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Save the current file buffer if it's been modified. */
|
2008-05-31 22:23:16 +00:00
|
|
|
if (openfile && openfile->modified) {
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If we've partitioned the filestruct, unpartition it now. */
|
|
|
|
if (filepart != NULL)
|
|
|
|
unpartition_filestruct(&filepart);
|
|
|
|
|
2009-11-22 21:35:56 +00:00
|
|
|
die_save_file(openfile->filename
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
, openfile->current_stat
|
|
|
|
#endif
|
|
|
|
);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Save all of the other modified file buffers, if any. */
|
2005-07-08 19:57:25 +00:00
|
|
|
if (openfile != NULL) {
|
|
|
|
openfilestruct *tmp = openfile;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-07-08 19:57:25 +00:00
|
|
|
while (tmp != openfile->next) {
|
|
|
|
openfile = openfile->next;
|
2004-11-25 04:39:07 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Save the current file buffer if it's been modified. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->modified)
|
2009-11-22 21:35:56 +00:00
|
|
|
die_save_file(openfile->filename
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
, openfile->current_stat
|
|
|
|
#endif
|
|
|
|
);
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2002-04-10 02:31:20 +00:00
|
|
|
}
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Get out. */
|
|
|
|
exit(1);
|
2002-04-10 02:31:20 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Save the current file under the name spacified in die_filename, which
|
|
|
|
* is modified to be unique if necessary. */
|
2009-11-22 21:35:56 +00:00
|
|
|
void die_save_file(const char *die_filename
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
, struct stat *die_stat
|
|
|
|
#endif
|
|
|
|
)
|
2004-11-03 22:03:41 +00:00
|
|
|
{
|
2005-07-08 02:47:05 +00:00
|
|
|
char *retval;
|
|
|
|
bool failed = TRUE;
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* If we're using restricted mode, don't write any emergency backup
|
|
|
|
* files, since that would allow reading from or writing to files
|
|
|
|
* not specified on the command line. */
|
|
|
|
if (ISSET(RESTRICTED))
|
|
|
|
return;
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2007-01-09 22:56:56 +00:00
|
|
|
/* If we can't save, we have really bad problems, but we might as
|
|
|
|
* well try. */
|
2007-07-01 21:33:17 +00:00
|
|
|
if (*die_filename == '\0')
|
2005-07-08 02:47:05 +00:00
|
|
|
die_filename = "nano";
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
retval = get_next_filename(die_filename, ".save");
|
|
|
|
if (retval[0] != '\0')
|
2007-01-12 02:58:12 +00:00
|
|
|
failed = !write_file(retval, NULL, TRUE, OVERWRITE, TRUE);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (!failed)
|
|
|
|
fprintf(stderr, _("\nBuffer written to %s\n"), retval);
|
|
|
|
else if (retval[0] != '\0')
|
|
|
|
fprintf(stderr, _("\nBuffer not written to %s: %s\n"), retval,
|
|
|
|
strerror(errno));
|
|
|
|
else
|
|
|
|
fprintf(stderr, _("\nBuffer not written: %s\n"),
|
|
|
|
_("Too many backup files?"));
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2009-11-22 21:35:56 +00:00
|
|
|
#ifndef NANO_TINY
|
2009-11-20 05:09:12 +00:00
|
|
|
/* Try and chmod/chown the save file to the values of the original file, but
|
|
|
|
dont worry if it fails because we're supposed to be bailing as fast
|
|
|
|
as possible. */
|
|
|
|
if (die_stat) {
|
|
|
|
int shush;
|
|
|
|
shush = chmod(retval, die_stat->st_mode);
|
|
|
|
shush = chown(retval, die_stat->st_uid, die_stat->st_gid);
|
2014-04-02 20:09:16 +00:00
|
|
|
if (shush)
|
|
|
|
;
|
2009-11-20 05:09:12 +00:00
|
|
|
}
|
2009-11-22 21:35:56 +00:00
|
|
|
#endif
|
2009-11-20 05:09:12 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
free(retval);
|
|
|
|
}
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Initialize the three window portions nano uses. */
|
2005-07-25 22:54:16 +00:00
|
|
|
void window_init(void)
|
2005-07-08 02:47:05 +00:00
|
|
|
{
|
2005-07-25 22:54:16 +00:00
|
|
|
/* If the screen height is too small, get out. */
|
2005-07-08 02:47:05 +00:00
|
|
|
editwinrows = LINES - 5 + no_more_space() + no_help();
|
2005-10-26 23:14:59 +00:00
|
|
|
if (COLS < MIN_EDITOR_COLS || editwinrows < MIN_EDITOR_ROWS)
|
2005-07-08 02:47:05 +00:00
|
|
|
die(_("Window size is too small for nano...\n"));
|
2005-07-10 02:37:38 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2005-07-25 22:54:16 +00:00
|
|
|
/* Set up fill, based on the screen width. */
|
2005-07-08 02:47:05 +00:00
|
|
|
fill = wrap_at;
|
|
|
|
if (fill <= 0)
|
|
|
|
fill += COLS;
|
|
|
|
if (fill < 0)
|
|
|
|
fill = 0;
|
|
|
|
#endif
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
if (topwin != NULL)
|
|
|
|
delwin(topwin);
|
|
|
|
if (edit != NULL)
|
|
|
|
delwin(edit);
|
|
|
|
if (bottomwin != NULL)
|
|
|
|
delwin(bottomwin);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
/* Set up the windows. */
|
|
|
|
topwin = newwin(2 - no_more_space(), COLS, 0, 0);
|
|
|
|
edit = newwin(editwinrows, COLS, 2 - no_more_space(), 0);
|
2005-07-21 05:56:42 +00:00
|
|
|
bottomwin = newwin(3 - no_help(), COLS, editwinrows + (2 -
|
|
|
|
no_more_space()), 0);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2005-08-14 19:25:16 +00:00
|
|
|
/* Turn the keypad on for the windows, if necessary. */
|
2005-08-10 21:22:15 +00:00
|
|
|
if (!ISSET(REBIND_KEYPAD)) {
|
2005-08-14 19:25:16 +00:00
|
|
|
keypad(topwin, TRUE);
|
2005-08-10 21:22:15 +00:00
|
|
|
keypad(edit, TRUE);
|
|
|
|
keypad(bottomwin, TRUE);
|
|
|
|
}
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
|
|
|
|
2005-07-08 02:47:05 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2006-06-09 18:24:37 +00:00
|
|
|
/* Disable mouse support. */
|
|
|
|
void disable_mouse_support(void)
|
|
|
|
{
|
|
|
|
mousemask(0, NULL);
|
2007-12-04 20:49:09 +00:00
|
|
|
mouseinterval(oldinterval);
|
2006-06-09 18:24:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable mouse support. */
|
|
|
|
void enable_mouse_support(void)
|
|
|
|
{
|
2006-06-28 21:54:55 +00:00
|
|
|
mousemask(ALL_MOUSE_EVENTS, NULL);
|
2007-12-04 20:49:09 +00:00
|
|
|
oldinterval = mouseinterval(50);
|
2006-06-09 18:24:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize mouse support. Enable it if the USE_MOUSE flag is set,
|
|
|
|
* and disable it otherwise. */
|
2005-07-08 02:47:05 +00:00
|
|
|
void mouse_init(void)
|
2004-11-23 04:08:28 +00:00
|
|
|
{
|
2006-06-09 18:24:37 +00:00
|
|
|
if (ISSET(USE_MOUSE))
|
|
|
|
enable_mouse_support();
|
|
|
|
else
|
|
|
|
disable_mouse_support();
|
2005-07-08 02:47:05 +00:00
|
|
|
}
|
2006-06-09 18:24:37 +00:00
|
|
|
#endif /* !DISABLE_MOUSE */
|
2004-11-23 04:08:28 +00:00
|
|
|
|
2005-03-22 20:17:38 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2006-05-12 19:30:28 +00:00
|
|
|
#define print_opt(shortflag, longflag, desc) print_opt_full(shortflag, longflag, desc)
|
2005-03-22 20:17:38 +00:00
|
|
|
#else
|
2006-05-12 19:30:28 +00:00
|
|
|
#define print_opt(shortflag, longflag, desc) print_opt_full(shortflag, desc)
|
2005-03-22 20:17:38 +00:00
|
|
|
#endif
|
|
|
|
|
2004-08-05 15:16:19 +00:00
|
|
|
/* Print one usage string to the screen. This cuts down on duplicate
|
2005-03-21 07:24:47 +00:00
|
|
|
* strings to translate, and leaves out the parts that shouldn't be
|
2007-01-09 22:56:56 +00:00
|
|
|
* translatable (i.e. the flag names). */
|
2006-05-12 19:30:28 +00:00
|
|
|
void print_opt_full(const char *shortflag
|
2005-03-21 07:24:47 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
|
|
|
, const char *longflag
|
|
|
|
#endif
|
|
|
|
, const char *desc)
|
2002-03-09 18:51:58 +00:00
|
|
|
{
|
|
|
|
printf(" %s\t", shortflag);
|
2007-12-18 22:00:17 +00:00
|
|
|
if (strlenpt(shortflag) < 8)
|
2002-03-09 18:51:58 +00:00
|
|
|
printf("\t");
|
|
|
|
|
|
|
|
#ifdef HAVE_GETOPT_LONG
|
|
|
|
printf("%s\t", longflag);
|
2007-12-18 22:00:17 +00:00
|
|
|
if (strlenpt(longflag) < 8)
|
2002-03-09 18:51:58 +00:00
|
|
|
printf("\t\t");
|
2007-12-18 22:00:17 +00:00
|
|
|
else if (strlenpt(longflag) < 16)
|
2002-03-09 18:51:58 +00:00
|
|
|
printf("\t");
|
|
|
|
#endif
|
|
|
|
|
2005-04-14 03:13:49 +00:00
|
|
|
if (desc != NULL)
|
|
|
|
printf("%s", _(desc));
|
|
|
|
printf("\n");
|
2002-03-09 18:51:58 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Explain how to properly use nano and its command line options. */
|
2002-08-21 16:10:37 +00:00
|
|
|
void usage(void)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2006-06-26 04:39:31 +00:00
|
|
|
printf(_("Usage: nano [OPTIONS] [[+LINE,COLUMN] FILE]...\n\n"));
|
2005-05-21 17:15:46 +00:00
|
|
|
printf(
|
2006-05-08 19:55:18 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
|
|
|
_("Option\t\tGNU long option\t\tMeaning\n")
|
2000-06-06 05:53:49 +00:00
|
|
|
#else
|
2006-05-08 19:55:18 +00:00
|
|
|
_("Option\t\tMeaning\n")
|
2004-08-07 22:00:02 +00:00
|
|
|
#endif
|
2006-05-08 19:55:18 +00:00
|
|
|
);
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-h, -?", "--help", N_("Show this message"));
|
2006-06-26 04:39:31 +00:00
|
|
|
print_opt(_("+LINE,COLUMN"), "",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Start at line LINE, column COLUMN"));
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-A", "--smarthome", N_("Enable smart home key"));
|
|
|
|
print_opt("-B", "--backup", N_("Save backups of existing files"));
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-C <dir>"), _("--backupdir=<dir>"),
|
2005-05-30 02:09:21 +00:00
|
|
|
N_("Directory for saving unique backup files"));
|
2006-05-13 13:02:14 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-D", "--boldtext",
|
2006-04-12 15:27:40 +00:00
|
|
|
N_("Use bold instead of reverse video text"));
|
2006-05-13 13:02:14 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-E", "--tabstospaces",
|
2005-06-15 23:20:56 +00:00
|
|
|
N_("Convert typed tabs to spaces"));
|
2001-09-22 00:42:10 +00:00
|
|
|
#endif
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-F", "--multibuffer", N_("Enable multiple file buffers"));
|
2002-07-19 01:08:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_NANORC
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2013-01-01 03:24:39 +00:00
|
|
|
print_opt("-G", "--locking",
|
|
|
|
N_("Use (vim-style) lock files"));
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-H", "--historylog",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Log & read search/replace string history"));
|
2003-09-06 21:44:37 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-I", "--ignorercfiles",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Don't look at nanorc files"));
|
2001-09-22 04:20:25 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-K", "--rebindkeypad",
|
2005-08-10 21:22:15 +00:00
|
|
|
N_("Fix numeric keypad key confusion problem"));
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-L", "--nonewlines",
|
2005-11-05 17:35:44 +00:00
|
|
|
N_("Don't add newlines to the ends of files"));
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-N", "--noconvert",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Don't convert files from DOS/Mac format"));
|
2002-03-03 22:36:36 +00:00
|
|
|
#endif
|
2006-07-31 01:30:31 +00:00
|
|
|
print_opt("-O", "--morespace", N_("Use one more line for editing"));
|
2011-02-16 06:52:30 +00:00
|
|
|
#ifndef NANO_TINY
|
2011-02-18 07:30:57 +00:00
|
|
|
print_opt("-P", "--poslog",
|
|
|
|
N_("Log & read location of cursor position"));
|
2011-02-16 06:52:30 +00:00
|
|
|
#endif
|
2002-03-03 22:36:36 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-Q <str>"), _("--quotestr=<str>"),
|
2005-06-16 17:26:01 +00:00
|
|
|
N_("Quoting string"));
|
2001-07-14 19:32:47 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-R", "--restricted", N_("Restricted mode"));
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-02-01 15:25:29 +00:00
|
|
|
print_opt("-S", "--smooth",
|
|
|
|
N_("Scroll by line instead of half-screen"));
|
2001-09-22 19:02:04 +00:00
|
|
|
#endif
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-T <#cols>"), _("--tabsize=<#cols>"),
|
2006-07-31 01:30:31 +00:00
|
|
|
N_("Set width of a tab to #cols columns"));
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-U", "--quickblank", N_("Do quick statusbar blanking"));
|
2005-06-17 19:09:18 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-V", "--version",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Print version information and exit"));
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-W", "--wordbounds",
|
2005-08-10 22:12:28 +00:00
|
|
|
N_("Detect word boundaries more accurately"));
|
|
|
|
#endif
|
2002-05-04 04:23:30 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-Y <str>"), _("--syntax=<str>"),
|
2006-07-31 01:30:31 +00:00
|
|
|
N_("Syntax definition to use for coloring"));
|
2002-05-04 04:23:30 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-c", "--const", N_("Constantly show cursor position"));
|
|
|
|
print_opt("-d", "--rebinddelete",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Fix Backspace/Delete confusion problem"));
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-i", "--autoindent",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Automatically indent new lines"));
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-k", "--cut", N_("Cut from cursor to end of line"));
|
2005-03-26 22:49:46 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-l", "--nofollow",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Don't follow symbolic links, overwrite"));
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2006-06-08 02:37:45 +00:00
|
|
|
print_opt("-m", "--mouse", N_("Enable the use of the mouse"));
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-o <dir>"), _("--operatingdir=<dir>"),
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Set operating directory"));
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-p", "--preserve",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Preserve XON (^Q) and XOFF (^S) keys"));
|
2009-02-09 04:03:20 +00:00
|
|
|
print_opt("-q", "--quiet",
|
|
|
|
N_("Silently ignore startup issues like rc file errors"));
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-r <#cols>"), _("--fill=<#cols>"),
|
2006-07-31 01:30:31 +00:00
|
|
|
N_("Set wrapping point at column #cols"));
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2006-05-14 15:19:38 +00:00
|
|
|
print_opt(_("-s <prog>"), _("--speller=<prog>"),
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Enable alternate speller"));
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-t", "--tempfile",
|
2005-05-21 17:15:46 +00:00
|
|
|
N_("Auto save on exit, don't prompt"));
|
2009-07-12 03:36:58 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
print_opt("-u", "--undo", N_("Allow generic undo [EXPERIMENTAL]"));
|
|
|
|
#endif
|
|
|
|
|
2006-07-31 01:30:31 +00:00
|
|
|
print_opt("-v", "--view", N_("View mode (read-only)"));
|
2001-04-02 05:36:08 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-w", "--nowrap", N_("Don't wrap long lines"));
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
2006-06-08 02:37:45 +00:00
|
|
|
print_opt("-x", "--nohelp", N_("Don't show the two help lines"));
|
|
|
|
print_opt("-z", "--suspend", N_("Enable suspension"));
|
2014-03-03 21:30:50 +00:00
|
|
|
#ifndef NANO_TINY
|
2009-08-17 07:52:10 +00:00
|
|
|
print_opt("-$", "--softwrap", N_("Enable soft line wrapping"));
|
2014-03-03 21:30:50 +00:00
|
|
|
#endif
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2004-08-05 15:16:19 +00:00
|
|
|
/* This is a special case. */
|
2006-05-12 19:30:28 +00:00
|
|
|
print_opt("-a, -b, -e,", "", NULL);
|
|
|
|
print_opt("-f, -g, -j", "", N_("(ignored, for Pico compatibility)"));
|
2002-03-09 18:51:58 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Display the current version of nano, the date and time it was
|
|
|
|
* compiled, contact information for it, and the configuration options
|
|
|
|
* it was compiled with. */
|
2002-08-21 16:10:37 +00:00
|
|
|
void version(void)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2005-03-11 04:22:34 +00:00
|
|
|
printf(_(" GNU nano version %s (compiled %s, %s)\n"), VERSION,
|
|
|
|
__TIME__, __DATE__);
|
2009-12-02 03:36:22 +00:00
|
|
|
printf(" (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,\n");
|
|
|
|
printf(" 2008, 2009 Free Software Foundation, Inc.\n");
|
2005-03-11 04:22:34 +00:00
|
|
|
printf(
|
|
|
|
_(" Email: nano@nano-editor.org Web: http://www.nano-editor.org/"));
|
2000-11-24 20:45:14 +00:00
|
|
|
printf(_("\n Compiled options:"));
|
2000-12-01 18:46:01 +00:00
|
|
|
|
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
|
2014-04-03 20:57:44 +00:00
|
|
|
#ifdef DISABLE_EXTRA
|
|
|
|
printf(" --disable-extra");
|
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
#ifdef DISABLE_HELP
|
|
|
|
printf(" --disable-help");
|
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
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifdef DISABLE_MOUSE
|
2001-04-12 14:51:48 +00:00
|
|
|
printf(" --disable-mouse");
|
2000-12-18 05:36:51 +00:00
|
|
|
#endif
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifdef DISABLE_MULTIBUFFER
|
|
|
|
printf(" --disable-multibuffer");
|
|
|
|
#endif
|
2005-06-29 17:10:58 +00:00
|
|
|
#ifndef ENABLE_NLS
|
|
|
|
printf(" --disable-nls");
|
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifdef DISABLE_OPERATINGDIR
|
|
|
|
printf(" --disable-operatingdir");
|
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
#ifdef DISABLE_SPELLER
|
|
|
|
printf(" --disable-speller");
|
|
|
|
#endif
|
|
|
|
#ifdef DISABLE_TABCOMP
|
|
|
|
printf(" --disable-tabcomp");
|
|
|
|
#endif
|
|
|
|
#ifdef DISABLE_WRAPPING
|
|
|
|
printf(" --disable-wrapping");
|
|
|
|
#endif
|
2006-07-19 15:50:19 +00:00
|
|
|
#ifdef DISABLE_ROOTWRAPPING
|
2002-10-25 16:08:53 +00:00
|
|
|
printf(" --disable-wrapping-as-root");
|
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
|
|
|
printf(" --enable-color");
|
|
|
|
#endif
|
2005-06-29 17:10:58 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" --enable-debug");
|
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
|
|
|
printf(" --enable-nanorc");
|
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifdef NANO_TINY
|
2005-06-29 17:10:58 +00:00
|
|
|
printf(" --enable-tiny");
|
|
|
|
#endif
|
2005-07-17 02:40:07 +00:00
|
|
|
#ifdef ENABLE_UTF8
|
2005-06-29 17:10:58 +00:00
|
|
|
printf(" --enable-utf8");
|
2007-12-18 15:55:48 +00:00
|
|
|
#endif
|
|
|
|
#ifdef USE_SLANG
|
|
|
|
printf(" --with-slang");
|
2000-11-24 20:45:14 +00:00
|
|
|
#endif
|
|
|
|
printf("\n");
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Return 1 if the MORE_SPACE flag is set, and 0 otherwise. This is
|
|
|
|
* used to calculate the relative screen position while taking this flag
|
|
|
|
* into account, since it adds one line to the edit window. */
|
2005-01-17 05:06:55 +00:00
|
|
|
int no_more_space(void)
|
|
|
|
{
|
|
|
|
return ISSET(MORE_SPACE) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Return 2 if the NO_HELP flag is set, and 0 otherwise. This is used
|
|
|
|
* to calculate the relative screen position while taking this flag into
|
|
|
|
* account, since it removes two lines from the edit window. */
|
2000-06-06 05:53:49 +00:00
|
|
|
int no_help(void)
|
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
return ISSET(NO_HELP) ? 2 : 0;
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Indicate a disabled function on the statusbar. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void nano_disabled_msg(void)
|
2000-12-01 18:46:01 +00:00
|
|
|
{
|
2002-07-19 01:08:59 +00:00
|
|
|
statusbar(_("Sorry, support for this function has been disabled"));
|
2000-12-01 18:46:01 +00:00
|
|
|
}
|
|
|
|
|
2007-01-09 22:56:56 +00:00
|
|
|
/* If the current file buffer has been modified, and the TEMP_FILE flag
|
|
|
|
* isn't set, ask whether or not to save the file buffer. If the
|
|
|
|
* TEMP_FILE flag is set, save it unconditionally. Then, if more than
|
|
|
|
* one file buffer is open, close the current file buffer and switch to
|
|
|
|
* the next one. If only one file buffer is open, exit from nano. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_exit(void)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
2002-09-06 20:35:28 +00:00
|
|
|
int i;
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* If the file hasn't been modified, pretend the user chose not to
|
|
|
|
* save. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (!openfile->modified)
|
2005-11-07 21:45:44 +00:00
|
|
|
i = 0;
|
2005-12-08 07:09:08 +00:00
|
|
|
/* If the TEMP_FILE flag is set, pretend the user chose to save. */
|
2004-07-03 03:09:12 +00:00
|
|
|
else if (ISSET(TEMP_FILE))
|
2002-09-06 20:35:28 +00:00
|
|
|
i = 1;
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Otherwise, ask the user whether or not to save. */
|
2003-12-24 03:33:09 +00:00
|
|
|
else
|
2005-11-07 21:45:44 +00:00
|
|
|
i = do_yesno_prompt(FALSE,
|
2004-07-02 14:31:03 +00:00
|
|
|
_("Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "));
|
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
#ifdef DEBUG
|
2005-07-08 20:09:16 +00:00
|
|
|
dump_filestruct(openfile->fileage);
|
2001-10-22 03:15:31 +00:00
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* If the user chose not to save, or if the user chose to save and
|
|
|
|
* the save succeeded, we're ready to exit. */
|
2007-01-11 21:36:29 +00:00
|
|
|
if (i == 0 || (i == 1 && do_writeout(TRUE))) {
|
2013-01-01 03:24:39 +00:00
|
|
|
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (ISSET(LOCKING) && openfile->lock_filename)
|
|
|
|
delete_lockfile(openfile->lock_filename);
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif
|
2013-01-01 03:24:39 +00:00
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2004-12-01 15:11:27 +00:00
|
|
|
/* Exit only if there are no more open file buffers. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (!close_buffer())
|
2002-09-06 20:35:28 +00:00
|
|
|
#endif
|
2004-05-25 19:41:11 +00:00
|
|
|
finish();
|
2005-12-08 07:09:08 +00:00
|
|
|
/* If the user canceled, we go on. */
|
2004-07-02 14:31:03 +00:00
|
|
|
} else if (i != 1)
|
2002-09-06 20:35:28 +00:00
|
|
|
statusbar(_("Cancelled"));
|
|
|
|
|
2008-03-13 17:48:16 +00:00
|
|
|
shortcut_init(FALSE);
|
2002-09-06 20:35:28 +00:00
|
|
|
display_main_list();
|
|
|
|
}
|
|
|
|
|
2011-02-07 14:45:56 +00:00
|
|
|
/* Another placeholder for function mapping */
|
|
|
|
void do_cancel(void)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2009-01-30 17:37:44 +00:00
|
|
|
|
|
|
|
static struct sigaction pager_oldaction, pager_newaction; /* Original and temporary handlers for SIGINT. */
|
|
|
|
static bool pager_sig_failed = FALSE; /* Did sigaction() fail without changing the signal handlers? */
|
2010-03-21 05:31:43 +00:00
|
|
|
static bool pager_input_aborted = FALSE; /* Did someone invoke the pager and abort it via ^C? */
|
|
|
|
|
2009-01-30 17:37:44 +00:00
|
|
|
/* Things which need to be run regardless of whether
|
2014-03-24 21:48:23 +00:00
|
|
|
* we finished the stdin pipe correctly or not. */
|
2009-01-30 17:37:44 +00:00
|
|
|
void finish_stdin_pager(void)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
int ttystdin;
|
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Read whatever we did get from stdin. */
|
2009-01-30 17:37:44 +00:00
|
|
|
f = fopen("/dev/stdin", "rb");
|
|
|
|
if (f == NULL)
|
|
|
|
nperror("fopen");
|
|
|
|
|
2009-12-09 16:51:43 +00:00
|
|
|
read_file(f, 0, "stdin", TRUE, FALSE);
|
2009-01-30 17:37:44 +00:00
|
|
|
ttystdin = open("/dev/tty", O_RDONLY);
|
|
|
|
if (!ttystdin)
|
|
|
|
die(_("Couldn't reopen stdin from keyboard, sorry\n"));
|
|
|
|
|
|
|
|
dup2(ttystdin,0);
|
|
|
|
close(ttystdin);
|
2010-03-21 05:31:43 +00:00
|
|
|
if (!pager_input_aborted)
|
|
|
|
tcgetattr(0, &oldterm);
|
2009-01-30 17:37:44 +00:00
|
|
|
if (!pager_sig_failed && sigaction(SIGINT, &pager_oldaction, NULL) == -1)
|
|
|
|
nperror("sigaction");
|
|
|
|
terminal_init();
|
|
|
|
doupdate();
|
|
|
|
}
|
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Cancel reading from stdin like a pager. */
|
2009-01-30 17:37:44 +00:00
|
|
|
RETSIGTYPE cancel_stdin_pager(int signal)
|
|
|
|
{
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Currently do nothing, just handle the intr silently. */
|
2010-03-21 05:31:43 +00:00
|
|
|
pager_input_aborted = TRUE;
|
2009-01-30 17:37:44 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Let nano read stdin for the first file at least. */
|
2009-01-30 17:37:44 +00:00
|
|
|
void stdin_pager(void)
|
|
|
|
{
|
|
|
|
endwin();
|
2010-03-21 05:31:43 +00:00
|
|
|
if (!pager_input_aborted)
|
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
2009-01-30 17:37:44 +00:00
|
|
|
fprintf(stderr, _("Reading from stdin, ^C to abort\n"));
|
|
|
|
|
|
|
|
/* Set things up so that Ctrl-C will cancel the new process. */
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Enable interpretation of the special control keys so that
|
|
|
|
* we get SIGINT when Ctrl-C is pressed. */
|
2009-02-01 00:04:42 +00:00
|
|
|
#ifndef NANO_TINY
|
2009-01-30 17:37:44 +00:00
|
|
|
enable_signals();
|
2009-02-01 00:04:42 +00:00
|
|
|
#endif
|
2009-01-30 17:37:44 +00:00
|
|
|
|
|
|
|
if (sigaction(SIGINT, NULL, &pager_newaction) == -1) {
|
|
|
|
pager_sig_failed = TRUE;
|
|
|
|
nperror("sigaction");
|
|
|
|
} else {
|
|
|
|
pager_newaction.sa_handler = cancel_stdin_pager;
|
|
|
|
if (sigaction(SIGINT, &pager_newaction, &pager_oldaction) == -1) {
|
|
|
|
pager_sig_failed = TRUE;
|
|
|
|
nperror("sigaction");
|
|
|
|
}
|
|
|
|
}
|
2010-03-21 05:31:43 +00:00
|
|
|
|
2009-01-30 17:37:44 +00:00
|
|
|
open_buffer("", FALSE);
|
|
|
|
finish_stdin_pager();
|
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Initialize the signal handlers. */
|
2002-09-06 20:35:28 +00:00
|
|
|
void signal_init(void)
|
|
|
|
{
|
2004-04-07 00:44:35 +00:00
|
|
|
/* Trap SIGINT and SIGQUIT because we want them to do useful
|
|
|
|
* things. */
|
2002-09-06 20:35:28 +00:00
|
|
|
memset(&act, 0, sizeof(struct sigaction));
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGINT, &act, NULL);
|
2004-01-26 20:56:20 +00:00
|
|
|
sigaction(SIGQUIT, &act, NULL);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2004-04-07 00:44:35 +00:00
|
|
|
/* Trap SIGHUP and SIGTERM because we want to write the file out. */
|
2002-10-17 02:19:31 +00:00
|
|
|
act.sa_handler = handle_hupterm;
|
2002-09-06 20:35:28 +00:00
|
|
|
sigaction(SIGHUP, &act, NULL);
|
2002-10-17 02:19:31 +00:00
|
|
|
sigaction(SIGTERM, &act, NULL);
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-04-07 00:44:35 +00:00
|
|
|
/* Trap SIGWINCH because we want to handle window resizes. */
|
2002-09-06 20:35:28 +00:00
|
|
|
act.sa_handler = handle_sigwinch;
|
|
|
|
sigaction(SIGWINCH, &act, NULL);
|
2004-02-16 20:32:40 +00:00
|
|
|
allow_pending_sigwinch(FALSE);
|
2002-03-21 05:07:28 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Trap normal suspend (^Z) so we can handle it ourselves. */
|
2002-09-06 20:35:28 +00:00
|
|
|
if (!ISSET(SUSPEND)) {
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGTSTP, &act, NULL);
|
|
|
|
} else {
|
2004-04-07 00:44:35 +00:00
|
|
|
/* Block all other signals in the suspend and continue handlers.
|
|
|
|
* If we don't do this, other stuff interrupts them! */
|
2002-09-06 20:35:28 +00:00
|
|
|
sigfillset(&act.sa_mask);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-09-06 20:35:28 +00:00
|
|
|
act.sa_handler = do_suspend;
|
|
|
|
sigaction(SIGTSTP, &act, NULL);
|
2002-05-12 19:52:15 +00:00
|
|
|
|
2005-12-06 19:39:56 +00:00
|
|
|
act.sa_handler = do_continue;
|
2002-09-06 20:35:28 +00:00
|
|
|
sigaction(SIGCONT, &act, NULL);
|
|
|
|
}
|
|
|
|
}
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Handler for SIGHUP (hangup) and SIGTERM (terminate). */
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE handle_hupterm(int signal)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2003-02-03 03:32:08 +00:00
|
|
|
die(_("Received SIGHUP or SIGTERM\n"));
|
2002-09-06 20:35:28 +00:00
|
|
|
}
|
2002-06-21 03:20:06 +00:00
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Handler for SIGTSTP (suspend). */
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE do_suspend(int signal)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2010-11-12 06:22:12 +00:00
|
|
|
|
|
|
|
if (ISSET(RESTRICTED)) {
|
|
|
|
nano_disabled_msg();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-06-09 18:24:37 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
|
|
|
/* Turn mouse support off. */
|
|
|
|
disable_mouse_support();
|
|
|
|
#endif
|
|
|
|
|
2009-11-29 06:24:10 +00:00
|
|
|
/* Move the cursor to the last line of the screen. */
|
2006-06-09 16:04:19 +00:00
|
|
|
move(LINES - 1, 0);
|
2009-11-28 03:01:30 +00:00
|
|
|
endwin();
|
2006-06-03 17:31:52 +00:00
|
|
|
|
2006-06-09 16:04:19 +00:00
|
|
|
/* Display our helpful message. */
|
|
|
|
printf(_("Use \"fg\" to return to nano.\n"));
|
2002-09-06 20:35:28 +00:00
|
|
|
fflush(stdout);
|
2000-09-01 13:32:47 +00:00
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Restore the old terminal settings. */
|
2002-09-06 20:35:28 +00:00
|
|
|
tcsetattr(0, TCSANOW, &oldterm);
|
2002-02-15 19:17:02 +00:00
|
|
|
|
2003-09-29 07:21:11 +00:00
|
|
|
/* Trap SIGHUP and SIGTERM so we can properly deal with them while
|
2004-05-18 01:20:36 +00:00
|
|
|
* suspended. */
|
2003-09-29 07:21:11 +00:00
|
|
|
act.sa_handler = handle_hupterm;
|
|
|
|
sigaction(SIGHUP, &act, NULL);
|
|
|
|
sigaction(SIGTERM, &act, NULL);
|
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Do what mutt does: send ourselves a SIGSTOP. */
|
2002-09-06 20:35:28 +00:00
|
|
|
kill(0, SIGSTOP);
|
|
|
|
}
|
2002-06-21 03:20:06 +00:00
|
|
|
|
2008-03-13 08:23:52 +00:00
|
|
|
/* the subnfunc version */
|
2010-11-12 06:22:12 +00:00
|
|
|
void do_suspend_void(void)
|
2008-03-13 08:23:52 +00:00
|
|
|
{
|
|
|
|
if (ISSET(SUSPEND))
|
|
|
|
do_suspend(0);
|
|
|
|
}
|
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Handler for SIGCONT (continue after suspend). */
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE do_continue(int signal)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2006-06-09 18:24:37 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
|
|
|
/* Turn mouse support back on if it was on before. */
|
|
|
|
if (ISSET(USE_MOUSE))
|
|
|
|
enable_mouse_support();
|
|
|
|
#endif
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-08-14 20:08:49 +00:00
|
|
|
/* Perhaps the user resized the window while we slept. Handle it,
|
2006-06-09 16:04:19 +00:00
|
|
|
* and restore the terminal to its previous state and update the
|
|
|
|
* screen in the process. */
|
2002-09-06 20:35:28 +00:00
|
|
|
handle_sigwinch(0);
|
2004-04-07 00:44:35 +00:00
|
|
|
#else
|
2006-06-09 16:04:19 +00:00
|
|
|
/* Restore the terminal to its previous state. */
|
|
|
|
terminal_init();
|
|
|
|
|
2006-06-09 16:57:41 +00:00
|
|
|
/* Turn the cursor back on for sure. */
|
|
|
|
curs_set(1);
|
|
|
|
|
|
|
|
/* Redraw the contents of the windows that need it. */
|
|
|
|
blank_statusbar();
|
2006-07-05 06:38:47 +00:00
|
|
|
wnoutrefresh(bottomwin);
|
2006-06-09 16:04:19 +00:00
|
|
|
total_refresh();
|
2002-09-06 20:35:28 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Handler for SIGWINCH (window size change). */
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE handle_sigwinch(int signal)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
|
|
|
const char *tty = ttyname(0);
|
2005-03-08 16:41:53 +00:00
|
|
|
int fd, result = 0;
|
2002-09-06 20:35:28 +00:00
|
|
|
struct winsize win;
|
|
|
|
|
2002-12-22 16:30:00 +00:00
|
|
|
if (tty == NULL)
|
2002-09-06 20:35:28 +00:00
|
|
|
return;
|
|
|
|
fd = open(tty, O_RDWR);
|
|
|
|
if (fd == -1)
|
|
|
|
return;
|
|
|
|
result = ioctl(fd, TIOCGWINSZ, &win);
|
|
|
|
close(fd);
|
|
|
|
if (result == -1)
|
|
|
|
return;
|
|
|
|
|
2006-03-20 04:46:48 +00:00
|
|
|
/* We could check whether the COLS or LINES changed, and return
|
|
|
|
* otherwise. However, COLS and LINES are curses global variables,
|
|
|
|
* and in some cases curses has already updated them. But not in
|
|
|
|
* all cases. Argh. */
|
2014-03-26 10:45:07 +00:00
|
|
|
#ifdef REDEFINING_MACROS_OK
|
2002-09-06 20:35:28 +00:00
|
|
|
COLS = win.ws_col;
|
|
|
|
LINES = win.ws_row;
|
2010-03-07 19:35:46 +00:00
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2004-11-03 22:03:41 +00:00
|
|
|
/* If we've partitioned the filestruct, unpartition it now. */
|
|
|
|
if (filepart != NULL)
|
2004-11-22 00:16:23 +00:00
|
|
|
unpartition_filestruct(&filepart);
|
2004-11-03 22:03:41 +00:00
|
|
|
|
2007-12-18 15:55:48 +00:00
|
|
|
#ifdef USE_SLANG
|
|
|
|
/* Slang curses emulation brain damage, part 1: If we just do what
|
|
|
|
* curses does here, it'll only work properly if the resize made the
|
|
|
|
* window smaller. Do what mutt does: Leave and immediately reenter
|
|
|
|
* Slang screen management mode. */
|
|
|
|
SLsmg_reset_smg();
|
|
|
|
SLsmg_init_smg();
|
|
|
|
#else
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Do the equivalent of what Minimum Profit does: Leave and
|
|
|
|
* immediately reenter curses mode. */
|
|
|
|
endwin();
|
2005-08-14 20:08:49 +00:00
|
|
|
doupdate();
|
2007-12-18 15:55:48 +00:00
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
|
2004-07-27 16:46:35 +00:00
|
|
|
/* Restore the terminal to its previous state. */
|
|
|
|
terminal_init();
|
|
|
|
|
2005-03-20 21:20:47 +00:00
|
|
|
/* Turn the cursor back on for sure. */
|
|
|
|
curs_set(1);
|
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Do the equivalent of what both mutt and Minimum Profit do:
|
|
|
|
* Reinitialize all the windows based on the new screen
|
|
|
|
* dimensions. */
|
|
|
|
window_init();
|
|
|
|
|
2004-11-12 00:09:20 +00:00
|
|
|
/* Redraw the contents of the windows that need it. */
|
2002-09-06 20:35:28 +00:00
|
|
|
blank_statusbar();
|
2006-07-05 06:38:47 +00:00
|
|
|
wnoutrefresh(bottomwin);
|
2008-03-05 07:34:01 +00:00
|
|
|
currmenu = MMAIN;
|
2002-09-06 20:35:28 +00:00
|
|
|
total_refresh();
|
|
|
|
|
2006-05-10 15:15:06 +00:00
|
|
|
/* Jump back to either main() or the unjustify routine in
|
|
|
|
* do_justify(). */
|
|
|
|
siglongjmp(jump_buf, 1);
|
2002-09-06 20:35:28 +00:00
|
|
|
}
|
2004-02-16 20:32:40 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* If allow is TRUE, block any SIGWINCH signals that we get, so that we
|
|
|
|
* can deal with them later. If allow is FALSE, unblock any SIGWINCH
|
|
|
|
* signals that we have, so that we can deal with them now. */
|
2004-08-05 22:10:22 +00:00
|
|
|
void allow_pending_sigwinch(bool allow)
|
2004-02-16 20:32:40 +00:00
|
|
|
{
|
|
|
|
sigset_t winch;
|
|
|
|
sigemptyset(&winch);
|
|
|
|
sigaddset(&winch, SIGWINCH);
|
2005-07-01 22:58:47 +00:00
|
|
|
sigprocmask(allow ? SIG_UNBLOCK : SIG_BLOCK, &winch, NULL);
|
2004-02-16 20:32:40 +00:00
|
|
|
}
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2002-06-21 03:20:06 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Handle the global toggle specified in flag. */
|
2008-03-05 07:34:01 +00:00
|
|
|
void do_toggle(int flag)
|
2000-09-01 13:32:47 +00:00
|
|
|
{
|
2004-08-05 22:10:22 +00:00
|
|
|
bool enabled;
|
2014-02-28 11:24:12 +00:00
|
|
|
const char *desc;
|
2000-09-02 18:44:21 +00:00
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
TOGGLE(flag);
|
2000-09-12 23:02:49 +00:00
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
switch (flag) {
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2008-03-05 07:34:01 +00:00
|
|
|
case USE_MOUSE:
|
2004-11-27 16:54:00 +00:00
|
|
|
mouse_init();
|
|
|
|
break;
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2008-03-05 07:34:01 +00:00
|
|
|
case MORE_SPACE:
|
|
|
|
case NO_HELP:
|
2004-11-27 16:54:00 +00:00
|
|
|
window_init();
|
2005-01-17 05:06:55 +00:00
|
|
|
total_refresh();
|
2004-11-27 16:54:00 +00:00
|
|
|
break;
|
2008-03-05 07:34:01 +00:00
|
|
|
case SUSPEND:
|
2005-01-17 05:06:55 +00:00
|
|
|
signal_init();
|
2004-11-27 16:54:00 +00:00
|
|
|
break;
|
2004-05-29 16:25:30 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
2008-03-05 07:34:01 +00:00
|
|
|
case WHITESPACE_DISPLAY:
|
2004-12-05 04:18:26 +00:00
|
|
|
titlebar(NULL);
|
2004-11-27 16:54:00 +00:00
|
|
|
edit_refresh();
|
|
|
|
break;
|
2005-01-17 05:06:55 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_COLOR
|
2008-03-05 07:34:01 +00:00
|
|
|
case NO_COLOR_SYNTAX:
|
2005-01-17 05:06:55 +00:00
|
|
|
edit_refresh();
|
|
|
|
break;
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2009-08-17 07:52:10 +00:00
|
|
|
case SOFTWRAP:
|
|
|
|
total_refresh();
|
|
|
|
break;
|
2000-09-01 13:32:47 +00:00
|
|
|
}
|
2000-09-12 23:02:49 +00:00
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
enabled = ISSET(flag);
|
2005-06-09 04:00:03 +00:00
|
|
|
|
2014-02-22 10:56:52 +00:00
|
|
|
if (flag == NO_HELP
|
2005-06-26 20:05:01 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2008-03-05 07:34:01 +00:00
|
|
|
|| flag == NO_WRAP
|
2005-06-26 20:05:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_COLOR
|
2008-03-05 07:34:01 +00:00
|
|
|
|| flag == NO_COLOR_SYNTAX
|
2005-06-26 20:05:01 +00:00
|
|
|
#endif
|
|
|
|
)
|
2002-07-19 01:08:59 +00:00
|
|
|
enabled = !enabled;
|
2005-06-09 04:00:03 +00:00
|
|
|
|
2014-02-22 10:56:52 +00:00
|
|
|
desc = (char *) _(flagtostr(flag));
|
2008-03-05 07:34:01 +00:00
|
|
|
statusbar("%s %s", desc, enabled ? _("enabled") :
|
2005-06-09 04:00:03 +00:00
|
|
|
_("disabled"));
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2011-02-07 14:45:56 +00:00
|
|
|
|
|
|
|
/* Bleh */
|
|
|
|
void do_toggle_void(void)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2005-11-15 03:17:35 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Disable extended input and output processing in our terminal
|
|
|
|
* settings. */
|
2005-06-09 04:02:57 +00:00
|
|
|
void disable_extended_io(void)
|
2004-09-22 22:45:08 +00:00
|
|
|
{
|
|
|
|
struct termios term;
|
|
|
|
|
|
|
|
tcgetattr(0, &term);
|
|
|
|
term.c_lflag &= ~IEXTEN;
|
2005-06-09 04:02:57 +00:00
|
|
|
term.c_oflag &= ~OPOST;
|
2004-09-22 22:45:08 +00:00
|
|
|
tcsetattr(0, TCSANOW, &term);
|
|
|
|
}
|
|
|
|
|
2007-12-18 15:55:48 +00:00
|
|
|
/* Disable interpretation of the special control keys in our terminal
|
|
|
|
* settings. */
|
|
|
|
void disable_signals(void)
|
|
|
|
{
|
|
|
|
struct termios term;
|
|
|
|
|
|
|
|
tcgetattr(0, &term);
|
|
|
|
term.c_lflag &= ~ISIG;
|
|
|
|
tcsetattr(0, TCSANOW, &term);
|
|
|
|
}
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Enable interpretation of the special control keys in our terminal
|
|
|
|
* settings. */
|
2004-05-18 01:20:36 +00:00
|
|
|
void enable_signals(void)
|
|
|
|
{
|
|
|
|
struct termios term;
|
|
|
|
|
|
|
|
tcgetattr(0, &term);
|
|
|
|
term.c_lflag |= ISIG;
|
|
|
|
tcsetattr(0, TCSANOW, &term);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Disable interpretation of the flow control characters in our terminal
|
|
|
|
* settings. */
|
2004-05-18 01:20:36 +00:00
|
|
|
void disable_flow_control(void)
|
|
|
|
{
|
|
|
|
struct termios term;
|
|
|
|
|
|
|
|
tcgetattr(0, &term);
|
2005-06-23 22:28:56 +00:00
|
|
|
term.c_iflag &= ~IXON;
|
2004-05-18 01:20:36 +00:00
|
|
|
tcsetattr(0, TCSANOW, &term);
|
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Enable interpretation of the flow control characters in our terminal
|
|
|
|
* settings. */
|
2004-05-18 01:20:36 +00:00
|
|
|
void enable_flow_control(void)
|
|
|
|
{
|
|
|
|
struct termios term;
|
|
|
|
|
|
|
|
tcgetattr(0, &term);
|
2005-06-23 22:28:56 +00:00
|
|
|
term.c_iflag |= IXON;
|
2004-05-18 01:20:36 +00:00
|
|
|
tcsetattr(0, TCSANOW, &term);
|
|
|
|
}
|
|
|
|
|
2007-12-18 02:03:00 +00:00
|
|
|
/* Set up the terminal state. Put the terminal in raw mode (read one
|
|
|
|
* character at a time, disable the special control keys, and disable
|
|
|
|
* the flow control characters), disable translation of carriage return
|
|
|
|
* (^M) into newline (^J) so that we can tell the difference between the
|
|
|
|
* Enter key and Ctrl-J, and disable echoing of characters as they're
|
|
|
|
* typed. Finally, disable extended input and output processing, and,
|
|
|
|
* if we're not in preserve mode, reenable interpretation of the flow
|
|
|
|
* control characters. */
|
2004-07-27 16:46:35 +00:00
|
|
|
void terminal_init(void)
|
|
|
|
{
|
2007-12-18 15:55:48 +00:00
|
|
|
#ifdef USE_SLANG
|
|
|
|
/* Slang curses emulation brain damage, part 2: Slang doesn't
|
|
|
|
* implement raw(), nonl(), or noecho() properly, so there's no way
|
|
|
|
* to properly reinitialize the terminal using them. We have to
|
2007-12-18 16:51:48 +00:00
|
|
|
* disable the special control keys and interpretation of the flow
|
|
|
|
* control characters using termios, save the terminal state after
|
|
|
|
* the first call, and restore it on subsequent calls. */
|
2007-12-18 15:55:48 +00:00
|
|
|
static struct termios newterm;
|
|
|
|
static bool newterm_set = FALSE;
|
|
|
|
|
|
|
|
if (!newterm_set) {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
raw();
|
|
|
|
nonl();
|
|
|
|
noecho();
|
|
|
|
disable_extended_io();
|
|
|
|
if (ISSET(PRESERVE))
|
|
|
|
enable_flow_control();
|
|
|
|
|
|
|
|
disable_signals();
|
2008-09-06 06:52:47 +00:00
|
|
|
#ifdef USE_SLANG
|
2007-12-18 16:47:06 +00:00
|
|
|
if (!ISSET(PRESERVE))
|
|
|
|
disable_flow_control();
|
2007-12-18 15:55:48 +00:00
|
|
|
|
|
|
|
tcgetattr(0, &newterm);
|
|
|
|
newterm_set = TRUE;
|
|
|
|
} else
|
|
|
|
tcsetattr(0, TCSANOW, &newterm);
|
|
|
|
#endif
|
2004-07-27 16:46:35 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Read in a character, interpret it as a shortcut or toggle if
|
|
|
|
* necessary, and return it. Set meta_key to TRUE if the character is a
|
|
|
|
* meta sequence, set func_key to TRUE if the character is a function
|
|
|
|
* key, set s_or_t to TRUE if the character is a shortcut or toggle
|
|
|
|
* key, set ran_func to TRUE if we ran a function associated with a
|
|
|
|
* shortcut key, and set finished to TRUE if we're done after running
|
|
|
|
* or trying to run a function associated with a shortcut key. If
|
|
|
|
* allow_funcs is FALSE, don't actually run any functions associated
|
|
|
|
* with shortcut keys. */
|
2004-12-04 17:41:52 +00:00
|
|
|
int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
|
2005-01-11 23:05:05 +00:00
|
|
|
*ran_func, bool *finished, bool allow_funcs)
|
2004-12-04 17:41:52 +00:00
|
|
|
{
|
|
|
|
int input;
|
|
|
|
/* The character we read in. */
|
|
|
|
static int *kbinput = NULL;
|
|
|
|
/* The input buffer. */
|
|
|
|
static size_t kbinput_len = 0;
|
|
|
|
/* The length of the input buffer. */
|
2006-05-21 20:03:43 +00:00
|
|
|
bool cut_copy = FALSE;
|
|
|
|
/* Are we cutting or copying text? */
|
2008-03-05 07:34:01 +00:00
|
|
|
const sc *s;
|
2004-12-04 17:41:52 +00:00
|
|
|
bool have_shortcut;
|
|
|
|
|
|
|
|
*s_or_t = FALSE;
|
2005-01-11 23:05:05 +00:00
|
|
|
*ran_func = FALSE;
|
2005-01-01 07:28:15 +00:00
|
|
|
*finished = FALSE;
|
2004-12-04 17:41:52 +00:00
|
|
|
|
|
|
|
/* Read in a character. */
|
|
|
|
input = get_kbinput(edit, meta_key, func_key);
|
|
|
|
|
|
|
|
#ifndef DISABLE_MOUSE
|
2006-04-28 19:27:41 +00:00
|
|
|
if (allow_funcs) {
|
2006-05-10 12:48:47 +00:00
|
|
|
/* If we got a mouse click and it was on a shortcut, read in the
|
|
|
|
* shortcut character. */
|
2006-07-19 13:34:55 +00:00
|
|
|
if (*func_key && input == KEY_MOUSE) {
|
2007-05-20 23:41:56 +00:00
|
|
|
if (do_mouse() == 1)
|
2006-06-02 03:09:27 +00:00
|
|
|
input = get_kbinput(edit, meta_key, func_key);
|
|
|
|
else {
|
|
|
|
*meta_key = FALSE;
|
|
|
|
*func_key = FALSE;
|
|
|
|
input = ERR;
|
|
|
|
}
|
|
|
|
}
|
2006-05-10 12:48:47 +00:00
|
|
|
}
|
2004-12-04 17:41:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check for a shortcut in the main list. */
|
2008-03-05 07:34:01 +00:00
|
|
|
s = get_shortcut(MMAIN, &input, meta_key, func_key);
|
2004-12-04 17:41:52 +00:00
|
|
|
|
|
|
|
/* If we got a shortcut from the main list, or a "universal"
|
|
|
|
* edit window shortcut, set have_shortcut to TRUE. */
|
2008-03-13 08:23:52 +00:00
|
|
|
have_shortcut = (s != NULL);
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2006-05-25 21:39:25 +00:00
|
|
|
/* If we got a non-high-bit control key, a meta key sequence, or a
|
|
|
|
* function key, and it's not a shortcut or toggle, throw it out. */
|
2008-03-05 07:34:01 +00:00
|
|
|
if (!have_shortcut) {
|
2006-07-19 13:34:55 +00:00
|
|
|
if (is_ascii_cntrl_char(input) || *meta_key || *func_key) {
|
2006-05-24 17:36:00 +00:00
|
|
|
statusbar(_("Unknown Command"));
|
2006-06-03 19:36:02 +00:00
|
|
|
beep();
|
2006-06-01 01:15:06 +00:00
|
|
|
*meta_key = FALSE;
|
|
|
|
*func_key = FALSE;
|
2006-05-24 19:48:03 +00:00
|
|
|
input = ERR;
|
2006-05-24 17:36:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
if (allow_funcs) {
|
2005-03-17 03:52:08 +00:00
|
|
|
/* If we got a character, and it isn't a shortcut or toggle,
|
|
|
|
* it's a normal text character. Display the warning if we're
|
|
|
|
* in view mode, or add the character to the input buffer if
|
|
|
|
* we're not. */
|
2008-03-05 07:34:01 +00:00
|
|
|
if (input != ERR && !have_shortcut) {
|
2004-12-04 17:41:52 +00:00
|
|
|
if (ISSET(VIEW_MODE))
|
|
|
|
print_view_warning();
|
|
|
|
else {
|
|
|
|
kbinput_len++;
|
|
|
|
kbinput = (int *)nrealloc(kbinput, kbinput_len *
|
|
|
|
sizeof(int));
|
|
|
|
kbinput[kbinput_len - 1] = input;
|
2009-01-25 07:25:17 +00:00
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we got a shortcut or toggle, or if there aren't any other
|
|
|
|
* characters waiting after the one we read in, we need to
|
2006-05-22 02:08:49 +00:00
|
|
|
* output all the characters in the input buffer if it isn't
|
2004-12-04 17:41:52 +00:00
|
|
|
* empty. Note that it should be empty if we're in view
|
|
|
|
* mode. */
|
2008-03-05 07:34:01 +00:00
|
|
|
if (have_shortcut || get_key_buffer_len() == 0) {
|
2006-05-22 15:45:24 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2006-05-24 18:36:38 +00:00
|
|
|
/* If we got a shortcut or toggle, and it's not the shortcut
|
2014-03-24 21:48:23 +00:00
|
|
|
* for verbatim input, turn off prepending of wrapped text. */
|
2008-03-05 07:34:01 +00:00
|
|
|
if (have_shortcut && (!have_shortcut || s == NULL || s->scfunc !=
|
2011-02-07 14:45:56 +00:00
|
|
|
do_verbatim_input))
|
2006-05-22 02:08:49 +00:00
|
|
|
wrap_reset();
|
2006-05-22 15:45:24 +00:00
|
|
|
#endif
|
2006-05-22 02:08:49 +00:00
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
if (kbinput != NULL) {
|
|
|
|
/* Display all the characters in the input buffer at
|
2005-03-17 03:52:08 +00:00
|
|
|
* once, filtering out control characters. */
|
2005-01-12 03:25:57 +00:00
|
|
|
char *output = charalloc(kbinput_len + 1);
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < kbinput_len; i++)
|
|
|
|
output[i] = (char)kbinput[i];
|
|
|
|
output[i] = '\0';
|
|
|
|
|
2005-03-17 03:52:08 +00:00
|
|
|
do_output(output, kbinput_len, FALSE);
|
2005-01-12 03:25:57 +00:00
|
|
|
|
|
|
|
free(output);
|
2004-12-04 17:41:52 +00:00
|
|
|
|
|
|
|
/* Empty the input buffer. */
|
|
|
|
kbinput_len = 0;
|
|
|
|
free(kbinput);
|
|
|
|
kbinput = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (have_shortcut) {
|
|
|
|
switch (input) {
|
2005-01-01 07:28:15 +00:00
|
|
|
/* Handle the normal edit window shortcuts, setting
|
2005-01-11 23:05:05 +00:00
|
|
|
* ran_func to TRUE if we try to run their associated
|
|
|
|
* functions and setting finished to TRUE to indicate
|
2005-12-08 07:09:08 +00:00
|
|
|
* that we're done after running or trying to run their
|
|
|
|
* associated functions. */
|
2004-12-04 17:41:52 +00:00
|
|
|
default:
|
2006-05-21 20:03:43 +00:00
|
|
|
/* If the function associated with this shortcut is
|
|
|
|
* cutting or copying text, indicate this. */
|
2011-02-07 14:45:56 +00:00
|
|
|
if (s->scfunc == do_cut_text_void
|
2006-04-25 02:23:28 +00:00
|
|
|
#ifndef NANO_TINY
|
2011-02-07 14:45:56 +00:00
|
|
|
|| s->scfunc == do_copy_text || s->scfunc ==
|
|
|
|
do_cut_till_end
|
2006-04-25 02:23:28 +00:00
|
|
|
#endif
|
|
|
|
)
|
2006-05-21 20:03:43 +00:00
|
|
|
cut_copy = TRUE;
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2009-01-19 19:10:39 +00:00
|
|
|
if (s->scfunc != 0) {
|
2008-03-05 07:34:01 +00:00
|
|
|
const subnfunc *f = sctofunc((sc *) s);
|
2005-01-11 23:05:05 +00:00
|
|
|
*ran_func = TRUE;
|
2008-03-05 07:34:01 +00:00
|
|
|
if (ISSET(VIEW_MODE) && f && !f->viewok)
|
2004-12-20 01:13:55 +00:00
|
|
|
print_view_warning();
|
2009-02-16 23:06:09 +00:00
|
|
|
else {
|
2008-03-05 07:34:01 +00:00
|
|
|
#ifndef NANO_TINY
|
2011-02-07 14:45:56 +00:00
|
|
|
if (s->scfunc == do_toggle_void)
|
2008-03-05 07:34:01 +00:00
|
|
|
do_toggle(s->toggle);
|
2009-01-25 07:25:17 +00:00
|
|
|
else {
|
2009-02-16 23:06:09 +00:00
|
|
|
#else
|
|
|
|
{
|
2008-03-05 07:34:01 +00:00
|
|
|
#endif
|
2011-02-07 14:45:56 +00:00
|
|
|
s->scfunc();
|
2009-01-25 07:25:17 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2010-01-17 05:30:22 +00:00
|
|
|
if (f && !f->viewok && openfile->syntax != NULL
|
2009-02-16 21:04:00 +00:00
|
|
|
&& openfile->syntax->nmultis > 0) {
|
2009-02-16 23:06:09 +00:00
|
|
|
reset_multis(openfile->current, FALSE);
|
2009-02-06 03:41:02 +00:00
|
|
|
}
|
2009-11-22 21:35:56 +00:00
|
|
|
#endif
|
2009-02-06 03:41:02 +00:00
|
|
|
if (edit_refresh_needed) {
|
2009-02-16 23:06:09 +00:00
|
|
|
#ifdef DEBUG
|
2014-03-17 21:36:37 +00:00
|
|
|
fprintf(stderr, "running edit_refresh() as edit_refresh_needed is true\n");
|
2009-02-16 23:06:09 +00:00
|
|
|
#endif
|
2009-01-25 07:25:17 +00:00
|
|
|
edit_refresh();
|
2009-02-06 03:41:02 +00:00
|
|
|
edit_refresh_needed = FALSE;
|
2009-01-25 07:25:17 +00:00
|
|
|
}
|
2009-02-16 23:06:09 +00:00
|
|
|
|
2009-01-28 05:11:57 +00:00
|
|
|
}
|
2009-02-16 23:06:09 +00:00
|
|
|
}
|
2004-12-04 17:41:52 +00:00
|
|
|
}
|
2005-01-01 07:28:15 +00:00
|
|
|
*finished = TRUE;
|
2004-12-04 17:41:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-21 20:03:43 +00:00
|
|
|
/* If we aren't cutting or copying text, blow away the text in the
|
|
|
|
* cutbuffer. */
|
|
|
|
if (!cut_copy)
|
|
|
|
cutbuffer_reset();
|
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
void xon_complaint(void)
|
|
|
|
{
|
|
|
|
statusbar(_("XON ignored, mumble mumble"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void xoff_complaint(void)
|
|
|
|
{
|
|
|
|
statusbar(_("XOFF ignored, mumble mumble"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Handle a mouse click on the edit window or the shortcut list. */
|
2007-05-20 23:41:56 +00:00
|
|
|
int do_mouse(void)
|
2004-12-04 17:41:52 +00:00
|
|
|
{
|
|
|
|
int mouse_x, mouse_y;
|
2007-05-20 23:41:56 +00:00
|
|
|
int retval = get_mouseinput(&mouse_x, &mouse_y, TRUE);
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2007-06-28 16:00:50 +00:00
|
|
|
/* We can click on the edit window to move the cursor. */
|
|
|
|
if (retval == 0 && wmouse_trafo(edit, &mouse_y, &mouse_x, FALSE)) {
|
|
|
|
bool sameline;
|
|
|
|
/* Did they click on the line with the cursor? If they
|
|
|
|
* clicked on the cursor, we set the mark. */
|
2009-01-25 07:25:17 +00:00
|
|
|
filestruct *current_save = openfile->current;
|
2007-06-28 16:00:50 +00:00
|
|
|
size_t current_x_save = openfile->current_x;
|
|
|
|
size_t pww_save = openfile->placewewant;
|
|
|
|
|
|
|
|
sameline = (mouse_y == openfile->current_y);
|
|
|
|
|
2009-11-13 20:38:32 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "mouse_y = %d, current_y = %d\n", mouse_y, openfile->current_y);
|
|
|
|
#endif
|
|
|
|
|
2014-03-17 21:36:37 +00:00
|
|
|
if (ISSET(SOFTWRAP)) {
|
2009-11-13 20:38:32 +00:00
|
|
|
int i = 0;
|
|
|
|
for (openfile->current = openfile->edittop;
|
|
|
|
openfile->current->next && i < mouse_y;
|
|
|
|
openfile->current = openfile->current->next, i++) {
|
|
|
|
openfile->current_y = i;
|
|
|
|
i += strlenpt(openfile->current->data) / COLS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "do_mouse(): moving to current_y = %d, i %d\n", openfile->current_y, i);
|
|
|
|
fprintf(stderr, " openfile->current->data = \"%s\"\n", openfile->current->data);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (i > mouse_y) {
|
|
|
|
openfile->current = openfile->current->prev;
|
|
|
|
openfile->current_x = actual_x(openfile->current->data, mouse_x + (mouse_y - openfile->current_y) * COLS);
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "do_mouse(): i > mouse_y, mouse_x = %d, current_x to = %d\n", mouse_x, openfile->current_x);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
openfile->current_x = actual_x(openfile->current->data, mouse_x);
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "do_mouse(): i <= mouse_y, mouse_x = %d, setting current_x to = %d\n", mouse_x, openfile->current_x);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* Move to where the click occurred. */
|
|
|
|
for (; openfile->current_y < mouse_y && openfile->current !=
|
|
|
|
openfile->filebot; openfile->current_y++)
|
|
|
|
openfile->current = openfile->current->next;
|
|
|
|
for (; openfile->current_y > mouse_y && openfile->current !=
|
|
|
|
openfile->fileage; openfile->current_y--)
|
|
|
|
openfile->current = openfile->current->prev;
|
|
|
|
|
|
|
|
openfile->current_x = actual_x(openfile->current->data,
|
2005-07-25 20:36:27 +00:00
|
|
|
get_page_start(xplustabs()) + mouse_x);
|
2009-11-13 20:38:32 +00:00
|
|
|
|
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
}
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-06-28 16:00:50 +00:00
|
|
|
/* Clicking where the cursor is toggles the mark, as does
|
|
|
|
* clicking beyond the line length with the cursor at the end of
|
|
|
|
* the line. */
|
|
|
|
if (sameline && openfile->current_x == current_x_save)
|
|
|
|
do_mark();
|
2004-12-04 17:41:52 +00:00
|
|
|
#endif
|
|
|
|
|
2007-06-28 16:00:50 +00:00
|
|
|
edit_redraw(current_save, pww_save);
|
2004-12-04 17:41:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
#endif /* !DISABLE_MOUSE */
|
|
|
|
|
2009-02-03 05:05:58 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2009-02-04 19:50:23 +00:00
|
|
|
void alloc_multidata_if_needed(filestruct *fileptr)
|
|
|
|
{
|
|
|
|
if (!fileptr->multidata)
|
2009-11-29 06:13:22 +00:00
|
|
|
fileptr->multidata = (short *) nmalloc(openfile->syntax->nmultis * sizeof(short));
|
2009-02-04 19:50:23 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Precalculate the multi-line start and end regex info so we can
|
|
|
|
* speed up rendering (with any hope at all...). */
|
2009-02-03 05:05:58 +00:00
|
|
|
void precalc_multicolorinfo(void)
|
|
|
|
{
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "entering precalc_multicolorinfo()\n");
|
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
if (openfile->colorstrings != NULL && !ISSET(NO_COLOR_SYNTAX)) {
|
|
|
|
const colortype *tmpcolor = openfile->colorstrings;
|
|
|
|
regmatch_t startmatch, endmatch;
|
|
|
|
filestruct *fileptr, *endptr;
|
|
|
|
time_t last_check = time(NULL), cur_check = 0;
|
|
|
|
|
|
|
|
/* Let us get keypresses to see if the user is trying to
|
2014-03-24 21:48:23 +00:00
|
|
|
* start editing. We may want to throw up a statusbar
|
|
|
|
* message before starting this later if it takes
|
|
|
|
* too long to do this routine. For now silently
|
|
|
|
* abort if they hit a key. */
|
2014-03-17 21:36:37 +00:00
|
|
|
nodelay(edit, FALSE);
|
2009-02-03 05:05:58 +00:00
|
|
|
|
|
|
|
for (; tmpcolor != NULL; tmpcolor = tmpcolor->next) {
|
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* If it's not a multi-line regex, amscray. */
|
2009-02-03 05:05:58 +00:00
|
|
|
if (tmpcolor->end == NULL)
|
|
|
|
continue;
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "working on color id %d\n", tmpcolor->id);
|
|
|
|
#endif
|
|
|
|
|
2009-02-03 05:05:58 +00:00
|
|
|
for (fileptr = openfile->fileage; fileptr != NULL; fileptr = fileptr->next) {
|
|
|
|
int startx = 0;
|
2009-02-15 02:40:16 +00:00
|
|
|
int nostart = 0;
|
|
|
|
#ifdef DEBUG
|
2014-03-24 21:48:23 +00:00
|
|
|
fprintf(stderr, "working on lineno %lu\n", (unsigned long) fileptr->lineno);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
|
2009-02-04 19:50:23 +00:00
|
|
|
alloc_multidata_if_needed(fileptr);
|
2009-02-03 05:05:58 +00:00
|
|
|
|
|
|
|
if ((cur_check = time(NULL)) - last_check > 1) {
|
|
|
|
last_check = cur_check;
|
|
|
|
if (wgetch(edit) != ERR)
|
2014-03-17 21:36:37 +00:00
|
|
|
goto precalc_cleanup;
|
2009-02-03 05:05:58 +00:00
|
|
|
}
|
|
|
|
|
2009-02-15 02:40:16 +00:00
|
|
|
while ((nostart = regexec(tmpcolor->start, &fileptr->data[startx], 1, &startmatch, 0)) == 0) {
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Look for end, and start marking how many lines are
|
|
|
|
* encompassed which should speed up rendering later. */
|
2009-02-15 02:40:16 +00:00
|
|
|
startx += startmatch.rm_eo;
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "match found at pos %d...", startx);
|
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Look on this line first for end. */
|
2009-02-03 05:05:58 +00:00
|
|
|
if (regexec(tmpcolor->end, &fileptr->data[startx], 1, &endmatch, 0) == 0) {
|
|
|
|
startx += endmatch.rm_eo;
|
|
|
|
fileptr->multidata[tmpcolor->id] |= CSTARTENDHERE;
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
2014-03-24 21:48:23 +00:00
|
|
|
fprintf(stderr, "end found on this line\n");
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Nice, we didn't find the end regex on this line. Let's start looking for it. */
|
2009-02-03 05:05:58 +00:00
|
|
|
for (endptr = fileptr->next; endptr != NULL; endptr = endptr->next) {
|
|
|
|
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
2014-03-24 21:48:23 +00:00
|
|
|
fprintf(stderr, "advancing to line %lu to find end...\n", (unsigned long) endptr->lineno);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2014-03-24 21:48:23 +00:00
|
|
|
/* Check for keyboard input, again. */
|
2009-02-03 05:05:58 +00:00
|
|
|
if ((cur_check = time(NULL)) - last_check > 1) {
|
|
|
|
last_check = cur_check;
|
|
|
|
if (wgetch(edit) != ERR)
|
2014-03-17 21:36:37 +00:00
|
|
|
goto precalc_cleanup;
|
2009-02-03 05:05:58 +00:00
|
|
|
}
|
2009-02-15 02:40:16 +00:00
|
|
|
if (regexec(tmpcolor->end, endptr->data, 1, &endmatch, 0) == 0)
|
2009-02-03 05:05:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-02-15 02:40:16 +00:00
|
|
|
if (endptr == NULL) {
|
|
|
|
#ifdef DEBUG
|
2014-03-17 21:36:37 +00:00
|
|
|
fprintf(stderr, "no end found, breaking out\n");
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
break;
|
2009-02-15 02:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "end found\n");
|
|
|
|
#endif
|
2014-03-24 21:48:23 +00:00
|
|
|
/* We found it, we found it, la la la la la. Mark all
|
|
|
|
* the lines in between and the end properly. */
|
2009-02-03 05:05:58 +00:00
|
|
|
fileptr->multidata[tmpcolor->id] |= CENDAFTER;
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
2009-11-11 06:00:33 +00:00
|
|
|
fprintf(stderr, "marking line %lu as CENDAFTER\n", (unsigned long) fileptr->lineno);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
for (fileptr = fileptr->next; fileptr != endptr; fileptr = fileptr->next) {
|
2009-02-04 19:50:23 +00:00
|
|
|
alloc_multidata_if_needed(fileptr);
|
2009-02-03 05:05:58 +00:00
|
|
|
fileptr->multidata[tmpcolor->id] = CWHOLELINE;
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
2009-11-11 06:00:33 +00:00
|
|
|
fprintf(stderr, "marking intermediary line %lu as CWHOLELINE\n", (unsigned long) fileptr->lineno);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
}
|
2009-02-04 19:50:23 +00:00
|
|
|
alloc_multidata_if_needed(endptr);
|
2009-02-15 02:40:16 +00:00
|
|
|
#ifdef DEBUG
|
2009-11-11 06:00:33 +00:00
|
|
|
fprintf(stderr, "marking line %lu as BEGINBEFORE\n", (unsigned long) fileptr->lineno);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
2009-02-03 05:05:58 +00:00
|
|
|
endptr->multidata[tmpcolor->id] |= CBEGINBEFORE;
|
2009-02-15 02:40:16 +00:00
|
|
|
/* We should be able to skip all the way to the line of the match.
|
2014-03-24 21:48:23 +00:00
|
|
|
* This may introduce more bugs but it's the Right Thing to do. */
|
2009-02-15 02:40:16 +00:00
|
|
|
fileptr = endptr;
|
|
|
|
startx = endmatch.rm_eo;
|
|
|
|
#ifdef DEBUG
|
2009-11-11 06:00:33 +00:00
|
|
|
fprintf(stderr, "jumping to line %lu pos %d to continue\n", (unsigned long) endptr->lineno, startx);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (nostart && startx == 0) {
|
|
|
|
#ifdef DEBUG
|
2009-11-11 06:00:33 +00:00
|
|
|
fprintf(stderr, "no start found on line %lu, continuing\n", (unsigned long) fileptr->lineno);
|
2009-02-15 02:40:16 +00:00
|
|
|
#endif
|
|
|
|
fileptr->multidata[tmpcolor->id] = CNONE;
|
|
|
|
continue;
|
2009-02-03 05:05:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
precalc_cleanup:
|
|
|
|
nodelay(edit, FALSE);
|
|
|
|
}
|
|
|
|
#endif /* ENABLE_COLOR */
|
|
|
|
|
2006-05-22 02:08:49 +00:00
|
|
|
/* The user typed output_len multibyte characters. Add them to the edit
|
2006-05-27 17:39:19 +00:00
|
|
|
* buffer, filtering out all ASCII control characters if allow_cntrls is
|
2005-03-17 03:52:08 +00:00
|
|
|
* TRUE. */
|
|
|
|
void do_output(char *output, size_t output_len, bool allow_cntrls)
|
2004-12-04 17:41:52 +00:00
|
|
|
{
|
2009-12-12 22:21:20 +00:00
|
|
|
size_t current_len, orig_lenpt, i = 0;
|
2005-01-12 03:25:57 +00:00
|
|
|
char *char_buf = charalloc(mb_cur_max());
|
|
|
|
int char_buf_len;
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(openfile->current != NULL && openfile->current->data != NULL);
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
current_len = strlen(openfile->current->data);
|
2009-12-12 22:21:20 +00:00
|
|
|
if (ISSET(SOFTWRAP))
|
|
|
|
orig_lenpt = strlenpt(openfile->current->data);
|
2005-05-26 05:17:13 +00:00
|
|
|
|
2005-01-12 03:25:57 +00:00
|
|
|
while (i < output_len) {
|
2006-11-27 05:09:16 +00:00
|
|
|
/* If allow_cntrls is TRUE, convert nulls and newlines
|
|
|
|
* properly. */
|
2006-11-27 04:56:16 +00:00
|
|
|
if (allow_cntrls) {
|
|
|
|
/* Null to newline, if needed. */
|
|
|
|
if (output[i] == '\0')
|
2005-03-17 03:52:08 +00:00
|
|
|
output[i] = '\n';
|
2006-11-27 04:56:16 +00:00
|
|
|
/* Newline to Enter, if needed. */
|
|
|
|
else if (output[i] == '\n') {
|
2009-04-25 03:31:30 +00:00
|
|
|
do_enter(FALSE);
|
2005-03-17 03:52:08 +00:00
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
}
|
2004-12-08 23:24:31 +00:00
|
|
|
}
|
|
|
|
|
2005-07-26 06:13:45 +00:00
|
|
|
/* Interpret the next multibyte character. */
|
|
|
|
char_buf_len = parse_mbchar(output + i, char_buf, NULL);
|
2005-01-12 03:25:57 +00:00
|
|
|
|
|
|
|
i += char_buf_len;
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2006-05-27 17:39:19 +00:00
|
|
|
/* If allow_cntrls is FALSE, filter out an ASCII control
|
|
|
|
* character. */
|
|
|
|
if (!allow_cntrls && is_ascii_cntrl_char(*(output + i -
|
|
|
|
char_buf_len)))
|
2005-03-17 03:52:08 +00:00
|
|
|
continue;
|
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, when a character is
|
2006-11-27 02:41:59 +00:00
|
|
|
* added to the magicline, it means we need a new magicline. */
|
2005-11-05 17:35:44 +00:00
|
|
|
if (!ISSET(NO_NEWLINES) && openfile->filebot ==
|
|
|
|
openfile->current)
|
2004-12-04 17:41:52 +00:00
|
|
|
new_magicline();
|
|
|
|
|
|
|
|
/* More dangerousness fun =) */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current->data = charealloc(openfile->current->data,
|
2005-06-28 17:51:28 +00:00
|
|
|
current_len + (char_buf_len * 2));
|
2004-12-31 04:10:28 +00:00
|
|
|
|
2005-07-08 20:09:16 +00:00
|
|
|
assert(openfile->current_x <= current_len);
|
2004-12-31 04:10:28 +00:00
|
|
|
|
2005-11-05 04:59:00 +00:00
|
|
|
charmove(openfile->current->data + openfile->current_x +
|
|
|
|
char_buf_len, openfile->current->data +
|
|
|
|
openfile->current_x, current_len - openfile->current_x +
|
|
|
|
char_buf_len);
|
|
|
|
strncpy(openfile->current->data + openfile->current_x, char_buf,
|
2005-07-08 20:09:16 +00:00
|
|
|
char_buf_len);
|
2005-01-12 03:25:57 +00:00
|
|
|
current_len += char_buf_len;
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->totsize++;
|
2004-12-04 17:41:52 +00:00
|
|
|
set_modified();
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2008-08-03 04:48:05 +00:00
|
|
|
update_undo(ADD);
|
2008-07-10 20:13:04 +00:00
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
/* Note that current_x has not yet been incremented. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->mark_set && openfile->current ==
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->mark_begin && openfile->current_x <
|
|
|
|
openfile->mark_begin_x)
|
|
|
|
openfile->mark_begin_x += char_buf_len;
|
2004-12-04 17:41:52 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-16 23:36:10 +00:00
|
|
|
openfile->current_x += char_buf_len;
|
2004-12-04 17:41:52 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_WRAPPING
|
2005-04-26 17:21:47 +00:00
|
|
|
/* If we're wrapping text, we need to call edit_refresh(). */
|
2009-12-12 22:21:20 +00:00
|
|
|
if (!ISSET(NO_WRAP))
|
|
|
|
if (do_wrap(openfile->current, FALSE))
|
|
|
|
edit_refresh_needed = TRUE;
|
2004-12-04 17:41:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_COLOR
|
2005-07-13 20:18:46 +00:00
|
|
|
/* If color syntaxes are available and turned on, we need to
|
|
|
|
* call edit_refresh(). */
|
|
|
|
if (openfile->colorstrings != NULL && !ISSET(NO_COLOR_SYNTAX))
|
2009-12-12 22:21:20 +00:00
|
|
|
edit_refresh_needed = TRUE;
|
2004-12-04 17:41:52 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-12-30 19:20:10 +00:00
|
|
|
/* Well we might also need a full refresh if we've changed the
|
2014-03-24 21:48:23 +00:00
|
|
|
* line length to be a new multiple of COLS. */
|
2009-12-12 22:21:20 +00:00
|
|
|
if (ISSET(SOFTWRAP) && edit_refresh_needed == FALSE)
|
|
|
|
if (strlenpt(openfile->current->data) / COLS != orig_lenpt / COLS)
|
|
|
|
edit_refresh_needed = TRUE;
|
|
|
|
|
2005-01-12 03:25:57 +00:00
|
|
|
free(char_buf);
|
2004-12-12 19:04:56 +00:00
|
|
|
|
2005-07-16 23:36:10 +00:00
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
|
2009-01-26 07:55:01 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2009-02-16 21:04:00 +00:00
|
|
|
reset_multis(openfile->current, FALSE);
|
2009-01-26 07:55:01 +00:00
|
|
|
#endif
|
2009-12-12 22:21:20 +00:00
|
|
|
if (edit_refresh_needed == TRUE) {
|
2004-12-04 17:41:52 +00:00
|
|
|
edit_refresh();
|
2009-02-06 03:41:02 +00:00
|
|
|
edit_refresh_needed = FALSE;
|
|
|
|
} else
|
2005-07-08 20:09:16 +00:00
|
|
|
update_line(openfile->current, openfile->current_x);
|
2004-12-04 17:41:52 +00:00
|
|
|
}
|
|
|
|
|
2004-08-17 05:23:38 +00:00
|
|
|
int main(int argc, char **argv)
|
2000-06-06 05:53:49 +00:00
|
|
|
{
|
|
|
|
int optchr;
|
2005-06-28 06:25:34 +00:00
|
|
|
ssize_t startline = 1;
|
2004-09-05 21:40:31 +00:00
|
|
|
/* Line to try and start at. */
|
2005-05-16 18:38:16 +00:00
|
|
|
ssize_t startcol = 1;
|
|
|
|
/* Column to try and start at. */
|
2004-08-12 19:48:21 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2005-07-25 22:54:16 +00:00
|
|
|
bool fill_used = FALSE;
|
2004-09-05 21:40:31 +00:00
|
|
|
/* Was the fill option used? */
|
2004-08-12 19:48:21 +00:00
|
|
|
#endif
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2004-09-05 21:40:31 +00:00
|
|
|
bool old_multibuffer;
|
|
|
|
/* The old value of the multibuffer option, restored after we
|
|
|
|
* load all files on the command line. */
|
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-12-22 16:30:00 +00:00
|
|
|
const struct option long_options[] = {
|
2005-03-26 22:49:08 +00:00
|
|
|
{"help", 0, NULL, 'h'},
|
2006-04-12 15:27:40 +00:00
|
|
|
{"boldtext", 0, NULL, 'D'},
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-03-26 22:49:08 +00:00
|
|
|
{"multibuffer", 0, NULL, 'F'},
|
2002-07-19 01:08:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_NANORC
|
2005-03-26 22:49:08 +00:00
|
|
|
{"ignorercfiles", 0, NULL, 'I'},
|
2002-06-28 22:45:14 +00:00
|
|
|
#endif
|
2005-08-10 21:22:15 +00:00
|
|
|
{"rebindkeypad", 0, NULL, 'K'},
|
2005-11-05 17:35:44 +00:00
|
|
|
{"nonewlines", 0, NULL, 'L'},
|
2005-03-26 22:49:08 +00:00
|
|
|
{"morespace", 0, NULL, 'O'},
|
2002-06-28 22:45:14 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2005-03-26 22:49:08 +00:00
|
|
|
{"quotestr", 1, NULL, 'Q'},
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2005-06-17 22:53:41 +00:00
|
|
|
{"restricted", 0, NULL, 'R'},
|
2005-03-26 22:49:08 +00:00
|
|
|
{"tabsize", 1, NULL, 'T'},
|
|
|
|
{"version", 0, NULL, 'V'},
|
2002-06-28 22:45:14 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2005-03-26 22:49:08 +00:00
|
|
|
{"syntax", 1, NULL, 'Y'},
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2005-03-26 22:49:08 +00:00
|
|
|
{"const", 0, NULL, 'c'},
|
|
|
|
{"rebinddelete", 0, NULL, 'd'},
|
|
|
|
{"nofollow", 0, NULL, 'l'},
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2005-03-26 22:49:08 +00:00
|
|
|
{"mouse", 0, NULL, 'm'},
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2005-03-26 22:49:08 +00:00
|
|
|
{"operatingdir", 1, NULL, 'o'},
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
2005-03-26 22:49:08 +00:00
|
|
|
{"preserve", 0, NULL, 'p'},
|
2009-02-09 04:03:20 +00:00
|
|
|
{"quiet", 0, NULL, 'q'},
|
2002-06-28 22:45:14 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2005-03-26 22:49:08 +00:00
|
|
|
{"fill", 1, NULL, 'r'},
|
2002-06-28 22:45:14 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_SPELLER
|
2005-03-26 22:49:08 +00:00
|
|
|
{"speller", 1, NULL, 's'},
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
2005-03-26 22:49:08 +00:00
|
|
|
{"tempfile", 0, NULL, 't'},
|
|
|
|
{"view", 0, NULL, 'v'},
|
2002-10-17 02:19:31 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2005-03-26 22:49:08 +00:00
|
|
|
{"nowrap", 0, NULL, 'w'},
|
2002-10-17 02:19:31 +00:00
|
|
|
#endif
|
2005-03-26 22:49:08 +00:00
|
|
|
{"nohelp", 0, NULL, 'x'},
|
|
|
|
{"suspend", 0, NULL, 'z'},
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-03-26 22:49:08 +00:00
|
|
|
{"smarthome", 0, NULL, 'A'},
|
|
|
|
{"backup", 0, NULL, 'B'},
|
2005-06-15 23:20:56 +00:00
|
|
|
{"backupdir", 1, NULL, 'C'},
|
|
|
|
{"tabstospaces", 0, NULL, 'E'},
|
2013-01-01 03:24:39 +00:00
|
|
|
{"locking", 0, NULL, 'G'},
|
2005-06-17 17:37:46 +00:00
|
|
|
{"historylog", 0, NULL, 'H'},
|
2005-03-26 22:49:08 +00:00
|
|
|
{"noconvert", 0, NULL, 'N'},
|
2011-02-18 07:30:57 +00:00
|
|
|
{"poslog", 0, NULL, 'P'},
|
2005-03-26 22:49:08 +00:00
|
|
|
{"smooth", 0, NULL, 'S'},
|
2005-06-17 19:06:25 +00:00
|
|
|
{"quickblank", 0, NULL, 'U'},
|
2009-07-12 03:36:58 +00:00
|
|
|
{"undo", 0, NULL, 'u'},
|
2005-08-10 22:12:28 +00:00
|
|
|
{"wordbounds", 0, NULL, 'W'},
|
2005-03-26 22:49:08 +00:00
|
|
|
{"autoindent", 0, NULL, 'i'},
|
|
|
|
{"cut", 0, NULL, 'k'},
|
2009-08-17 07:52:10 +00:00
|
|
|
{"softwrap", 0, NULL, '$'},
|
2002-05-04 04:23:30 +00:00
|
|
|
#endif
|
2005-03-26 22:49:08 +00:00
|
|
|
{NULL, 0, NULL, 0}
|
2000-06-06 05:53:49 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2005-07-17 02:40:07 +00:00
|
|
|
#ifdef ENABLE_UTF8
|
2004-12-23 17:43:27 +00:00
|
|
|
{
|
2007-05-25 14:39:40 +00:00
|
|
|
/* If the locale set exists and uses UTF-8, we should use
|
|
|
|
* UTF-8. */
|
2004-12-23 17:43:27 +00:00
|
|
|
char *locale = setlocale(LC_ALL, "");
|
|
|
|
|
2007-05-25 14:39:40 +00:00
|
|
|
if (locale != NULL && (strcmp(nl_langinfo(CODESET),
|
|
|
|
"UTF-8") == 0)) {
|
2005-01-28 19:37:23 +00:00
|
|
|
#ifdef USE_SLANG
|
2006-07-19 19:40:54 +00:00
|
|
|
SLutf8_enable(1);
|
2005-01-28 19:37:23 +00:00
|
|
|
#endif
|
2006-04-12 15:27:40 +00:00
|
|
|
utf8_init();
|
2005-06-16 02:09:57 +00:00
|
|
|
}
|
2004-12-23 17:43:27 +00:00
|
|
|
}
|
|
|
|
#else
|
2000-06-06 05:53:49 +00:00
|
|
|
setlocale(LC_ALL, "");
|
2004-12-23 17:43:27 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-27 15:46:58 +00:00
|
|
|
#ifdef ENABLE_NLS
|
2000-06-06 05:53:49 +00:00
|
|
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
|
|
|
textdomain(PACKAGE);
|
|
|
|
#endif
|
|
|
|
|
2006-07-19 15:50:19 +00:00
|
|
|
#if !defined(ENABLE_NANORC) && defined(DISABLE_ROOTWRAPPING)
|
2006-07-18 18:16:30 +00:00
|
|
|
/* If we don't have rcfile support, --disable-wrapping-as-root is
|
|
|
|
* used, and we're root, turn wrapping off. */
|
2004-03-04 06:33:52 +00:00
|
|
|
if (geteuid() == NANO_ROOT_UID)
|
2002-10-25 16:08:53 +00:00
|
|
|
SET(NO_WRAP);
|
|
|
|
#endif
|
2001-04-18 04:28:54 +00:00
|
|
|
|
2004-08-07 22:00:02 +00:00
|
|
|
while ((optchr =
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2005-06-12 16:13:44 +00:00
|
|
|
getopt_long(argc, argv,
|
2013-01-01 03:24:39 +00:00
|
|
|
"h?ABC:DEFGHIKLNOPQ:RST:UVWY:abcdefgijklmo:pqr:s:tuvwxz$",
|
2005-06-12 16:13:44 +00:00
|
|
|
long_options, NULL)
|
2000-06-06 05:53:49 +00:00
|
|
|
#else
|
2005-06-12 16:13:44 +00:00
|
|
|
getopt(argc, argv,
|
2013-01-01 03:24:39 +00:00
|
|
|
"h?ABC:DEFGHIKLNOPQ:RST:UVWY:abcdefgijklmo:pqr:s:tuvwxz$")
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
) != -1) {
|
2000-06-06 05:53:49 +00:00
|
|
|
switch (optchr) {
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'a':
|
|
|
|
case 'b':
|
|
|
|
case 'e':
|
|
|
|
case 'f':
|
|
|
|
case 'g':
|
|
|
|
case 'j':
|
|
|
|
/* Pico compatibility flags. */
|
|
|
|
break;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'A':
|
|
|
|
SET(SMART_HOME);
|
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
SET(BACKUP_FILE);
|
|
|
|
break;
|
2005-06-15 23:20:56 +00:00
|
|
|
case 'C':
|
2004-08-07 22:00:02 +00:00
|
|
|
backup_dir = mallocstrcpy(backup_dir, optarg);
|
|
|
|
break;
|
2006-04-12 15:27:40 +00:00
|
|
|
#endif
|
|
|
|
case 'D':
|
|
|
|
SET(BOLD_TEXT);
|
|
|
|
break;
|
|
|
|
#ifndef NANO_TINY
|
2005-06-15 23:20:56 +00:00
|
|
|
case 'E':
|
|
|
|
SET(TABS_TO_SPACES);
|
|
|
|
break;
|
2001-09-22 00:42:10 +00:00
|
|
|
#endif
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'F':
|
|
|
|
SET(MULTIBUFFER);
|
|
|
|
break;
|
2002-07-19 01:08:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_NANORC
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2013-01-01 03:24:39 +00:00
|
|
|
case 'G':
|
|
|
|
SET(LOCKING);
|
|
|
|
break;
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'H':
|
|
|
|
SET(HISTORYLOG);
|
|
|
|
break;
|
2003-09-06 21:44:37 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'I':
|
2006-04-24 18:54:29 +00:00
|
|
|
no_rcfiles = TRUE;
|
2004-08-07 22:00:02 +00:00
|
|
|
break;
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
2005-08-10 21:22:15 +00:00
|
|
|
case 'K':
|
|
|
|
SET(REBIND_KEYPAD);
|
|
|
|
break;
|
2005-11-05 17:35:44 +00:00
|
|
|
case 'L':
|
|
|
|
SET(NO_NEWLINES);
|
|
|
|
break;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'N':
|
|
|
|
SET(NO_CONVERT);
|
|
|
|
break;
|
2002-03-03 22:36:36 +00:00
|
|
|
#endif
|
2005-01-17 05:06:55 +00:00
|
|
|
case 'O':
|
|
|
|
SET(MORE_SPACE);
|
|
|
|
break;
|
2011-02-16 06:52:30 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
case 'P':
|
|
|
|
SET(POS_HISTORY);
|
|
|
|
break;
|
|
|
|
#endif
|
2002-03-03 22:36:36 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'Q':
|
|
|
|
quotestr = mallocstrcpy(quotestr, optarg);
|
|
|
|
break;
|
2002-02-15 19:17:02 +00:00
|
|
|
#endif
|
2005-06-17 22:53:41 +00:00
|
|
|
case 'R':
|
|
|
|
SET(RESTRICTED);
|
|
|
|
break;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'S':
|
2005-06-16 02:13:10 +00:00
|
|
|
SET(SMOOTH_SCROLL);
|
2004-08-07 22:00:02 +00:00
|
|
|
break;
|
2000-07-07 02:35:34 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'T':
|
|
|
|
if (!parse_num(optarg, &tabsize) || tabsize <= 0) {
|
2006-06-08 02:54:20 +00:00
|
|
|
fprintf(stderr, _("Requested tab size \"%s\" is invalid"), optarg);
|
2004-08-11 05:13:08 +00:00
|
|
|
fprintf(stderr, "\n");
|
2004-08-07 22:00:02 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-17 19:06:25 +00:00
|
|
|
case 'U':
|
|
|
|
SET(QUICK_BLANK);
|
|
|
|
break;
|
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'V':
|
|
|
|
version();
|
|
|
|
exit(0);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-08-10 22:12:28 +00:00
|
|
|
case 'W':
|
|
|
|
SET(WORD_BOUNDS);
|
|
|
|
break;
|
|
|
|
#endif
|
2002-05-04 04:23:30 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'Y':
|
|
|
|
syntaxstr = mallocstrcpy(syntaxstr, optarg);
|
|
|
|
break;
|
2002-05-04 04:23:30 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'c':
|
2005-06-17 21:08:13 +00:00
|
|
|
SET(CONST_UPDATE);
|
2004-08-07 22:00:02 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
SET(REBIND_DELETE);
|
|
|
|
break;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'i':
|
|
|
|
SET(AUTOINDENT);
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
SET(CUT_TO_END);
|
|
|
|
break;
|
2000-07-12 18:14:51 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'l':
|
|
|
|
SET(NOFOLLOW_SYMLINKS);
|
|
|
|
break;
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'm':
|
|
|
|
SET(USE_MOUSE);
|
|
|
|
break;
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'o':
|
|
|
|
operating_dir = mallocstrcpy(operating_dir, optarg);
|
|
|
|
break;
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'p':
|
|
|
|
SET(PRESERVE);
|
|
|
|
break;
|
2009-02-09 04:03:20 +00:00
|
|
|
case 'q':
|
|
|
|
SET(QUIET);
|
|
|
|
break;
|
2001-05-21 12:56:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'r':
|
|
|
|
if (!parse_num(optarg, &wrap_at)) {
|
2006-06-08 02:54:20 +00:00
|
|
|
fprintf(stderr, _("Requested fill size \"%s\" is invalid"), optarg);
|
2004-08-11 05:13:08 +00:00
|
|
|
fprintf(stderr, "\n");
|
2004-08-07 22:00:02 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2005-07-25 22:54:16 +00:00
|
|
|
fill_used = TRUE;
|
2004-08-07 22:00:02 +00:00
|
|
|
break;
|
2001-05-21 12:56:25 +00:00
|
|
|
#endif
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2004-08-07 22:00:02 +00:00
|
|
|
case 's':
|
|
|
|
alt_speller = mallocstrcpy(alt_speller, optarg);
|
|
|
|
break;
|
2001-01-12 07:51:05 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 't':
|
|
|
|
SET(TEMP_FILE);
|
|
|
|
break;
|
2009-07-12 03:36:58 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
case 'u':
|
2009-08-14 03:18:29 +00:00
|
|
|
SET(UNDOABLE);
|
2009-07-12 03:36:58 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'v':
|
|
|
|
SET(VIEW_MODE);
|
|
|
|
break;
|
2003-01-02 16:32:20 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'w':
|
|
|
|
SET(NO_WRAP);
|
2014-03-24 21:48:23 +00:00
|
|
|
/* If both --fill and --nowrap are given on the
|
|
|
|
* command line, the last given option wins. */
|
2009-11-18 12:39:47 +00:00
|
|
|
fill_used = FALSE;
|
2004-08-07 22:00:02 +00:00
|
|
|
break;
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
case 'x':
|
|
|
|
SET(NO_HELP);
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
SET(SUSPEND);
|
|
|
|
break;
|
2009-08-17 07:52:10 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
case '$':
|
|
|
|
SET(SOFTWRAP);
|
|
|
|
break;
|
|
|
|
#endif
|
2004-08-07 22:00:02 +00:00
|
|
|
default:
|
|
|
|
usage();
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-26 15:55:39 +00:00
|
|
|
/* If the executable filename starts with 'r', enable restricted
|
2004-05-29 01:20:17 +00:00
|
|
|
* mode. */
|
2004-04-30 04:49:02 +00:00
|
|
|
if (*(tail(argv[0])) == 'r')
|
|
|
|
SET(RESTRICTED);
|
|
|
|
|
2004-05-29 01:20:17 +00:00
|
|
|
/* If we're using restricted mode, disable suspending, backups, and
|
|
|
|
* reading rcfiles, since they all would allow reading from or
|
|
|
|
* writing to files not specified on the command line. */
|
2004-04-30 04:49:02 +00:00
|
|
|
if (ISSET(RESTRICTED)) {
|
|
|
|
UNSET(SUSPEND);
|
|
|
|
UNSET(BACKUP_FILE);
|
2006-04-24 20:17:50 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
2006-04-24 18:54:29 +00:00
|
|
|
no_rcfiles = TRUE;
|
2006-04-24 20:17:50 +00:00
|
|
|
#endif
|
2004-04-30 04:49:02 +00:00
|
|
|
}
|
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
/* Set up the shortcut lists.
|
2014-03-24 21:48:23 +00:00
|
|
|
* Need to do this before the rcfile. */
|
2008-03-05 07:34:01 +00:00
|
|
|
shortcut_init(FALSE);
|
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
/* We've read through the command line options. Now back up the flags
|
2004-09-05 21:40:31 +00:00
|
|
|
* and values that are set, and read the rcfile(s). If the values
|
|
|
|
* haven't changed afterward, restore the backed-up values. */
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
2006-04-24 18:54:29 +00:00
|
|
|
if (!no_rcfiles) {
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
char *operating_dir_cpy = operating_dir;
|
|
|
|
#endif
|
2004-08-12 20:06:20 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2004-07-12 16:07:14 +00:00
|
|
|
ssize_t wrap_at_cpy = wrap_at;
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-02-28 16:24:31 +00:00
|
|
|
char *backup_dir_cpy = backup_dir;
|
|
|
|
#endif
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
|
|
|
char *quotestr_cpy = quotestr;
|
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
char *alt_speller_cpy = alt_speller;
|
|
|
|
#endif
|
2004-07-12 16:07:14 +00:00
|
|
|
ssize_t tabsize_cpy = tabsize;
|
2009-08-14 03:18:29 +00:00
|
|
|
unsigned flags_cpy[sizeof(flags) / sizeof(flags[0])];
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
memcpy(flags_cpy, flags, sizeof(flags_cpy));
|
2003-01-13 01:35:15 +00:00
|
|
|
|
2003-02-05 02:39:34 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2003-01-13 01:35:15 +00:00
|
|
|
operating_dir = NULL;
|
2003-02-05 02:39:34 +00:00
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-02-28 16:24:31 +00:00
|
|
|
backup_dir = NULL;
|
|
|
|
#endif
|
2003-02-05 02:39:34 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2003-01-13 01:35:15 +00:00
|
|
|
quotestr = NULL;
|
2003-02-05 02:39:34 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_SPELLER
|
2003-01-13 01:35:15 +00:00
|
|
|
alt_speller = NULL;
|
2003-02-05 02:39:34 +00:00
|
|
|
#endif
|
2003-01-13 01:35:15 +00:00
|
|
|
|
|
|
|
do_rcfile();
|
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "After rebinding keys...\n");
|
|
|
|
print_sclist();
|
|
|
|
#endif
|
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
if (operating_dir_cpy != NULL) {
|
|
|
|
free(operating_dir);
|
|
|
|
operating_dir = operating_dir_cpy;
|
|
|
|
}
|
|
|
|
#endif
|
2004-08-12 19:48:21 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2005-07-25 22:54:16 +00:00
|
|
|
if (fill_used)
|
2003-01-13 01:35:15 +00:00
|
|
|
wrap_at = wrap_at_cpy;
|
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-02-28 16:24:31 +00:00
|
|
|
if (backup_dir_cpy != NULL) {
|
|
|
|
free(backup_dir);
|
|
|
|
backup_dir = backup_dir_cpy;
|
|
|
|
}
|
2007-12-10 17:59:26 +00:00
|
|
|
#endif
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
|
|
|
if (quotestr_cpy != NULL) {
|
|
|
|
free(quotestr);
|
|
|
|
quotestr = quotestr_cpy;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
if (alt_speller_cpy != NULL) {
|
|
|
|
free(alt_speller);
|
|
|
|
alt_speller = alt_speller_cpy;
|
|
|
|
}
|
|
|
|
#endif
|
2004-07-18 18:13:54 +00:00
|
|
|
if (tabsize_cpy != -1)
|
2003-01-13 01:35:15 +00:00
|
|
|
tabsize = tabsize_cpy;
|
2009-08-14 03:18:29 +00:00
|
|
|
|
|
|
|
for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++)
|
|
|
|
flags[i] |= flags_cpy[i];
|
2003-01-13 01:35:15 +00:00
|
|
|
}
|
2006-07-19 15:50:19 +00:00
|
|
|
#ifdef DISABLE_ROOTWRAPPING
|
2006-07-18 18:16:30 +00:00
|
|
|
/* If we don't have any rcfiles, --disable-wrapping-as-root is used,
|
|
|
|
* and we're root, turn wrapping off. */
|
2004-03-04 06:33:52 +00:00
|
|
|
else if (geteuid() == NANO_ROOT_UID)
|
2003-01-13 01:35:15 +00:00
|
|
|
SET(NO_WRAP);
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_NANORC */
|
|
|
|
|
2009-11-22 21:35:56 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
2009-11-18 12:39:47 +00:00
|
|
|
/* Overwrite an rcfile "set nowrap" or --disable-wrapping-as-root
|
2012-12-30 19:20:10 +00:00
|
|
|
if a --fill option was given on the command line. */
|
2009-11-18 12:39:47 +00:00
|
|
|
if (fill_used)
|
|
|
|
UNSET(NO_WRAP);
|
2009-11-22 21:35:56 +00:00
|
|
|
#endif
|
2009-11-18 12:39:47 +00:00
|
|
|
|
2006-04-12 15:27:40 +00:00
|
|
|
/* If we're using bold text instead of reverse video text, set it up
|
|
|
|
* now. */
|
|
|
|
if (ISSET(BOLD_TEXT))
|
|
|
|
reverse_attr = A_BOLD;
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-04-12 15:27:40 +00:00
|
|
|
/* Set up the search/replace history. */
|
2003-03-11 03:50:40 +00:00
|
|
|
history_init();
|
|
|
|
#ifdef ENABLE_NANORC
|
2011-02-16 06:52:30 +00:00
|
|
|
if (!no_rcfiles) {
|
|
|
|
if (ISSET(HISTORYLOG) || ISSET(POS_HISTORY)) {
|
|
|
|
if (check_dotnano() == 0) {
|
|
|
|
UNSET(HISTORYLOG);
|
|
|
|
UNSET(POS_HISTORY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ISSET(HISTORYLOG))
|
|
|
|
load_history();
|
|
|
|
if (ISSET(POS_HISTORY))
|
|
|
|
load_poshistory();
|
|
|
|
}
|
|
|
|
#endif /* ENABLE_NANORC */
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2003-03-11 03:50:40 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-05-28 23:45:25 +00:00
|
|
|
/* Set up the backup directory (unless we're using restricted mode,
|
2004-05-29 01:20:17 +00:00
|
|
|
* in which case backups are disabled, since they would allow
|
|
|
|
* reading from or writing to files not specified on the command
|
|
|
|
* line). This entails making sure it exists and is a directory, so
|
|
|
|
* that backup files will be saved there. */
|
2004-05-28 23:45:25 +00:00
|
|
|
if (!ISSET(RESTRICTED))
|
|
|
|
init_backup_dir();
|
2004-02-28 16:24:31 +00:00
|
|
|
#endif
|
|
|
|
|
2002-09-13 18:14:04 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2003-01-13 01:35:15 +00:00
|
|
|
/* Set up the operating directory. This entails chdir()ing there,
|
2004-05-28 23:45:25 +00:00
|
|
|
* so that file reads and writes will be based there. */
|
2002-09-13 18:14:04 +00:00
|
|
|
init_operating_dir();
|
|
|
|
#endif
|
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2006-01-06 21:51:10 +00:00
|
|
|
/* If punct wasn't specified, set its default value. */
|
2004-05-29 16:38:57 +00:00
|
|
|
if (punct == NULL)
|
2006-01-03 04:53:41 +00:00
|
|
|
punct = mallocstrcpy(NULL, "!.?");
|
2004-05-29 16:38:57 +00:00
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
/* If brackets wasn't specified, set its default value. */
|
2004-05-29 16:38:57 +00:00
|
|
|
if (brackets == NULL)
|
2006-01-03 04:53:41 +00:00
|
|
|
brackets = mallocstrcpy(NULL, "\"')>]}");
|
2004-05-29 16:38:57 +00:00
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
/* If quotestr wasn't specified, set its default value. */
|
2003-01-13 01:35:15 +00:00
|
|
|
if (quotestr == NULL)
|
2004-06-12 21:03:14 +00:00
|
|
|
quotestr = mallocstrcpy(NULL,
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
2006-01-03 04:53:41 +00:00
|
|
|
"^([ \t]*[#:>|}])+"
|
2003-01-13 01:35:15 +00:00
|
|
|
#else
|
2004-06-12 21:03:14 +00:00
|
|
|
"> "
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif
|
2004-06-12 21:03:14 +00:00
|
|
|
);
|
2004-07-30 03:54:34 +00:00
|
|
|
#ifdef HAVE_REGEX_H
|
|
|
|
quoterc = regcomp("ereg, quotestr, REG_EXTENDED);
|
|
|
|
|
|
|
|
if (quoterc == 0) {
|
|
|
|
/* We no longer need quotestr, just quotereg. */
|
|
|
|
free(quotestr);
|
|
|
|
quotestr = NULL;
|
|
|
|
} else {
|
|
|
|
size_t size = regerror(quoterc, "ereg, NULL, 0);
|
|
|
|
|
|
|
|
quoteerr = charalloc(size);
|
|
|
|
regerror(quoterc, "ereg, quoteerr, size);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
quotelen = strlen(quotestr);
|
|
|
|
#endif /* !HAVE_REGEX_H */
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif /* !DISABLE_JUSTIFY */
|
2004-02-28 16:24:31 +00:00
|
|
|
|
2004-05-28 22:42:41 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
/* If we don't have an alternative spell checker after reading the
|
2004-05-29 01:20:17 +00:00
|
|
|
* command line and/or rcfile(s), check $SPELL for one, as Pico
|
2004-05-28 23:45:25 +00:00
|
|
|
* does (unless we're using restricted mode, in which case spell
|
2004-05-29 01:20:17 +00:00
|
|
|
* checking is disabled, since it would allow reading from or
|
|
|
|
* writing to files not specified on the command line). */
|
2004-05-28 23:45:25 +00:00
|
|
|
if (!ISSET(RESTRICTED) && alt_speller == NULL) {
|
2004-05-28 22:42:41 +00:00
|
|
|
char *spellenv = getenv("SPELL");
|
|
|
|
if (spellenv != NULL)
|
|
|
|
alt_speller = mallocstrcpy(NULL, spellenv);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
/* If matchbrackets wasn't specified, set its default value. */
|
|
|
|
if (matchbrackets == NULL)
|
|
|
|
matchbrackets = mallocstrcpy(NULL, "(<[{)>]}");
|
|
|
|
#endif
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
|
2004-09-05 21:40:31 +00:00
|
|
|
/* If whitespace wasn't specified, set its default value. */
|
2014-03-24 13:35:50 +00:00
|
|
|
if (whitespace == NULL) {
|
2014-03-27 11:06:16 +00:00
|
|
|
#ifdef ENABLE_UTF8
|
2014-03-16 13:19:41 +00:00
|
|
|
if (using_utf8()) {
|
|
|
|
whitespace = mallocstrcpy(NULL, "»·");
|
|
|
|
whitespace_len[0] = 2;
|
|
|
|
whitespace_len[1] = 2;
|
2014-03-27 11:06:16 +00:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2014-03-16 13:19:41 +00:00
|
|
|
whitespace = mallocstrcpy(NULL, ">.");
|
|
|
|
whitespace_len[0] = 1;
|
|
|
|
whitespace_len[1] = 1;
|
|
|
|
}
|
2014-03-24 13:35:50 +00:00
|
|
|
}
|
2004-05-29 16:25:30 +00:00
|
|
|
#endif
|
|
|
|
|
2004-09-05 21:40:31 +00:00
|
|
|
/* If tabsize wasn't specified, set its default value. */
|
2003-01-13 01:35:15 +00:00
|
|
|
if (tabsize == -1)
|
2004-09-05 21:40:31 +00:00
|
|
|
tabsize = WIDTH_OF_TAB;
|
2002-06-13 00:40:19 +00:00
|
|
|
|
2004-05-18 01:20:36 +00:00
|
|
|
/* Back up the old terminal settings so that they can be restored. */
|
2002-03-29 16:00:59 +00:00
|
|
|
tcgetattr(0, &oldterm);
|
2002-03-29 15:38:17 +00:00
|
|
|
|
2007-12-10 17:59:26 +00:00
|
|
|
/* Initialize curses mode. If this fails, get out. */
|
|
|
|
if (initscr() == NULL)
|
|
|
|
exit(1);
|
2005-07-10 02:37:38 +00:00
|
|
|
|
|
|
|
/* Set up the terminal state. */
|
2004-07-27 16:46:35 +00:00
|
|
|
terminal_init();
|
2004-01-12 03:28:06 +00:00
|
|
|
|
2005-03-20 21:20:47 +00:00
|
|
|
/* Turn the cursor on for sure. */
|
|
|
|
curs_set(1);
|
|
|
|
|
2005-07-25 22:54:16 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "Main: set up windows\n");
|
|
|
|
#endif
|
2005-07-10 02:37:38 +00:00
|
|
|
|
2005-07-25 22:54:16 +00:00
|
|
|
/* Initialize all the windows based on the current screen
|
|
|
|
* dimensions. */
|
|
|
|
window_init();
|
2004-02-16 20:32:40 +00:00
|
|
|
|
|
|
|
/* Set up the signal handlers. */
|
2002-03-29 16:00:59 +00:00
|
|
|
signal_init();
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2006-06-09 18:24:37 +00:00
|
|
|
/* Initialize mouse support. */
|
2001-11-29 02:42:27 +00:00
|
|
|
mouse_init();
|
2002-12-22 16:30:00 +00:00
|
|
|
#endif
|
2001-11-29 02:42:27 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#ifdef DEBUG
|
2003-08-05 19:31:12 +00:00
|
|
|
fprintf(stderr, "Main: open file\n");
|
2000-06-06 05:53:49 +00:00
|
|
|
#endif
|
2004-09-05 21:40:31 +00:00
|
|
|
|
2005-05-16 18:38:16 +00:00
|
|
|
/* If there's a +LINE or +LINE,COLUMN flag here, it is the first
|
|
|
|
* non-option argument, and it is followed by at least one other
|
|
|
|
* argument, the filename it applies to. */
|
2004-10-22 20:25:56 +00:00
|
|
|
if (0 < optind && optind < argc - 1 && argv[optind][0] == '+') {
|
2005-05-16 23:23:15 +00:00
|
|
|
parse_line_column(&argv[optind][1], &startline, &startcol);
|
2004-10-22 20:25:56 +00:00
|
|
|
optind++;
|
|
|
|
}
|
|
|
|
|
2009-01-30 08:34:27 +00:00
|
|
|
if (optind < argc && !strcmp(argv[optind], "-")) {
|
2009-01-30 17:37:44 +00:00
|
|
|
stdin_pager();
|
2009-01-30 08:34:27 +00:00
|
|
|
set_modified();
|
|
|
|
optind++;
|
|
|
|
}
|
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2004-09-05 21:40:31 +00:00
|
|
|
old_multibuffer = ISSET(MULTIBUFFER);
|
|
|
|
SET(MULTIBUFFER);
|
|
|
|
|
|
|
|
/* Read all the files after the first one on the command line into
|
|
|
|
* new buffers. */
|
|
|
|
{
|
2005-06-28 06:25:34 +00:00
|
|
|
int i = optind + 1;
|
|
|
|
ssize_t iline = 1, icol = 1;
|
2005-05-16 18:38:16 +00:00
|
|
|
|
2004-10-22 20:25:56 +00:00
|
|
|
for (; i < argc; i++) {
|
2005-05-16 18:38:16 +00:00
|
|
|
/* If there's a +LINE or +LINE,COLUMN flag here, it is
|
|
|
|
* followed by at least one other argument, the filename it
|
|
|
|
* applies to. */
|
|
|
|
if (i < argc - 1 && argv[i][0] == '+' && iline == 1 &&
|
2005-05-17 18:06:26 +00:00
|
|
|
icol == 1)
|
2005-05-16 23:23:15 +00:00
|
|
|
parse_line_column(&argv[i][1], &iline, &icol);
|
2005-05-17 18:06:26 +00:00
|
|
|
else {
|
2008-08-03 04:48:05 +00:00
|
|
|
open_buffer(argv[i], FALSE);
|
2005-05-16 18:38:16 +00:00
|
|
|
|
2005-05-17 18:06:26 +00:00
|
|
|
if (iline > 1 || icol > 1) {
|
2005-07-16 07:06:36 +00:00
|
|
|
do_gotolinecolumn(iline, icol, FALSE, FALSE, FALSE,
|
|
|
|
FALSE);
|
2005-05-16 18:38:16 +00:00
|
|
|
iline = 1;
|
|
|
|
icol = 1;
|
2004-10-22 20:25:56 +00:00
|
|
|
}
|
2014-02-22 16:26:30 +00:00
|
|
|
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
|
2011-02-16 06:52:30 +00:00
|
|
|
else {
|
2014-03-24 21:48:23 +00:00
|
|
|
/* See if we have a POS history to use if we haven't overridden it. */
|
2011-02-16 06:52:30 +00:00
|
|
|
ssize_t savedposline, savedposcol;
|
|
|
|
if (check_poshistory(argv[i], &savedposline, &savedposcol))
|
|
|
|
do_gotolinecolumn(savedposline, savedposcol, FALSE, FALSE, FALSE,
|
|
|
|
FALSE);
|
|
|
|
}
|
2014-02-22 16:26:30 +00:00
|
|
|
#endif
|
2004-10-22 20:25:56 +00:00
|
|
|
}
|
|
|
|
}
|
2004-09-05 21:40:31 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Read the first file on the command line into either the current
|
|
|
|
* buffer or a new buffer, depending on whether multibuffer mode is
|
|
|
|
* enabled. */
|
|
|
|
if (optind < argc)
|
2008-08-03 04:48:05 +00:00
|
|
|
open_buffer(argv[optind], FALSE);
|
2004-09-05 21:40:31 +00:00
|
|
|
|
|
|
|
/* We didn't open any files if all the command line arguments were
|
|
|
|
* invalid files like directories or if there were no command line
|
|
|
|
* arguments given. In this case, we have to load a blank buffer.
|
|
|
|
* Also, we unset view mode to allow editing. */
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile == NULL) {
|
2008-08-03 04:48:05 +00:00
|
|
|
open_buffer("", FALSE);
|
2004-09-05 21:40:31 +00:00
|
|
|
UNSET(VIEW_MODE);
|
2003-01-13 01:35:15 +00:00
|
|
|
}
|
2004-09-05 21:40:31 +00:00
|
|
|
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2004-09-05 21:40:31 +00:00
|
|
|
if (!old_multibuffer)
|
|
|
|
UNSET(MULTIBUFFER);
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2004-09-05 21:40:31 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
fprintf(stderr, "Main: top and bottom win\n");
|
|
|
|
#endif
|
|
|
|
|
2009-02-03 05:05:58 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2014-02-24 10:18:15 +00:00
|
|
|
if (openfile->syntax)
|
|
|
|
if (openfile->syntax->nmultis > 0)
|
|
|
|
precalc_multicolorinfo();
|
2009-02-03 05:05:58 +00:00
|
|
|
#endif
|
|
|
|
|
2005-05-17 18:06:26 +00:00
|
|
|
if (startline > 1 || startcol > 1)
|
2005-07-16 07:06:36 +00:00
|
|
|
do_gotolinecolumn(startline, startcol, FALSE, FALSE, FALSE,
|
|
|
|
FALSE);
|
2014-02-22 16:26:30 +00:00
|
|
|
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
|
2011-02-16 06:52:30 +00:00
|
|
|
else {
|
2014-03-24 21:48:23 +00:00
|
|
|
/* See if we have a POS history to use if we haven't overridden it. */
|
2011-02-16 06:52:30 +00:00
|
|
|
ssize_t savedposline, savedposcol;
|
|
|
|
if (check_poshistory(argv[optind], &savedposline, &savedposcol))
|
|
|
|
do_gotolinecolumn(savedposline, savedposcol, FALSE, FALSE, FALSE, FALSE);
|
|
|
|
}
|
2014-02-22 16:26:30 +00:00
|
|
|
#endif
|
2005-05-16 18:38:16 +00:00
|
|
|
|
2005-07-09 05:52:08 +00:00
|
|
|
display_main_list();
|
|
|
|
|
2007-12-03 18:40:33 +00:00
|
|
|
display_buffer();
|
2000-07-08 14:23:32 +00:00
|
|
|
|
2004-03-15 20:26:30 +00:00
|
|
|
while (TRUE) {
|
2005-01-11 23:05:05 +00:00
|
|
|
bool meta_key, func_key, s_or_t, ran_func, finished;
|
2004-12-04 17:41:52 +00:00
|
|
|
|
|
|
|
/* Make sure the cursor is in the edit window. */
|
2004-07-13 17:09:24 +00:00
|
|
|
reset_cursor();
|
2007-12-04 16:38:47 +00:00
|
|
|
wnoutrefresh(edit);
|
2004-12-04 17:41:52 +00:00
|
|
|
|
2006-05-10 13:41:53 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-05-10 15:15:06 +00:00
|
|
|
if (!jump_buf_main) {
|
|
|
|
/* If we haven't already, we're going to set jump_buf so
|
|
|
|
* that we return here after a SIGWINCH. Indicate this. */
|
|
|
|
jump_buf_main = TRUE;
|
|
|
|
|
|
|
|
/* Return here after a SIGWINCH. */
|
|
|
|
sigsetjmp(jump_buf, 1);
|
|
|
|
}
|
2006-05-10 13:41:53 +00:00
|
|
|
#endif
|
|
|
|
|
2006-08-29 21:14:12 +00:00
|
|
|
/* Just in case we were at the statusbar prompt, make sure the
|
|
|
|
* statusbar cursor position is reset. */
|
|
|
|
do_prompt_abort();
|
|
|
|
|
2005-07-26 14:42:57 +00:00
|
|
|
/* If constant cursor position display is on, and there are no
|
|
|
|
* keys waiting in the input buffer, display the current cursor
|
|
|
|
* position on the statusbar. */
|
|
|
|
if (ISSET(CONST_UPDATE) && get_key_buffer_len() == 0)
|
2004-07-01 19:41:09 +00:00
|
|
|
do_cursorpos(TRUE);
|
2003-01-28 01:16:47 +00:00
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
currmenu = MMAIN;
|
2001-04-12 03:01:53 +00:00
|
|
|
|
2004-12-04 17:41:52 +00:00
|
|
|
/* Read in and interpret characters. */
|
2005-01-11 23:05:05 +00:00
|
|
|
do_input(&meta_key, &func_key, &s_or_t, &ran_func, &finished,
|
|
|
|
TRUE);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2005-03-04 17:09:41 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* We should never get here. */
|
2004-03-19 21:57:56 +00:00
|
|
|
assert(FALSE);
|
2000-06-06 05:53:49 +00:00
|
|
|
}
|
2009-01-30 17:37:44 +00:00
|
|
|
|