in search_init(), when we're replacing and the mark is on, display a
prompt indicating that we're replacing text only in the selection instead of the usual prompt git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2051 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
40bdb686aa
commit
e1ee22fba2
|
@ -229,6 +229,9 @@ CVS code -
|
||||||
the search prompt to the "Go To Line" prompt, since the
|
the search prompt to the "Go To Line" prompt, since the
|
||||||
toggling works both ways now and non-numeric text shouldn't be
|
toggling works both ways now and non-numeric text shouldn't be
|
||||||
lost when going only one of those ways. (DLR)
|
lost when going only one of those ways. (DLR)
|
||||||
|
- When we're replacing and the mark is on, display a prompt
|
||||||
|
indicating that we're replacing text only in the selection
|
||||||
|
instead of the usual prompt. (DLR)
|
||||||
findnextstr()
|
findnextstr()
|
||||||
- Take the no_sameline parameter after can_display_wrap and
|
- Take the no_sameline parameter after can_display_wrap and
|
||||||
wholewords, not after all other parameters. (DLR)
|
wholewords, not after all other parameters. (DLR)
|
||||||
|
|
11
src/search.c
11
src/search.c
|
@ -188,7 +188,16 @@ int search_init(bool replacing, bool use_answer)
|
||||||
#endif
|
#endif
|
||||||
"",
|
"",
|
||||||
|
|
||||||
replacing ? _(" (to replace)") : "",
|
replacing ?
|
||||||
|
#ifndef NANO_SMALL
|
||||||
|
(ISSET(MARK_ISSET) ? _(" (to replace) in selection") :
|
||||||
|
#endif
|
||||||
|
_(" (to replace)")
|
||||||
|
#ifndef NANO_SMALL
|
||||||
|
)
|
||||||
|
#endif
|
||||||
|
: "",
|
||||||
|
|
||||||
buf);
|
buf);
|
||||||
|
|
||||||
/* Release buf now that we don't need it anymore. */
|
/* Release buf now that we don't need it anymore. */
|
||||||
|
|
Loading…
Reference in New Issue