2000-06-19 04:22:15 +00:00
|
|
|
/**************************************************************************
|
2016-08-29 15:10:49 +00:00
|
|
|
* search.c -- This file is part of GNU nano. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
2017-04-09 10:09:23 +00:00
|
|
|
* Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. *
|
2017-02-21 19:27:49 +00:00
|
|
|
* Copyright (C) 2015, 2016, 2017 Benno Schulenberg *
|
2016-08-29 13:14:18 +00:00
|
|
|
* *
|
2016-08-29 15:10:49 +00:00
|
|
|
* GNU nano is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published *
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, *
|
|
|
|
* or (at your option) any later version. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
2016-08-29 15:10:49 +00:00
|
|
|
* GNU nano 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-19 04:22:15 +00:00
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
2016-08-29 15:10:49 +00:00
|
|
|
* along with this program. If not, see http://www.gnu.org/licenses/. *
|
2000-06-19 04:22:15 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2005-12-08 02:47:10 +00:00
|
|
|
#include "proto.h"
|
2001-04-28 18:03:52 +00:00
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
#include <string.h>
|
2017-07-11 16:04:30 +00:00
|
|
|
#ifdef DEBUG
|
2009-01-24 22:40:41 +00:00
|
|
|
#include <time.h>
|
2017-07-11 16:04:30 +00:00
|
|
|
#endif
|
2000-06-21 03:00:43 +00:00
|
|
|
|
2016-05-01 10:59:32 +00:00
|
|
|
static bool came_full_circle = FALSE;
|
|
|
|
/* Have we reached the starting line again while searching? */
|
2004-10-19 21:09:37 +00:00
|
|
|
static bool regexp_compiled = FALSE;
|
|
|
|
/* Have we compiled any regular expressions? */
|
2004-04-30 19:40:03 +00:00
|
|
|
|
2017-01-02 19:25:24 +00:00
|
|
|
/* Compile the given regular expression and store it in search_regexp.
|
|
|
|
* Return TRUE if the expression is valid, and FALSE otherwise. */
|
2007-01-09 23:40:24 +00:00
|
|
|
bool regexp_init(const char *regexp)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2017-01-02 19:25:24 +00:00
|
|
|
int value = regcomp(&search_regexp, fixbounds(regexp),
|
2016-09-08 19:00:51 +00:00
|
|
|
NANO_REG_EXTENDED | (ISSET(CASE_SENSITIVE) ? 0 : REG_ICASE));
|
2004-04-30 19:40:03 +00:00
|
|
|
|
2017-01-02 19:25:24 +00:00
|
|
|
/* If regex compilation failed, show the error message. */
|
|
|
|
if (value != 0) {
|
|
|
|
size_t len = regerror(value, &search_regexp, NULL, 0);
|
2004-04-30 19:40:03 +00:00
|
|
|
char *str = charalloc(len);
|
|
|
|
|
2017-01-02 19:25:24 +00:00
|
|
|
regerror(value, &search_regexp, str, len);
|
2016-04-30 15:31:43 +00:00
|
|
|
statusline(ALERT, _("Bad regex \"%s\": %s"), regexp, str);
|
2004-04-30 19:40:03 +00:00
|
|
|
free(str);
|
2007-01-09 23:35:02 +00:00
|
|
|
|
|
|
|
return FALSE;
|
2004-04-30 19:40:03 +00:00
|
|
|
}
|
2003-01-29 04:18:37 +00:00
|
|
|
|
2004-04-30 19:40:03 +00:00
|
|
|
regexp_compiled = TRUE;
|
2007-01-09 23:35:02 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Decompile the compiled regular expression we used in the last
|
|
|
|
* search, if any. */
|
2001-03-18 16:59:34 +00:00
|
|
|
void regexp_cleanup(void)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2004-04-30 19:40:03 +00:00
|
|
|
if (regexp_compiled) {
|
|
|
|
regexp_compiled = FALSE;
|
2004-02-24 20:41:39 +00:00
|
|
|
regfree(&search_regexp);
|
|
|
|
}
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
|
|
|
|
2017-09-19 19:14:05 +00:00
|
|
|
/* Report on the status bar that the given string was not found. */
|
2002-09-06 20:35:28 +00:00
|
|
|
void not_found_msg(const char *str)
|
|
|
|
{
|
2017-09-19 19:14:05 +00:00
|
|
|
char *disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
|
|
|
|
size_t numchars = actual_x(disp, strnlenpt(disp, COLS / 2));
|
2004-05-29 16:25:30 +00:00
|
|
|
|
2016-04-30 15:31:43 +00:00
|
|
|
statusline(HUSH, _("\"%.*s%s\" not found"), numchars, disp,
|
2016-03-17 19:30:29 +00:00
|
|
|
(disp[numchars] == '\0') ? "" : "...");
|
2004-05-29 16:25:30 +00:00
|
|
|
free(disp);
|
2002-09-06 20:35:28 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Abort the current search or replace. Clean up by displaying the main
|
|
|
|
* shortcut list, updating the screen if the mark was on before, and
|
|
|
|
* decompiling the compiled regular expression we used in the last
|
|
|
|
* search, if any. */
|
|
|
|
void search_replace_abort(void)
|
2002-09-06 20:35:28 +00:00
|
|
|
{
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->mark_set)
|
2016-12-03 16:00:28 +00:00
|
|
|
refresh_needed = TRUE;
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
|
|
|
regexp_cleanup();
|
2002-09-06 20:35:28 +00:00
|
|
|
}
|
|
|
|
|
2004-10-04 22:37:56 +00:00
|
|
|
/* Set up the system variables for a search or replace. If use_answer
|
2006-03-23 22:14:40 +00:00
|
|
|
* is TRUE, only set backupstring to answer. Return -2 to run the
|
|
|
|
* opposite program (search -> replace, replace -> search), return -1 if
|
|
|
|
* the search should be canceled (due to Cancel, a blank search string,
|
|
|
|
* Go to Line, or a failed regcomp()), return 0 on success, and return 1
|
|
|
|
* on rerun calling program.
|
2003-01-13 01:35:15 +00:00
|
|
|
*
|
2004-10-04 22:37:56 +00:00
|
|
|
* replacing is TRUE if we call from do_replace(), and FALSE if called
|
|
|
|
* from do_search(). */
|
|
|
|
int search_init(bool replacing, bool use_answer)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2001-07-15 22:24:24 +00:00
|
|
|
int i = 0;
|
2000-11-03 14:23:00 +00:00
|
|
|
char *buf;
|
2000-11-16 06:01:10 +00:00
|
|
|
static char *backupstring = NULL;
|
2004-10-04 22:37:56 +00:00
|
|
|
/* The search string we'll be using. */
|
2016-03-19 18:51:46 +00:00
|
|
|
functionptrtype func;
|
2004-10-04 22:37:56 +00:00
|
|
|
|
|
|
|
/* If use_answer is TRUE, set backupstring to answer and get out. */
|
|
|
|
if (use_answer) {
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-02-24 20:41:39 +00:00
|
|
|
|
|
|
|
/* We display the search prompt below. If the user types a partial
|
|
|
|
* search string and then Replace or a toggle, we will return to
|
|
|
|
* do_search() or do_replace() and be called again. In that case,
|
2004-10-04 22:37:56 +00:00
|
|
|
* we should put the same search string back up. */
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2016-05-27 19:31:55 +00:00
|
|
|
if (*last_search != '\0') {
|
2004-12-23 17:43:27 +00:00
|
|
|
char *disp = display_string(last_search, 0, COLS / 3, FALSE);
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2005-01-02 20:30:15 +00:00
|
|
|
buf = charalloc(strlen(disp) + 7);
|
2015-03-21 21:40:56 +00:00
|
|
|
/* We use (COLS / 3) here because we need to see more on the line. */
|
2003-09-16 01:16:49 +00:00
|
|
|
sprintf(buf, " [%s%s]", disp,
|
2005-10-26 23:14:59 +00:00
|
|
|
(strlenpt(last_search) > COLS / 3) ? "..." : "");
|
2003-09-16 01:16:49 +00:00
|
|
|
free(disp);
|
2004-10-04 22:37:56 +00:00
|
|
|
} else
|
|
|
|
buf = mallocstrcpy(NULL, "");
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* This is now one simple call. It just does a lot. */
|
2017-01-02 20:12:44 +00:00
|
|
|
i = do_prompt(FALSE, FALSE,
|
2017-04-22 16:27:01 +00:00
|
|
|
inhelp ? MFINDINHELP : (replacing ? MREPLACE : MWHEREIS),
|
2017-10-29 10:34:53 +00:00
|
|
|
backupstring, &search_history,
|
2016-08-26 10:18:04 +00:00
|
|
|
/* TRANSLATORS: This is the main search prompt. */
|
|
|
|
edit_refresh, "%s%s%s%s%s%s", _("Search"),
|
|
|
|
/* TRANSLATORS: The next three modify the search prompt. */
|
2016-09-08 19:00:51 +00:00
|
|
|
ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") : "",
|
2017-02-21 22:04:39 +00:00
|
|
|
ISSET(USE_REGEXP) ? _(" [Regexp]") : "",
|
2016-09-08 19:00:51 +00:00
|
|
|
ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") : "", replacing ?
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-08-26 10:18:04 +00:00
|
|
|
/* TRANSLATORS: The next two modify the search prompt. */
|
|
|
|
openfile->mark_set ? _(" (to replace) in selection") :
|
2004-11-03 23:05:11 +00:00
|
|
|
#endif
|
2016-08-26 10:18:04 +00:00
|
|
|
_(" (to replace)") : "", buf);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Release buf now that we don't need it anymore. */
|
2002-03-10 01:22:21 +00:00
|
|
|
free(buf);
|
|
|
|
|
2003-09-16 01:16:49 +00:00
|
|
|
free(backupstring);
|
|
|
|
backupstring = NULL;
|
|
|
|
|
2016-03-19 18:23:37 +00:00
|
|
|
/* If the search was cancelled, or we have a blank answer and
|
|
|
|
* nothing was searched for yet during this session, get out. */
|
|
|
|
if (i == -1 || (i == -2 && *last_search == '\0')) {
|
2004-08-26 04:22:54 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2000-06-19 04:22:15 +00:00
|
|
|
return -1;
|
2016-03-19 18:51:46 +00:00
|
|
|
}
|
2008-03-05 07:34:01 +00:00
|
|
|
|
2016-03-19 18:51:46 +00:00
|
|
|
/* If Enter was pressed, see what we got. */
|
|
|
|
if (i == 0 || i == -2) {
|
|
|
|
/* If an answer was given, remember it. */
|
|
|
|
if (*answer != '\0') {
|
|
|
|
last_search = mallocstrcpy(last_search, answer);
|
2017-10-29 18:42:12 +00:00
|
|
|
#ifdef ENABLE_HISTORIES
|
2016-03-19 18:51:46 +00:00
|
|
|
update_history(&search_history, answer);
|
2016-03-19 16:19:44 +00:00
|
|
|
#endif
|
2016-03-19 18:51:46 +00:00
|
|
|
}
|
|
|
|
if (ISSET(USE_REGEXP) && !regexp_init(last_search))
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
return 0; /* We have a valid string or regex. */
|
|
|
|
}
|
|
|
|
|
|
|
|
func = func_from_key(&i);
|
|
|
|
|
|
|
|
if (func == case_sens_void) {
|
|
|
|
TOGGLE(CASE_SENSITIVE);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
|
|
|
} else if (func == backwards_void) {
|
|
|
|
TOGGLE(BACKWARDS_SEARCH);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2017-02-21 22:04:39 +00:00
|
|
|
} else if (func == regexp_void) {
|
2016-03-19 18:51:46 +00:00
|
|
|
TOGGLE(USE_REGEXP);
|
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return 1;
|
2017-05-08 12:23:47 +00:00
|
|
|
} else if (func == flip_replace) {
|
2016-03-19 18:51:46 +00:00
|
|
|
backupstring = mallocstrcpy(backupstring, answer);
|
|
|
|
return -2; /* Call the opposite search function. */
|
|
|
|
} else if (func == do_gotolinecolumn_void) {
|
|
|
|
do_gotolinecolumn(openfile->current->lineno,
|
2015-12-31 19:20:40 +00:00
|
|
|
openfile->placewewant + 1, TRUE, TRUE);
|
2016-03-19 18:51:46 +00:00
|
|
|
return 3;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2005-05-31 17:35:11 +00:00
|
|
|
|
2016-03-19 18:51:46 +00:00
|
|
|
return -1;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-04-25 15:17:22 +00:00
|
|
|
/* Look for needle, starting at (current, current_x). begin is the line
|
2016-03-30 12:00:48 +00:00
|
|
|
* where we first started searching, at column begin_x. Return 1 when we
|
|
|
|
* found something, 0 when nothing, and -2 on cancel. When match_len is
|
|
|
|
* not NULL, set it to the length of the found string, if any. */
|
2017-10-26 17:15:11 +00:00
|
|
|
int findnextstr(const char *needle, bool whole_word_only, int modus,
|
2017-02-10 12:51:51 +00:00
|
|
|
size_t *match_len, bool skipone, const filestruct *begin, size_t begin_x)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2017-01-05 20:25:30 +00:00
|
|
|
size_t found_len = strlen(needle);
|
|
|
|
/* The length of a match -- will be recomputed for a regex. */
|
2016-03-28 19:00:19 +00:00
|
|
|
int feedback = 0;
|
|
|
|
/* When bigger than zero, show and wipe the "Searching..." message. */
|
2017-01-05 21:40:49 +00:00
|
|
|
filestruct *line = openfile->current;
|
2017-01-13 15:11:47 +00:00
|
|
|
/* The line that we will search through now. */
|
|
|
|
const char *from = line->data + openfile->current_x;
|
|
|
|
/* The point in the line from where we start searching. */
|
|
|
|
const char *found = NULL;
|
|
|
|
/* A pointer to the location of the match, if any. */
|
2016-05-01 10:35:47 +00:00
|
|
|
size_t found_x;
|
|
|
|
/* The x coordinate of a found occurrence. */
|
2009-01-24 22:40:41 +00:00
|
|
|
time_t lastkbcheck = time(NULL);
|
2017-06-04 10:32:27 +00:00
|
|
|
/* The time we last looked at the keyboard. */
|
2004-02-24 20:41:39 +00:00
|
|
|
|
2017-06-04 10:32:27 +00:00
|
|
|
/* Set non-blocking input so that we can just peek for a Cancel. */
|
|
|
|
disable_waiting();
|
2016-03-23 10:19:01 +00:00
|
|
|
|
2016-05-04 15:49:37 +00:00
|
|
|
if (begin == NULL)
|
|
|
|
came_full_circle = FALSE;
|
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Start searching through the lines, looking for the needle. */
|
2004-03-15 20:26:30 +00:00
|
|
|
while (TRUE) {
|
2016-03-23 10:27:54 +00:00
|
|
|
/* Glance at the keyboard once every second. */
|
|
|
|
if (time(NULL) - lastkbcheck > 0) {
|
2014-07-02 19:12:38 +00:00
|
|
|
int input = parse_kbinput(edit);
|
|
|
|
|
2014-04-14 09:57:06 +00:00
|
|
|
lastkbcheck = time(NULL);
|
2014-07-02 19:12:38 +00:00
|
|
|
|
2016-05-05 20:12:24 +00:00
|
|
|
/* Consume all waiting keystrokes until a Cancel. */
|
|
|
|
while (input) {
|
|
|
|
if (func_from_key(&input) == do_cancel) {
|
|
|
|
statusbar(_("Cancelled"));
|
2017-06-04 10:32:27 +00:00
|
|
|
enable_waiting();
|
2016-05-05 20:12:24 +00:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
input = parse_kbinput(NULL);
|
2009-01-24 22:40:41 +00:00
|
|
|
}
|
2016-03-28 19:00:19 +00:00
|
|
|
|
|
|
|
if (++feedback > 0)
|
2016-06-24 07:40:31 +00:00
|
|
|
/* TRANSLATORS: This is shown when searching takes
|
|
|
|
* more than half a second. */
|
2016-03-28 19:00:19 +00:00
|
|
|
statusbar(_("Searching..."));
|
2009-01-24 22:40:41 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Search for the needle in the current line. */
|
2017-01-24 21:37:37 +00:00
|
|
|
if (!skipone)
|
|
|
|
found = strstrwrapper(line->data, needle, from);
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2017-01-13 15:11:47 +00:00
|
|
|
/* Ignore the initial match at the starting position: continue
|
|
|
|
* searching from the next character, or invalidate the match. */
|
2017-01-26 19:05:21 +00:00
|
|
|
if (skipone || (!whole_word_only && !came_full_circle &&
|
|
|
|
found == begin->data + begin_x)) {
|
2017-01-24 21:37:37 +00:00
|
|
|
skipone = FALSE;
|
2017-01-13 15:11:47 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH) && from != line->data) {
|
|
|
|
from = line->data + move_mbleft(line->data, from - line->data);
|
|
|
|
continue;
|
|
|
|
} else if (!ISSET(BACKWARDS_SEARCH) && *from != '\0') {
|
|
|
|
from += move_mbright(from, 0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
found = NULL;
|
|
|
|
}
|
|
|
|
|
2004-10-18 22:19:22 +00:00
|
|
|
if (found != NULL) {
|
2017-01-05 20:25:30 +00:00
|
|
|
/* When doing a regex search, compute the length of the match. */
|
2017-01-26 15:24:18 +00:00
|
|
|
if (ISSET(USE_REGEXP))
|
2017-01-05 20:25:30 +00:00
|
|
|
found_len = regmatches[0].rm_eo - regmatches[0].rm_so;
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2017-01-06 09:56:39 +00:00
|
|
|
/* When we're spell checking, a match should be a separate word;
|
|
|
|
* if it's not, continue looking in the rest of the line. */
|
|
|
|
if (whole_word_only && !is_separate_word(found - line->data,
|
|
|
|
found_len, line->data)) {
|
|
|
|
from = found + move_mbright(found, 0);
|
|
|
|
continue;
|
|
|
|
}
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2017-01-06 09:56:39 +00:00
|
|
|
/* The match is valid. */
|
|
|
|
break;
|
2001-06-13 02:35:44 +00:00
|
|
|
}
|
2000-10-24 22:25:36 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* If we're back at the beginning, then there is no needle. */
|
2016-05-04 15:49:37 +00:00
|
|
|
if (came_full_circle) {
|
2017-06-04 10:32:27 +00:00
|
|
|
enable_waiting();
|
2016-03-30 12:00:48 +00:00
|
|
|
return 0;
|
2000-10-24 22:25:36 +00:00
|
|
|
}
|
2004-08-27 20:28:34 +00:00
|
|
|
|
2006-03-23 21:25:04 +00:00
|
|
|
/* Move to the previous or next line in the file. */
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2017-01-05 21:40:49 +00:00
|
|
|
line = line->prev;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
else
|
2017-01-05 21:40:49 +00:00
|
|
|
line = line->next;
|
2002-06-21 03:20:06 +00:00
|
|
|
|
2017-02-10 12:51:51 +00:00
|
|
|
/* If we've reached the start or end of the buffer, wrap around;
|
|
|
|
* but stop when spell-checking or replacing in a region. */
|
2017-01-05 21:40:49 +00:00
|
|
|
if (line == NULL) {
|
2017-10-26 17:15:11 +00:00
|
|
|
if (whole_word_only || modus == INREGION) {
|
2017-06-04 10:32:27 +00:00
|
|
|
enable_waiting();
|
2016-05-01 09:18:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-02-10 12:51:51 +00:00
|
|
|
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2017-01-05 21:40:49 +00:00
|
|
|
line = openfile->filebot;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
else
|
2017-01-05 21:40:49 +00:00
|
|
|
line = openfile->fileage;
|
2016-05-01 09:18:20 +00:00
|
|
|
|
2017-10-26 17:15:11 +00:00
|
|
|
if (modus == JUSTFIND) {
|
|
|
|
statusbar(_("Search Wrapped"));
|
|
|
|
/* Delay the "Searching..." message for at least two seconds. */
|
|
|
|
feedback = -2;
|
|
|
|
}
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
2001-06-13 02:35:44 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* If we've reached the original starting line, take note. */
|
2017-01-05 21:40:49 +00:00
|
|
|
if (line == begin)
|
2016-05-01 10:59:32 +00:00
|
|
|
came_full_circle = TRUE;
|
2004-10-27 02:21:01 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Set the starting x to the start or end of the line. */
|
2017-01-05 21:40:49 +00:00
|
|
|
from = line->data;
|
2005-06-16 18:48:30 +00:00
|
|
|
if (ISSET(BACKWARDS_SEARCH))
|
2017-01-05 21:40:49 +00:00
|
|
|
from += strlen(line->data);
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
2000-10-24 22:25:36 +00:00
|
|
|
|
2017-01-05 21:40:49 +00:00
|
|
|
found_x = found - line->data;
|
2016-05-01 10:35:47 +00:00
|
|
|
|
2017-06-04 10:32:27 +00:00
|
|
|
enable_waiting();
|
|
|
|
|
2016-05-01 10:35:47 +00:00
|
|
|
/* Ensure that the found occurrence is not beyond the starting x. */
|
2016-09-08 19:00:51 +00:00
|
|
|
if (came_full_circle && ((!ISSET(BACKWARDS_SEARCH) && found_x > begin_x) ||
|
2017-10-25 19:30:53 +00:00
|
|
|
(ISSET(BACKWARDS_SEARCH) && found_x < begin_x)))
|
2016-05-01 10:35:47 +00:00
|
|
|
return 0;
|
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* Set the current position to point at what we found. */
|
2017-01-05 21:40:49 +00:00
|
|
|
openfile->current = line;
|
2016-05-01 10:35:47 +00:00
|
|
|
openfile->current_x = found_x;
|
2004-10-21 15:32:11 +00:00
|
|
|
|
2016-03-23 10:19:01 +00:00
|
|
|
/* When requested, pass back the length of the match. */
|
|
|
|
if (match_len != NULL)
|
|
|
|
*match_len = found_len;
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2017-05-29 20:06:59 +00:00
|
|
|
/* Wipe the "Searching..." message and unset the suppression flag. */
|
|
|
|
if (feedback > 0) {
|
2016-03-28 19:00:19 +00:00
|
|
|
blank_statusbar();
|
2017-05-29 20:06:59 +00:00
|
|
|
suppress_cursorpos = FALSE;
|
|
|
|
}
|
2016-03-28 19:00:19 +00:00
|
|
|
|
2016-03-30 12:00:48 +00:00
|
|
|
return 1;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2016-03-20 16:57:15 +00:00
|
|
|
/* Ask what to search for and then go looking for it. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_search(void)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2016-03-20 16:57:15 +00:00
|
|
|
int i = search_init(FALSE, FALSE);
|
2006-05-22 02:08:49 +00:00
|
|
|
|
2016-03-17 10:06:15 +00:00
|
|
|
if (i == -1) /* Cancelled, or some other exit reason. */
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == -2) /* Do a replace instead. */
|
2000-06-19 04:22:15 +00:00
|
|
|
do_replace();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == 1) /* Toggled something. */
|
2000-06-19 04:22:15 +00:00
|
|
|
do_search();
|
2000-10-31 05:28:33 +00:00
|
|
|
|
2016-03-20 16:57:15 +00:00
|
|
|
if (i == 0)
|
|
|
|
go_looking();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2017-09-17 20:07:25 +00:00
|
|
|
/* Search forward for a string. */
|
|
|
|
void do_search_forward(void)
|
|
|
|
{
|
|
|
|
UNSET(BACKWARDS_SEARCH);
|
|
|
|
do_search();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search backwards for a string. */
|
|
|
|
void do_search_backward(void)
|
|
|
|
{
|
|
|
|
SET(BACKWARDS_SEARCH);
|
|
|
|
do_search();
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:23:24 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
/* Search in the backward direction for the next occurrence. */
|
|
|
|
void do_findprevious(void)
|
|
|
|
{
|
2017-10-16 20:02:53 +00:00
|
|
|
SET(BACKWARDS_SEARCH);
|
|
|
|
do_research();
|
2015-07-26 09:23:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Search in the forward direction for the next occurrence. */
|
|
|
|
void do_findnext(void)
|
|
|
|
{
|
2017-10-16 20:02:53 +00:00
|
|
|
UNSET(BACKWARDS_SEARCH);
|
|
|
|
do_research();
|
2015-07-26 09:23:24 +00:00
|
|
|
}
|
2016-03-17 18:51:46 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2015-07-26 09:23:24 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Search for the last string without prompting. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_research(void)
|
2003-08-23 21:11:06 +00:00
|
|
|
{
|
2017-10-29 18:42:12 +00:00
|
|
|
#ifdef ENABLE_HISTORIES
|
2015-06-20 08:10:25 +00:00
|
|
|
/* If nothing was searched for yet during this run of nano, but
|
|
|
|
* there is a search history, take the most recent item. */
|
2016-05-27 19:31:55 +00:00
|
|
|
if (*last_search == '\0' && searchbot->prev != NULL)
|
2015-06-20 08:10:25 +00:00
|
|
|
last_search = mallocstrcpy(last_search, searchbot->prev->data);
|
|
|
|
#endif
|
|
|
|
|
2016-05-27 19:31:55 +00:00
|
|
|
if (*last_search == '\0') {
|
2016-01-26 09:16:09 +00:00
|
|
|
statusbar(_("No current search pattern"));
|
2016-03-20 16:03:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ISSET(USE_REGEXP) && !regexp_init(last_search))
|
|
|
|
return;
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2016-03-20 16:03:20 +00:00
|
|
|
/* Use the search-menu key bindings, to allow cancelling. */
|
|
|
|
currmenu = MWHEREIS;
|
2016-03-17 09:12:30 +00:00
|
|
|
|
2016-03-20 16:57:15 +00:00
|
|
|
go_looking();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search for the global string 'last_search'. Inform the user when
|
|
|
|
* the string occurs only once. */
|
|
|
|
void go_looking(void)
|
|
|
|
{
|
|
|
|
filestruct *was_current = openfile->current;
|
|
|
|
size_t was_current_x = openfile->current_x;
|
2016-08-06 12:39:08 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
clock_t start = clock();
|
|
|
|
#endif
|
2016-03-20 16:57:15 +00:00
|
|
|
|
2016-05-01 11:38:54 +00:00
|
|
|
came_full_circle = FALSE;
|
2016-05-01 10:59:32 +00:00
|
|
|
|
2017-10-26 17:15:11 +00:00
|
|
|
didfind = findnextstr(last_search, FALSE, JUSTFIND, NULL, FALSE,
|
2016-10-23 15:59:26 +00:00
|
|
|
openfile->current, openfile->current_x);
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2016-03-20 16:03:20 +00:00
|
|
|
/* If we found something, and we're back at the exact same spot
|
|
|
|
* where we started searching, then this is the only occurrence. */
|
2016-03-30 12:00:48 +00:00
|
|
|
if (didfind == 1 && openfile->current == was_current &&
|
2016-03-20 16:57:15 +00:00
|
|
|
openfile->current_x == was_current_x)
|
2016-03-20 16:03:20 +00:00
|
|
|
statusbar(_("This is the only occurrence"));
|
2017-10-25 19:30:53 +00:00
|
|
|
else if (didfind == 0)
|
|
|
|
not_found_msg(last_search);
|
2003-08-23 21:11:06 +00:00
|
|
|
|
2016-08-06 12:39:08 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
statusline(HUSH, "Took: %.2f", (double)(clock() - start) / CLOCKS_PER_SEC);
|
|
|
|
#endif
|
|
|
|
|
2017-08-18 19:46:14 +00:00
|
|
|
edit_redraw(was_current, CENTERING);
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2003-08-23 21:11:06 +00:00
|
|
|
}
|
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
/* Calculate the size of the replacement text, taking possible
|
2015-07-26 17:04:29 +00:00
|
|
|
* subexpressions \1 to \9 into account. Return the replacement
|
|
|
|
* text in the passed string only when create is TRUE. */
|
2005-05-26 03:47:24 +00:00
|
|
|
int replace_regexp(char *string, bool create)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2016-03-28 19:14:33 +00:00
|
|
|
const char *c = answer;
|
2015-07-26 17:29:34 +00:00
|
|
|
size_t replacement_size = 0;
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2002-07-19 01:08:59 +00:00
|
|
|
/* Iterate through the replacement text to handle subexpression
|
|
|
|
* replacement using \1, \2, \3, etc. */
|
2002-12-22 16:30:00 +00:00
|
|
|
while (*c != '\0') {
|
2006-07-13 13:27:16 +00:00
|
|
|
int num = (*(c + 1) - '0');
|
2004-02-24 20:41:39 +00:00
|
|
|
|
2016-03-17 19:30:29 +00:00
|
|
|
if (*c != '\\' || num < 1 || num > 9 || num > search_regexp.re_nsub) {
|
2005-05-26 03:47:24 +00:00
|
|
|
if (create)
|
2000-10-26 01:44:42 +00:00
|
|
|
*string++ = *c;
|
|
|
|
c++;
|
2015-07-26 17:29:34 +00:00
|
|
|
replacement_size++;
|
2000-10-26 01:44:42 +00:00
|
|
|
} else {
|
2005-06-21 22:32:50 +00:00
|
|
|
size_t i = regmatches[num].rm_eo - regmatches[num].rm_so;
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Skip over the replacement expression. */
|
|
|
|
c += 2;
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* But add the length of the subexpression to new_size. */
|
2015-07-26 17:29:34 +00:00
|
|
|
replacement_size += i;
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2005-05-26 03:47:24 +00:00
|
|
|
/* And if create is TRUE, append the result of the
|
2004-02-24 20:41:39 +00:00
|
|
|
* subexpression match to the new line. */
|
2005-05-26 03:47:24 +00:00
|
|
|
if (create) {
|
2005-07-08 20:09:16 +00:00
|
|
|
strncpy(string, openfile->current->data +
|
2017-01-26 15:24:18 +00:00
|
|
|
regmatches[num].rm_so, i);
|
2004-02-24 20:41:39 +00:00
|
|
|
string += i;
|
2000-10-26 01:44:42 +00:00
|
|
|
}
|
|
|
|
}
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
|
|
|
|
2005-05-26 03:47:24 +00:00
|
|
|
if (create)
|
2003-01-13 01:35:15 +00:00
|
|
|
*string = '\0';
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
return replacement_size;
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Return a copy of the current line with one needle replaced. */
|
2004-02-24 20:41:39 +00:00
|
|
|
char *replace_line(const char *needle)
|
2000-07-07 01:49:52 +00:00
|
|
|
{
|
2004-02-24 20:41:39 +00:00
|
|
|
char *copy;
|
2015-07-26 17:29:34 +00:00
|
|
|
size_t match_len;
|
|
|
|
size_t new_line_size = strlen(openfile->current->data) + 1;
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
/* First adjust the size of the new line for the change. */
|
2000-07-07 01:49:52 +00:00
|
|
|
if (ISSET(USE_REGEXP)) {
|
2015-07-26 17:29:34 +00:00
|
|
|
match_len = regmatches[0].rm_eo - regmatches[0].rm_so;
|
|
|
|
new_line_size += replace_regexp(NULL, FALSE) - match_len;
|
2000-07-07 01:49:52 +00:00
|
|
|
} else {
|
2015-07-26 17:29:34 +00:00
|
|
|
match_len = strlen(needle);
|
|
|
|
new_line_size += strlen(answer) - match_len;
|
2000-07-07 01:49:52 +00:00
|
|
|
}
|
2000-10-26 01:44:42 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Create the buffer. */
|
2001-05-17 11:35:43 +00:00
|
|
|
copy = charalloc(new_line_size);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Copy the head of the original line. */
|
2005-07-08 20:09:16 +00:00
|
|
|
strncpy(copy, openfile->current->data, openfile->current_x);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Add the replacement text. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (ISSET(USE_REGEXP))
|
2005-07-08 20:09:16 +00:00
|
|
|
replace_regexp(copy + openfile->current_x, TRUE);
|
2000-07-07 01:49:52 +00:00
|
|
|
else
|
2005-07-08 20:09:16 +00:00
|
|
|
strcpy(copy + openfile->current_x, answer);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
2015-07-26 17:29:34 +00:00
|
|
|
assert(openfile->current_x + match_len <= strlen(openfile->current->data));
|
2005-05-26 03:32:41 +00:00
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Copy the tail of the original line. */
|
2015-07-26 17:29:34 +00:00
|
|
|
strcat(copy, openfile->current->data + openfile->current_x + match_len);
|
2000-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
return copy;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2016-07-27 07:23:49 +00:00
|
|
|
/* Step through each occurrence of the search string and prompt the user
|
|
|
|
* before replacing it. We seek for needle, and replace it with answer.
|
|
|
|
* The parameters real_current and real_current_x are needed in order to
|
2004-10-08 23:06:01 +00:00
|
|
|
* allow the cursor position to be updated when a word before the cursor
|
2016-07-27 07:23:49 +00:00
|
|
|
* is replaced by a shorter word. Return -1 if needle isn't found, -2 if
|
|
|
|
* the seeking is aborted, else the number of replacements performed. */
|
2016-10-23 15:59:26 +00:00
|
|
|
ssize_t do_replace_loop(const char *needle, bool whole_word_only,
|
|
|
|
const filestruct *real_current, size_t *real_current_x)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2004-10-18 22:19:22 +00:00
|
|
|
ssize_t numreplaced = -1;
|
|
|
|
size_t match_len;
|
2004-08-27 20:28:34 +00:00
|
|
|
bool replaceall = FALSE;
|
2017-01-24 21:37:37 +00:00
|
|
|
bool skipone = FALSE;
|
2017-10-26 17:15:11 +00:00
|
|
|
int modus = REPLACING;
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-04-11 15:21:08 +00:00
|
|
|
filestruct *top, *bot;
|
2004-11-03 22:03:41 +00:00
|
|
|
size_t top_x, bot_x;
|
2017-10-26 17:15:11 +00:00
|
|
|
bool mark_was_set = openfile->mark_set;
|
2004-11-03 22:03:41 +00:00
|
|
|
bool right_side_up = FALSE;
|
2005-07-12 17:40:16 +00:00
|
|
|
/* TRUE if (mark_begin, mark_begin_x) is the top of the mark,
|
2004-11-03 22:03:41 +00:00
|
|
|
* FALSE if (current, current_x) is. */
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2016-07-27 07:23:49 +00:00
|
|
|
/* If the mark is on, frame the region, and turn the mark off. */
|
2017-02-10 13:07:42 +00:00
|
|
|
if (mark_was_set) {
|
2004-11-03 22:03:41 +00:00
|
|
|
mark_order((const filestruct **)&top, &top_x,
|
2016-06-14 09:06:04 +00:00
|
|
|
(const filestruct **)&bot, &bot_x, &right_side_up);
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->mark_set = FALSE;
|
2017-10-26 17:15:11 +00:00
|
|
|
modus = INREGION;
|
2015-04-11 15:21:08 +00:00
|
|
|
|
|
|
|
/* Start either at the top or the bottom of the marked region. */
|
|
|
|
if (!ISSET(BACKWARDS_SEARCH)) {
|
|
|
|
openfile->current = top;
|
2017-01-26 20:36:13 +00:00
|
|
|
openfile->current_x = top_x;
|
2015-04-11 15:21:08 +00:00
|
|
|
} else {
|
|
|
|
openfile->current = bot;
|
|
|
|
openfile->current_x = bot_x;
|
|
|
|
}
|
2004-10-08 23:06:01 +00:00
|
|
|
}
|
2014-03-17 14:15:57 +00:00
|
|
|
#endif /* !NANO_TINY */
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2016-05-01 11:38:54 +00:00
|
|
|
came_full_circle = FALSE;
|
2016-05-01 10:59:32 +00:00
|
|
|
|
2016-03-30 12:00:48 +00:00
|
|
|
while (TRUE) {
|
|
|
|
int i = 0;
|
2017-10-26 17:15:11 +00:00
|
|
|
int result = findnextstr(needle, whole_word_only, modus,
|
2017-02-10 12:51:51 +00:00
|
|
|
&match_len, skipone, real_current, *real_current_x);
|
2016-03-30 12:00:48 +00:00
|
|
|
|
|
|
|
/* If nothing more was found, or the user aborted, stop looping. */
|
|
|
|
if (result < 1) {
|
|
|
|
if (result < 0)
|
|
|
|
numreplaced = -2; /* It's a Cancel instead of Not found. */
|
|
|
|
break;
|
|
|
|
}
|
2004-10-09 16:26:32 +00:00
|
|
|
|
2015-04-11 15:21:08 +00:00
|
|
|
#ifndef NANO_TINY
|
2017-02-10 13:07:42 +00:00
|
|
|
/* An occurrence outside of the marked region means we're done. */
|
|
|
|
if (mark_was_set && (openfile->current->lineno > bot->lineno ||
|
|
|
|
openfile->current->lineno < top->lineno ||
|
|
|
|
(openfile->current == bot &&
|
|
|
|
openfile->current_x + match_len > bot_x) ||
|
|
|
|
(openfile->current == top &&
|
|
|
|
openfile->current_x < top_x)))
|
|
|
|
break;
|
2015-04-11 15:21:08 +00:00
|
|
|
#endif
|
|
|
|
|
2005-06-13 05:16:55 +00:00
|
|
|
/* Indicate that we found the search string. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (numreplaced == -1)
|
|
|
|
numreplaced = 0;
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2000-11-29 04:33:26 +00:00
|
|
|
if (!replaceall) {
|
2017-03-06 07:34:45 +00:00
|
|
|
size_t from_col = xplustabs();
|
|
|
|
size_t to_col = strnlenpt(openfile->current->data,
|
|
|
|
openfile->current_x + match_len);
|
2003-09-16 01:16:49 +00:00
|
|
|
|
2016-02-18 16:31:02 +00:00
|
|
|
/* Refresh the edit window, scrolling it if necessary. */
|
2015-03-27 11:29:23 +00:00
|
|
|
edit_refresh();
|
|
|
|
|
2017-03-06 07:34:45 +00:00
|
|
|
spotlight(TRUE, from_col, to_col);
|
2000-11-29 04:33:26 +00:00
|
|
|
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: This is a prompt. */
|
2005-11-07 21:45:44 +00:00
|
|
|
i = do_yesno_prompt(TRUE, _("Replace this instance?"));
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2017-03-06 07:34:45 +00:00
|
|
|
spotlight(FALSE, from_col, to_col);
|
2005-06-15 19:15:14 +00:00
|
|
|
|
2016-03-29 15:05:47 +00:00
|
|
|
if (i == -1) /* The replacing was cancelled. */
|
2003-12-29 02:15:23 +00:00
|
|
|
break;
|
2016-12-22 16:08:10 +00:00
|
|
|
else if (i == 2)
|
|
|
|
replaceall = TRUE;
|
2017-01-24 21:37:37 +00:00
|
|
|
|
|
|
|
/* When "No" or moving backwards, the search routine should
|
|
|
|
* first move one character further before continuing. */
|
|
|
|
skipone = (i == 0 || ISSET(BACKWARDS_SEARCH));
|
2000-11-29 04:33:26 +00:00
|
|
|
}
|
|
|
|
|
2016-12-22 16:08:10 +00:00
|
|
|
if (i == 1 || replaceall) { /* Yes, replace it. */
|
2005-07-18 19:29:27 +00:00
|
|
|
char *copy;
|
2004-10-30 01:16:08 +00:00
|
|
|
size_t length_change;
|
2003-01-26 04:26:25 +00:00
|
|
|
|
2008-08-02 22:31:01 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-04-11 15:21:08 +00:00
|
|
|
add_undo(REPLACE);
|
2008-08-02 22:31:01 +00:00
|
|
|
#endif
|
2005-07-18 19:29:27 +00:00
|
|
|
copy = replace_line(needle);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2015-03-27 10:49:19 +00:00
|
|
|
length_change = strlen(copy) - strlen(openfile->current->data);
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-11-07 09:49:34 +00:00
|
|
|
/* If the mark was on and it was located after the cursor,
|
|
|
|
* then adjust its x position for any text length changes. */
|
2017-02-10 13:07:42 +00:00
|
|
|
if (mark_was_set && !right_side_up) {
|
2005-07-12 17:40:16 +00:00
|
|
|
if (openfile->current == openfile->mark_begin &&
|
|
|
|
openfile->mark_begin_x > openfile->current_x) {
|
2015-11-07 09:49:34 +00:00
|
|
|
if (openfile->mark_begin_x < openfile->current_x + match_len)
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->mark_begin_x = openfile->current_x;
|
2004-11-03 22:03:41 +00:00
|
|
|
else
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->mark_begin_x += length_change;
|
2015-04-11 15:21:08 +00:00
|
|
|
bot_x = openfile->mark_begin_x;
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
2003-01-26 04:26:25 +00:00
|
|
|
}
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2015-11-07 09:49:34 +00:00
|
|
|
/* If the mark was not on or it was before the cursor, then
|
|
|
|
* adjust the cursor's x position for any text length changes. */
|
2017-02-10 13:07:42 +00:00
|
|
|
if (!mark_was_set || right_side_up) {
|
2004-11-03 22:03:41 +00:00
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
if (openfile->current == real_current &&
|
2017-01-24 15:42:42 +00:00
|
|
|
openfile->current_x < *real_current_x) {
|
2015-03-27 10:49:19 +00:00
|
|
|
if (*real_current_x < openfile->current_x + match_len)
|
|
|
|
*real_current_x = openfile->current_x + match_len;
|
2004-11-03 22:03:41 +00:00
|
|
|
*real_current_x += length_change;
|
2015-04-13 10:59:12 +00:00
|
|
|
#ifndef NANO_TINY
|
2015-04-11 15:21:08 +00:00
|
|
|
bot_x = *real_current_x;
|
2004-11-03 22:03:41 +00:00
|
|
|
}
|
2004-11-05 14:37:18 +00:00
|
|
|
#endif
|
2015-04-13 10:59:12 +00:00
|
|
|
}
|
2002-02-16 20:03:44 +00:00
|
|
|
|
2016-07-27 07:04:06 +00:00
|
|
|
/* Don't find the same zero-length or BOL match again. */
|
|
|
|
if (match_len == 0 || (*needle == '^' && ISSET(USE_REGEXP)))
|
2017-01-24 21:37:37 +00:00
|
|
|
skipone = TRUE;
|
2017-02-21 22:04:39 +00:00
|
|
|
|
2017-01-24 21:37:37 +00:00
|
|
|
/* When moving forward, put the cursor just after the replacement
|
|
|
|
* text, so that searching will continue there. */
|
2005-06-16 18:48:30 +00:00
|
|
|
if (!ISSET(BACKWARDS_SEARCH))
|
2017-01-24 21:37:37 +00:00
|
|
|
openfile->current_x += match_len + length_change;
|
2002-02-16 20:03:44 +00:00
|
|
|
|
2015-07-26 17:04:29 +00:00
|
|
|
/* Update the file size, and put the changed line into place. */
|
|
|
|
openfile->totsize += mbstrlen(copy) - mbstrlen(openfile->current->data);
|
2005-07-08 20:09:16 +00:00
|
|
|
free(openfile->current->data);
|
|
|
|
openfile->current->data = copy;
|
2000-10-24 22:25:36 +00:00
|
|
|
|
2004-05-28 20:44:09 +00:00
|
|
|
if (!replaceall) {
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2016-12-02 16:37:11 +00:00
|
|
|
/* When doing syntax coloring, the replacement might require
|
|
|
|
* a change of colors, so refresh the whole edit window. */
|
2016-01-26 09:16:09 +00:00
|
|
|
if (openfile->colorstrings != NULL && !ISSET(NO_COLOR_SYNTAX))
|
2004-05-28 20:44:09 +00:00
|
|
|
edit_refresh();
|
|
|
|
else
|
|
|
|
#endif
|
2005-07-08 20:09:16 +00:00
|
|
|
update_line(openfile->current, openfile->current_x);
|
2004-05-28 20:44:09 +00:00
|
|
|
}
|
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
set_modified();
|
2016-12-20 18:27:41 +00:00
|
|
|
as_an_at = TRUE;
|
2000-06-19 04:22:15 +00:00
|
|
|
numreplaced++;
|
2003-12-29 02:15:23 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2015-04-11 15:21:08 +00:00
|
|
|
if (numreplaced == -1)
|
|
|
|
not_found_msg(needle);
|
2017-02-13 18:11:04 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
|
|
|
else if (numreplaced > 0)
|
|
|
|
refresh_needed = TRUE;
|
|
|
|
#endif
|
2015-04-11 15:21:08 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2017-02-10 13:07:42 +00:00
|
|
|
if (mark_was_set)
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->mark_set = TRUE;
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-05 17:35:44 +00:00
|
|
|
/* If the NO_NEWLINES flag isn't set, and text has been added to the
|
|
|
|
* magicline, make a new magicline. */
|
|
|
|
if (!ISSET(NO_NEWLINES) && openfile->filebot->data[0] != '\0')
|
2004-11-03 22:03:41 +00:00
|
|
|
new_magicline();
|
|
|
|
|
2000-11-05 16:52:21 +00:00
|
|
|
return numreplaced;
|
|
|
|
}
|
|
|
|
|
2003-01-13 01:35:15 +00:00
|
|
|
/* Replace a string. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_replace(void)
|
2000-11-05 16:52:21 +00:00
|
|
|
{
|
2004-02-24 20:41:39 +00:00
|
|
|
filestruct *edittop_save, *begin;
|
2017-01-25 06:35:01 +00:00
|
|
|
size_t firstcolumn_save, begin_x;
|
2004-10-18 22:19:22 +00:00
|
|
|
ssize_t numreplaced;
|
2005-07-16 22:35:11 +00:00
|
|
|
int i;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2001-04-22 07:10:21 +00:00
|
|
|
if (ISSET(VIEW_MODE)) {
|
|
|
|
print_view_warning();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2001-04-22 07:10:21 +00:00
|
|
|
}
|
|
|
|
|
2004-10-04 22:37:56 +00:00
|
|
|
i = search_init(TRUE, FALSE);
|
2016-03-17 10:06:15 +00:00
|
|
|
|
|
|
|
if (i == -1) /* Cancelled, or some other exit reason. */
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == -2) /* Do a search instead. */
|
2000-11-05 16:52:21 +00:00
|
|
|
do_search();
|
2016-03-17 10:06:15 +00:00
|
|
|
else if (i == 1) /* Toggled something. */
|
2004-02-24 20:41:39 +00:00
|
|
|
do_replace();
|
|
|
|
|
|
|
|
if (i != 0)
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2017-10-29 10:34:53 +00:00
|
|
|
i = do_prompt(FALSE, FALSE, MREPLACEWITH, NULL, &replace_history,
|
2016-08-26 10:18:04 +00:00
|
|
|
/* TRANSLATORS: This is a prompt. */
|
|
|
|
edit_refresh, _("Replace with"));
|
2003-01-05 21:47:06 +00:00
|
|
|
|
2017-10-29 18:42:12 +00:00
|
|
|
#ifdef ENABLE_HISTORIES
|
2015-03-21 21:40:56 +00:00
|
|
|
/* If the replace string is not "", add it to the replace history list. */
|
2004-02-24 20:41:39 +00:00
|
|
|
if (i == 0)
|
2005-06-02 18:41:31 +00:00
|
|
|
update_history(&replace_history, answer);
|
2004-02-24 20:41:39 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-19 20:19:49 +00:00
|
|
|
/* When cancelled, or when a function was run, get out. */
|
|
|
|
if (i == -1 || i > 0) {
|
|
|
|
if (i == -1)
|
2004-08-26 04:22:54 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2004-02-24 20:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save where we are. */
|
2005-07-08 20:09:16 +00:00
|
|
|
edittop_save = openfile->edittop;
|
2017-01-25 06:35:01 +00:00
|
|
|
firstcolumn_save = openfile->firstcolumn;
|
2005-07-08 20:09:16 +00:00
|
|
|
begin = openfile->current;
|
2005-07-12 17:40:16 +00:00
|
|
|
begin_x = openfile->current_x;
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2016-10-23 15:59:26 +00:00
|
|
|
numreplaced = do_replace_loop(last_search, FALSE, begin, &begin_x);
|
2000-11-05 16:52:21 +00:00
|
|
|
|
2004-02-24 20:41:39 +00:00
|
|
|
/* Restore where we were. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->edittop = edittop_save;
|
2017-01-25 06:35:01 +00:00
|
|
|
openfile->firstcolumn = firstcolumn_save;
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = begin;
|
2005-07-12 17:40:16 +00:00
|
|
|
openfile->current_x = begin_x;
|
2016-12-03 16:00:28 +00:00
|
|
|
refresh_needed = TRUE;
|
2003-01-13 01:35:15 +00:00
|
|
|
|
|
|
|
if (numreplaced >= 0)
|
2016-04-30 15:31:43 +00:00
|
|
|
statusline(HUSH, P_("Replaced %lu occurrence",
|
2005-06-14 23:36:13 +00:00
|
|
|
"Replaced %lu occurrences", (unsigned long)numreplaced),
|
|
|
|
(unsigned long)numreplaced);
|
2003-01-13 01:35:15 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
search_replace_abort();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 20:00:46 +00:00
|
|
|
/* Go to the specified line and x position. */
|
|
|
|
void goto_line_posx(ssize_t line, size_t pos_x)
|
|
|
|
{
|
2015-12-08 18:54:13 +00:00
|
|
|
for (openfile->current = openfile->fileage; line > 1 &&
|
|
|
|
openfile->current != openfile->filebot; line--)
|
2014-05-15 20:00:46 +00:00
|
|
|
openfile->current = openfile->current->next;
|
|
|
|
|
|
|
|
openfile->current_x = pos_x;
|
|
|
|
openfile->placewewant = xplustabs();
|
|
|
|
|
2016-04-25 19:14:18 +00:00
|
|
|
refresh_needed = TRUE;
|
2014-05-15 20:00:46 +00:00
|
|
|
}
|
|
|
|
|
2005-05-25 18:44:37 +00:00
|
|
|
/* Go to the specified line and column, or ask for them if interactive
|
2015-12-31 19:20:40 +00:00
|
|
|
* is TRUE. In the latter case also update the screen afterwards.
|
2015-12-31 17:20:46 +00:00
|
|
|
* Note that both the line and column number should be one-based. */
|
2005-06-29 00:17:18 +00:00
|
|
|
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
2015-12-31 19:20:40 +00:00
|
|
|
bool interactive)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-16 07:06:36 +00:00
|
|
|
if (interactive) {
|
2014-07-02 19:12:38 +00:00
|
|
|
functionptrtype func;
|
2005-07-16 07:06:36 +00:00
|
|
|
|
2007-01-01 05:15:32 +00:00
|
|
|
/* Ask for the line and column. */
|
2017-01-02 20:12:44 +00:00
|
|
|
int i = do_prompt(FALSE, FALSE, MGOTOLINE,
|
2017-10-29 10:34:53 +00:00
|
|
|
use_answer ? answer : NULL, NULL,
|
2014-05-28 14:34:11 +00:00
|
|
|
/* TRANSLATORS: This is a prompt. */
|
2006-02-18 21:32:29 +00:00
|
|
|
edit_refresh, _("Enter line number, column number"));
|
2004-03-15 20:26:30 +00:00
|
|
|
|
2016-06-21 14:47:11 +00:00
|
|
|
/* If the user cancelled or gave a blank answer, get out. */
|
2004-10-04 16:01:37 +00:00
|
|
|
if (i < 0) {
|
2004-09-28 15:06:15 +00:00
|
|
|
statusbar(_("Cancelled"));
|
2004-09-30 22:07:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-02 19:12:38 +00:00
|
|
|
func = func_from_key(&i);
|
2008-03-13 08:23:52 +00:00
|
|
|
|
2014-07-02 19:12:38 +00:00
|
|
|
if (func == gototext_void) {
|
2016-06-21 14:47:11 +00:00
|
|
|
/* Retain what the user typed so far and switch to searching. */
|
2004-10-04 22:37:56 +00:00
|
|
|
search_init(TRUE, TRUE);
|
2004-10-04 16:01:37 +00:00
|
|
|
do_search();
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2001-04-20 01:59:55 +00:00
|
|
|
|
2016-06-21 14:47:11 +00:00
|
|
|
/* If a function was executed, we're done here. */
|
|
|
|
if (i > 0)
|
|
|
|
return;
|
|
|
|
|
2016-06-20 20:13:14 +00:00
|
|
|
/* Try to extract one or two numbers from the user's response. */
|
|
|
|
if (!parse_line_column(answer, &line, &column)) {
|
2017-01-17 13:17:42 +00:00
|
|
|
statusline(ALERT, _("Invalid line or column number"));
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2005-05-17 18:06:26 +00:00
|
|
|
} else {
|
2017-06-23 08:25:12 +00:00
|
|
|
if (line == 0)
|
2005-07-08 20:09:16 +00:00
|
|
|
line = openfile->current->lineno;
|
2005-05-17 18:06:26 +00:00
|
|
|
|
2017-06-23 08:25:12 +00:00
|
|
|
if (column == 0)
|
2005-07-08 20:09:16 +00:00
|
|
|
column = openfile->placewewant + 1;
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2016-06-20 20:13:14 +00:00
|
|
|
/* Take a negative line number to mean: from the end of the file. */
|
|
|
|
if (line < 0)
|
|
|
|
line = openfile->filebot->lineno + line + 1;
|
|
|
|
if (line < 1)
|
|
|
|
line = 1;
|
|
|
|
|
|
|
|
/* Iterate to the requested line. */
|
2016-01-13 20:32:40 +00:00
|
|
|
for (openfile->current = openfile->fileage; line > 1 &&
|
|
|
|
openfile->current != openfile->filebot; line--)
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = openfile->current->next;
|
2000-06-19 04:22:15 +00:00
|
|
|
|
2016-06-20 20:13:14 +00:00
|
|
|
/* Take a negative column number to mean: from the end of the line. */
|
|
|
|
if (column < 0)
|
|
|
|
column = strlenpt(openfile->current->data) + column + 2;
|
|
|
|
if (column < 1)
|
|
|
|
column = 1;
|
|
|
|
|
|
|
|
/* Set the x position that corresponds to the requested column. */
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current_x = actual_x(openfile->current->data, column - 1);
|
|
|
|
openfile->placewewant = column - 1;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2017-05-11 08:52:39 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (ISSET(SOFTWRAP) && openfile->placewewant / editwincols >
|
|
|
|
strlenpt(openfile->current->data) / editwincols)
|
|
|
|
openfile->placewewant = strlenpt(openfile->current->data);
|
|
|
|
#endif
|
|
|
|
|
2016-05-06 19:57:25 +00:00
|
|
|
/* When the position was manually given, center the target line. */
|
2017-01-15 20:38:35 +00:00
|
|
|
if (interactive) {
|
2016-10-20 19:11:11 +00:00
|
|
|
adjust_viewport(CENTERING);
|
|
|
|
refresh_needed = TRUE;
|
2016-05-06 19:57:25 +00:00
|
|
|
} else {
|
2017-01-15 20:38:35 +00:00
|
|
|
int rows_from_tail;
|
|
|
|
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
if (ISSET(SOFTWRAP)) {
|
|
|
|
filestruct *line = openfile->current;
|
2017-07-09 19:07:38 +00:00
|
|
|
size_t leftedge = leftedge_for(xplustabs(), openfile->current);
|
2017-01-15 20:38:35 +00:00
|
|
|
|
|
|
|
rows_from_tail = (editwinrows / 2) -
|
|
|
|
go_forward_chunks(editwinrows / 2, &line, &leftedge);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
rows_from_tail = openfile->filebot->lineno -
|
|
|
|
openfile->current->lineno;
|
|
|
|
|
2016-05-06 19:57:25 +00:00
|
|
|
/* If the target line is close to the tail of the file, put the last
|
2017-01-15 20:38:35 +00:00
|
|
|
* line or chunk on the bottom line of the screen; otherwise, just
|
2016-05-06 19:57:25 +00:00
|
|
|
* center the target line. */
|
2017-07-18 19:15:35 +00:00
|
|
|
if (rows_from_tail < editwinrows / 2 && ISSET(SMOOTH_SCROLL)) {
|
2017-01-15 20:38:35 +00:00
|
|
|
openfile->current_y = editwinrows - 1 - rows_from_tail;
|
2016-10-20 19:11:11 +00:00
|
|
|
adjust_viewport(STATIONARY);
|
2016-05-06 19:57:25 +00:00
|
|
|
} else
|
2016-10-20 19:11:11 +00:00
|
|
|
adjust_viewport(CENTERING);
|
2014-02-24 10:18:15 +00:00
|
|
|
}
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
/* Go to the specified line and column, asking for them beforehand. */
|
2005-05-17 18:06:26 +00:00
|
|
|
void do_gotolinecolumn_void(void)
|
2000-06-19 04:22:15 +00:00
|
|
|
{
|
2005-07-08 20:09:16 +00:00
|
|
|
do_gotolinecolumn(openfile->current->lineno,
|
2015-12-31 19:20:40 +00:00
|
|
|
openfile->placewewant + 1, FALSE, TRUE);
|
2000-06-19 04:22:15 +00:00
|
|
|
}
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-11-15 23:45:29 +00:00
|
|
|
/* Search for a match to one of the two characters in bracket_set. If
|
2005-12-08 07:09:08 +00:00
|
|
|
* reverse is TRUE, search backwards for the leftmost bracket.
|
|
|
|
* Otherwise, search forwards for the rightmost bracket. Return TRUE if
|
|
|
|
* we found a match, and FALSE otherwise. */
|
2005-11-15 23:45:29 +00:00
|
|
|
bool find_bracket_match(bool reverse, const char *bracket_set)
|
|
|
|
{
|
|
|
|
filestruct *fileptr = openfile->current;
|
|
|
|
const char *rev_start = NULL, *found = NULL;
|
|
|
|
|
2006-01-06 07:10:30 +00:00
|
|
|
assert(mbstrlen(bracket_set) == 2);
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
/* rev_start might end up 1 character before the start or after the
|
|
|
|
* end of the line. This won't be a problem because we'll skip over
|
|
|
|
* it below in that case, and rev_start will be properly set when
|
|
|
|
* the search continues on the previous or next line. */
|
2016-04-16 10:44:52 +00:00
|
|
|
if (reverse)
|
|
|
|
rev_start = fileptr->data + (openfile->current_x - 1);
|
|
|
|
else
|
|
|
|
rev_start = fileptr->data + (openfile->current_x + 1);
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
/* Look for either of the two characters in bracket_set. rev_start
|
|
|
|
* can be 1 character before the start or after the end of the line.
|
|
|
|
* In either case, just act as though no match is found. */
|
|
|
|
while (TRUE) {
|
2016-04-16 10:44:52 +00:00
|
|
|
if ((rev_start > fileptr->data && *(rev_start - 1) == '\0') ||
|
|
|
|
rev_start < fileptr->data)
|
|
|
|
found = NULL;
|
|
|
|
else if (reverse)
|
|
|
|
found = mbrevstrpbrk(fileptr->data, bracket_set, rev_start);
|
|
|
|
else
|
|
|
|
found = mbstrpbrk(rev_start, bracket_set);
|
2005-11-15 23:45:29 +00:00
|
|
|
|
2016-04-16 10:44:52 +00:00
|
|
|
if (found)
|
2005-11-15 23:45:29 +00:00
|
|
|
break;
|
|
|
|
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
if (reverse)
|
2005-11-15 23:45:29 +00:00
|
|
|
fileptr = fileptr->prev;
|
searching: don't keep track of current_y, but calculate it at the end
Stop keeping track of the vertical screen position when searching for
something. If nothing is found, current_y doesn't change, and all the
incrementing/decrementing was a waste of time. If something is found
and it is onscreen, it is easy to calculate the new current_y. And if
something is found and it is offscreen, then current_y is irrelevant,
because we will be either centering the found occurrence (searching)
or putting it on the top or bottom line (bracket matching).
(The above does not take softwrapping into account, but neither did
the old code, so this doesn't introduce any new bugs.)
(Also, when the search wraps, and the viewport is away from head or
tail of the file, and the found occurrence is within the viewport,
then the incremented/decremented current_y would be way wrong, but
this didn't have any adverse effects as far as I could tell. It
seems that current_y is irrelevant in most cases.)
2016-04-08 16:11:22 +00:00
|
|
|
else
|
2005-11-15 23:45:29 +00:00
|
|
|
fileptr = fileptr->next;
|
|
|
|
|
2016-04-16 10:44:52 +00:00
|
|
|
/* If we've reached the start or end of the buffer, get out. */
|
2005-11-15 23:45:29 +00:00
|
|
|
if (fileptr == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
rev_start = fileptr->data;
|
|
|
|
if (reverse)
|
|
|
|
rev_start += strlen(fileptr->data);
|
|
|
|
}
|
|
|
|
|
2016-04-16 10:44:52 +00:00
|
|
|
/* Set the current position to the found matching bracket. */
|
2005-11-15 23:45:29 +00:00
|
|
|
openfile->current = fileptr;
|
2005-11-16 03:54:22 +00:00
|
|
|
openfile->current_x = found - fileptr->data;
|
2005-11-15 23:45:29 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search for a match to the bracket at the current cursor position, if
|
|
|
|
* there is one. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_find_bracket(void)
|
2001-09-22 22:14:25 +00:00
|
|
|
{
|
2005-07-21 02:20:01 +00:00
|
|
|
filestruct *current_save;
|
2016-04-10 09:14:03 +00:00
|
|
|
size_t current_x_save;
|
2006-01-06 07:10:30 +00:00
|
|
|
const char *ch;
|
2006-01-06 21:51:10 +00:00
|
|
|
/* The location in matchbrackets of the bracket at the current
|
2005-11-15 23:45:29 +00:00
|
|
|
* cursor position. */
|
2006-01-06 07:10:30 +00:00
|
|
|
int ch_len;
|
|
|
|
/* The length of ch in bytes. */
|
|
|
|
const char *wanted_ch;
|
2006-01-06 21:51:10 +00:00
|
|
|
/* The location in matchbrackets of the bracket complementing
|
|
|
|
* the bracket at the current cursor position. */
|
2006-01-06 07:10:30 +00:00
|
|
|
int wanted_ch_len;
|
|
|
|
/* The length of wanted_ch in bytes. */
|
2017-04-02 18:03:12 +00:00
|
|
|
char bracket_set[MAXCHARLEN * 2 + 1];
|
2005-11-15 23:45:29 +00:00
|
|
|
/* The pair of characters in ch and wanted_ch. */
|
2006-01-06 22:35:52 +00:00
|
|
|
size_t i;
|
|
|
|
/* Generic loop variable. */
|
2006-01-06 21:51:10 +00:00
|
|
|
size_t matchhalf;
|
2006-01-06 22:35:52 +00:00
|
|
|
/* The number of single-byte characters in one half of
|
|
|
|
* matchbrackets. */
|
|
|
|
size_t mbmatchhalf;
|
|
|
|
/* The number of multibyte characters in one half of
|
|
|
|
* matchbrackets. */
|
2005-11-15 23:45:29 +00:00
|
|
|
size_t count = 1;
|
|
|
|
/* The initial bracket count. */
|
|
|
|
bool reverse;
|
|
|
|
/* The direction we search. */
|
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
assert(mbstrlen(matchbrackets) % 2 == 0);
|
2001-09-22 22:14:25 +00:00
|
|
|
|
2006-01-06 07:10:30 +00:00
|
|
|
ch = openfile->current->data + openfile->current_x;
|
2003-01-05 20:41:21 +00:00
|
|
|
|
2015-08-13 17:46:19 +00:00
|
|
|
if ((ch = mbstrchr(matchbrackets, ch)) == NULL) {
|
2001-09-22 22:14:25 +00:00
|
|
|
statusbar(_("Not a bracket"));
|
2004-07-02 14:31:03 +00:00
|
|
|
return;
|
2001-09-22 22:14:25 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 02:20:01 +00:00
|
|
|
/* Save where we are. */
|
2005-07-08 20:09:16 +00:00
|
|
|
current_save = openfile->current;
|
|
|
|
current_x_save = openfile->current_x;
|
2005-07-21 02:20:01 +00:00
|
|
|
|
2006-01-06 07:10:30 +00:00
|
|
|
/* If we're on an opening bracket, which must be in the first half
|
2006-01-06 21:51:10 +00:00
|
|
|
* of matchbrackets, we want to search forwards for a closing
|
2006-01-06 07:10:30 +00:00
|
|
|
* bracket. If we're on a closing bracket, which must be in the
|
2006-01-06 21:51:10 +00:00
|
|
|
* second half of matchbrackets, we want to search backwards for an
|
2006-01-06 07:10:30 +00:00
|
|
|
* opening bracket. */
|
2006-01-06 22:35:52 +00:00
|
|
|
matchhalf = 0;
|
|
|
|
mbmatchhalf = mbstrlen(matchbrackets) / 2;
|
|
|
|
|
|
|
|
for (i = 0; i < mbmatchhalf; i++)
|
2016-03-17 19:30:29 +00:00
|
|
|
matchhalf += parse_mbchar(matchbrackets + matchhalf, NULL, NULL);
|
2006-01-06 22:35:52 +00:00
|
|
|
|
2006-01-28 06:04:59 +00:00
|
|
|
reverse = ((ch - matchbrackets) >= matchhalf);
|
2006-01-06 07:10:30 +00:00
|
|
|
|
|
|
|
/* If we're on an opening bracket, set wanted_ch to the character
|
2006-01-06 21:51:10 +00:00
|
|
|
* that's matchhalf characters after ch. If we're on a closing
|
|
|
|
* bracket, set wanted_ch to the character that's matchhalf
|
|
|
|
* characters before ch. */
|
2006-01-06 07:10:30 +00:00
|
|
|
wanted_ch = ch;
|
|
|
|
|
2006-01-06 22:35:52 +00:00
|
|
|
while (mbmatchhalf > 0) {
|
2006-01-06 07:10:30 +00:00
|
|
|
if (reverse)
|
2006-01-06 21:51:10 +00:00
|
|
|
wanted_ch = matchbrackets + move_mbleft(matchbrackets,
|
2016-03-17 19:30:29 +00:00
|
|
|
wanted_ch - matchbrackets);
|
2006-01-06 07:10:30 +00:00
|
|
|
else
|
|
|
|
wanted_ch += move_mbright(wanted_ch, 0);
|
|
|
|
|
2006-01-06 22:35:52 +00:00
|
|
|
mbmatchhalf--;
|
2006-01-06 07:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ch_len = parse_mbchar(ch, NULL, NULL);
|
|
|
|
wanted_ch_len = parse_mbchar(wanted_ch, NULL, NULL);
|
|
|
|
|
|
|
|
/* Fill bracket_set in with the values of ch and wanted_ch. */
|
|
|
|
strncpy(bracket_set, ch, ch_len);
|
|
|
|
strncpy(bracket_set + ch_len, wanted_ch, wanted_ch_len);
|
2017-03-20 12:01:37 +00:00
|
|
|
bracket_set[ch_len + wanted_ch_len] = '\0';
|
2006-01-06 07:10:30 +00:00
|
|
|
|
2004-03-15 20:26:30 +00:00
|
|
|
while (TRUE) {
|
2005-11-15 23:45:29 +00:00
|
|
|
if (find_bracket_match(reverse, bracket_set)) {
|
2005-07-21 02:20:01 +00:00
|
|
|
/* If we found an identical bracket, increment count. If we
|
|
|
|
* found a complementary bracket, decrement it. */
|
2017-04-02 18:03:12 +00:00
|
|
|
count += (strncmp(openfile->current->data + openfile->current_x,
|
|
|
|
ch, ch_len) == 0) ? 1 : -1;
|
2005-07-21 02:20:01 +00:00
|
|
|
|
|
|
|
/* If count is zero, we've found a matching bracket. Update
|
|
|
|
* the screen and get out. */
|
|
|
|
if (count == 0) {
|
2017-08-18 19:46:14 +00:00
|
|
|
edit_redraw(current_save, FLOWING);
|
2004-02-24 20:41:39 +00:00
|
|
|
break;
|
2001-09-22 22:14:25 +00:00
|
|
|
}
|
2003-01-13 01:35:15 +00:00
|
|
|
} else {
|
2005-07-21 02:20:01 +00:00
|
|
|
/* We didn't find either an opening or closing bracket.
|
|
|
|
* Indicate this, restore where we were, and get out. */
|
2001-09-22 22:14:25 +00:00
|
|
|
statusbar(_("No matching bracket"));
|
2005-07-08 20:09:16 +00:00
|
|
|
openfile->current = current_save;
|
|
|
|
openfile->current_x = current_x_save;
|
2001-09-22 22:14:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-19 20:05:24 +00:00
|
|
|
#endif /* !NANO_TINY */
|