- 02 Nov, 2017 2 commits
-
-
Benno Schulenberg authored
If the user uses a single version of nano, they have no need for --quiet. If they do sometimes use an older version and don't want to see the warnings, they can use 2>/dev/null (they could make an alias for that and put it before the call of nano).
-
Benno Schulenberg authored
The user told nano to start, thus nano should *start* -- without halting and without nagging the user.
-
- 01 Nov, 2017 3 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
- 31 Oct, 2017 3 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
- 30 Oct, 2017 2 commits
-
-
Benno Schulenberg authored
Initialize 'breaking_col' to what it needs to be when the current chunk consists of only a tab -- a tab that spreads across both start and end of the chunk -- so that the last 'if' can move into the preceding one, which allows the elision of 'char_len'.
-
Benno Schulenberg authored
-
- 29 Oct, 2017 6 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
In the tiny version, do_prompt() will now have an extra NULL parameter, which will cost maybe twenty extra bytes of code. That is acceptable when it saves thirty lines in the source.
-
Benno Schulenberg authored
-
- 28 Oct, 2017 5 commits
-
-
Benno Schulenberg authored
The key sequence ^R ^X M-F <Enter> would cause nano to abort, because it would try to add an empty string to a history list. (Furthermore, simply don't execute an empty command, because it is pointless.) Reported-by:
Marco Diego Aurélio Mesquita <marcodiegomesquita@gmail.com>
-
Benno Schulenberg authored
-
Benno Schulenberg authored
And use a better word to describe the concise descriptions that these constants refer to -- they are not messages.
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Reported-by:
David Lawrence Ramsey <pooka109@gmail.com>
-
- 26 Oct, 2017 3 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
This completes the fix for https://savannah.gnu.org/bugs/?52282 . Reported-by:
Chime Hart <chime@hubert-humphrey.com>
-
Benno Schulenberg authored
After any replacements were made, the "not found" message is pointless because it will be overwritten rightaway by "Replaced xx occurrences". The message is confusing and annoying when using speech output. This partially fixes https://savannah.gnu.org/bugs/?52282 . Reported-by:
Chime Hart <chime@hubert-humphrey.com>
-
- 25 Oct, 2017 4 commits
-
-
David Lawrence Ramsey authored
This addresses https://savannah.gnu.org/bugs/?52257.
-
David Lawrence Ramsey authored
This fixes https://savannah.gnu.org/bugs/?52258 . Reported-by:
Peter Passchier <peter@passchier.net>
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?52183 . Tested-by:
David Lawrence Ramsey <pooka109@gmail.com> Improved-by:
David Lawrence Ramsey <pooka109@gmail.com>
-
David Lawrence Ramsey authored
List "browser", "pageup" and "pagedown" in the manuals; the first because it matches "speller", and the latter two because they are what these functions are commonly known by. The names "tofiles", "prevpage" and "nextpage" are now undocumented, but they are still recognized by the code, as they match the tags for these functions.
-
- 19 Oct, 2017 2 commits
-
-
David Lawrence Ramsey authored
-
David Lawrence Ramsey authored
Most people who make use of 'do_findprevious' and 'do_findnext' will not make use of 'do_search' (the default binding of M-W), so for them it is superfluous to remember the state of the Backwards toggle in the Search menu. For the people that do mix the usage of Alt+Up/Down with M-W, it means that M-W will always search in the same direction as the last search. It is a small change in behavior.
-
- 18 Oct, 2017 4 commits
-
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?52246.
-
Brand Huntsman authored
Signed-off-by:
Brand Huntsman <alpha@qzx.com>
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Adjust to the changed meaning of 'whereis': it is no longer do_search() but do_search_forward(). Hinted-at-by:
Brand Huntsman <alpha@qzx.com>
-
- 15 Oct, 2017 3 commits
-
-
Benno Schulenberg authored
Requested-by:
Brand Huntsman <alpha@qzx.com>
-
Marco Diego Aurélio Mesquita authored
Allow the user to record and run a single macro. The default binding for starting and stopping the recording is M-: (Alt + colon) and for running the macro M-; (Alt + semicolon). This fulfills https://savannah.gnu.org/bugs/?50314 . Requested-by:
Peter Passchier <peter@passchier.net> Signed-off-by:
Marco Diego Aurélio Mesquita <marcodiegomesquita@gmail.com> Signed-off-by:
Benno Schulenberg <bensberg@telfort.nl>
-
Benno Schulenberg authored
-
- 14 Oct, 2017 3 commits
-
-
Benno Schulenberg authored
It would be silly for ^W to do a backward search too after using ^Q once.
-
Benno Schulenberg authored
^S will be the first thing people will try for saving a file, and ^Q is somewhat mnemonic because it is to the left of ^W: it searches backward. Make these keystrokes available also in the tiny version.
-
Benno Schulenberg authored
-