- 22 Dec, 2016 1 commit
-
-
Benno Schulenberg authored
Also, swap the logic around, to use less braces.
-
- 18 Dec, 2016 1 commit
-
-
Benno Schulenberg authored
And which normally is just some ten or twenty characters long, and never gets wildly overallocated.
-
- 05 Dec, 2016 1 commit
-
-
Benno Schulenberg authored
But do it correctly this time: don't switch it on when replacing.
-
- 04 Dec, 2016 1 commit
-
-
Benno Schulenberg authored
None of the prompts offer a total-refresh shortcut -- only the edit window, the help viewer, and the file browser provide this.
-
- 01 Dec, 2016 3 commits
-
-
Benno Schulenberg authored
There is no need for that -- it just causes flicker. This fixes https://savannah.gnu.org/bugs/?49742.
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Only when doing replacements does the edit window need a refresh: for every new spotlight. So, do the update request in the latter routine.
-
- 30 Nov, 2016 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
- 30 Aug, 2016 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
- 29 Aug, 2016 2 commits
-
-
Benno Schulenberg authored
Mentioning "GNU nano" instead of "This program" and referring to the website instead of to a postal address.
-
Benno Schulenberg authored
-
- 28 Aug, 2016 4 commits
-
-
Benno Schulenberg authored
And remove a superfluous call.
-
Benno Schulenberg authored
-
Benno Schulenberg authored
The prompt has already been trimmed in do_prompt() to fit into the available space.
-
Benno Schulenberg authored
Leave the optimization of actual screen writes to ncurses.
-
- 27 Aug, 2016 4 commits
-
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48917.
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48916.
-
Benno Schulenberg authored
The $ sign looks too much like an S, and it "obscures" the answer by being so "massive". The < and > signs are lighter and work better.
-
Benno Schulenberg authored
-
- 26 Aug, 2016 3 commits
-
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48894.
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48912.
-
Benno Schulenberg authored
-
- 25 Aug, 2016 6 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48796.
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48792.
-
Benno Schulenberg authored
This fixes https://savannah.gnu.org/bugs/?48852.
-
- 06 Aug, 2016 1 commit
-
-
Benno Schulenberg authored
-
- 01 Aug, 2016 1 commit
-
-
Benno Schulenberg authored
-
- 31 Jul, 2016 2 commits
-
-
Benno Schulenberg authored
That is a task for the key-getting routine.
-
Benno Schulenberg authored
There is no need to specially flag a function key or editing key -- the keycode is indication enough in itself: outside of byte range.
-
- 25 Jul, 2016 3 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
- 12 Jul, 2016 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Color-pair numbers and attributes can be OR'd together -- do so, to save an attron() call whenever the hilite is on.
-
- 03 Jul, 2016 1 commit
-
-
Benno Schulenberg authored
When we get a ^J as verbatim input, it is not possible to include it into the file buffer or the prompt answer, because this would mean adding an encoded null to the buffer or answer, and that is not what the user intended. One option would have been to simply ignore a ^J in verbatim input. But the choice has been made to act the same way as when the ^J (0x0A) is found in the file data: start a new line. That is the same response as to the Enter key, yes -- but the code for the Enter key is ^M (0x0D), not ^J. So, to be more precise, rename the relevant variable from 'got_enter' to 'got_newline'.
-