- 06 Aug, 2017 3 commits
-
-
Benno Schulenberg authored
-
David Lawrence Ramsey authored
The new option 'set selectedcolor' applies to marked text, to the currently selected file in the file browser, and to the highlighted match during interactive search-and-replace.
-
Benno Schulenberg authored
Without them, nano still compiles for me, with everything enabled, even when using --enable-debug, --enable-utf8, and --with-slang.
-
- 29 Jul, 2017 1 commit
-
-
Rishabh Dave authored
Include the shortcut for 'Uncut' into most menus, and add an uncut function for the status bar, so that it becomes possible to paste the first line of the cutbuffer at any text-input prompt. This fulfills https://savannah.gnu.org/bugs/?48501 . Requested-by:
Benno Schulenberg <bensberg@telfort.nl> Signed-off-by:
Rishabh Dave <rishabhddave@gmail.com>
-
- 14 Jul, 2017 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Rename the corresponding rc-file option too, of course.
-
- 07 Jul, 2017 3 commits
-
-
David Lawrence Ramsey authored
Extend get_softwrap_breakpoint() to break softwrapped lines on whitespace when a flag is set. This flag is controlled by the new rcfile option "atblanks". The '>' characters marking two-column characters at the edge of the screen are disabled when it's on. If get_softwrap_breakpoint() can't find whitespace in screen range, it will break the line on the screen edge. (In this case, a blank can be on the last column of the screen, but text can't, so that a blank on the last column doesn't become invisible and possibly break the display.) This fulfills https://savannah.gnu.org/bugs/index.php?49959 . Requested-by:
Nicholas Boel <axxisd@gmail.com>
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Eradicate the need for backslashes, so that the start of the nanorc manual becomes true, where it says that quotes inside strings don't need to be escaped. In the bargain achieve that the empty string always switches commenting off. This fixes https://savannah.gnu.org/bugs/?51370, and fixes https://savannah.gnu.org/bugs/?51394.
-
- 06 Jul, 2017 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
- 03 Jul, 2017 1 commit
-
-
David Lawrence Ramsey authored
This avoids some warnings when compiled with -pedantic: ISO C forbids comparison of ‘void *’ with function pointer ISO C forbids empty initializer braces
-
- 02 Jul, 2017 4 commits
-
-
Benno Schulenberg authored
The thing after a 'comment' directive is just a string, not the name of a program nor a command.
-
David Lawrence Ramsey authored
When the active syntax contains a comment command that specifies the empty string, this should override the default comment of "#" and should disable the Meta-3 keystroke. To achieve this, the comment string is now set by default to "#" for all syntaxes, so that it will be set when no comment command is given (including for the "none" syntax), and is unset only by explicitly specifying «comment ""» in a syntax file. This fixes https://savannah.gnu.org/bugs/?51355 . Reported-by:
David Lawrence Ramsey <pooka109@gmail.com>
-
Benno Schulenberg authored
And rename a third variable, to match another in its style.
-
Benno Schulenberg authored
-
- 04 Jun, 2017 1 commit
-
-
Benno Schulenberg authored
In the tiny version, Ctrl+Left and Ctrl+Right are available only in the editor itself and in the file browser. This fixes https://savannah.gnu.org/bugs/?51173.
-
- 09 May, 2017 1 commit
-
-
Benno Schulenberg authored
Also, allow rebinding the word and block jumping functions in the tiny version when nanorc files are reenabled.
-
- 01 May, 2017 2 commits
-
-
Benno Schulenberg authored
Also, trim some comments and avoid an unused-variable warning.
-
Benno Schulenberg authored
-
- 19 Apr, 2017 1 commit
-
-
Benno Schulenberg authored
It takes almost no code and is a useful little improvement over Pico.
-
- 17 Apr, 2017 1 commit
-
-
Benno Schulenberg authored
-
- 09 Apr, 2017 1 commit
-
-
Benno Schulenberg authored
The interval 2013-2017 for the Free Software Foundation is valid because in those years there were releases with changes by either Chris or David, and the GNU maintainers guide advises to mention a new year in all files of a package, not just in the ones that actually changed, and be done with it for the rest of the year.
-
- 22 Mar, 2017 1 commit
-
-
David Lawrence Ramsey authored
These improvements will eventually make do_home() and do_end() take parameters. Since the global function lists can hold only functions without parameters, preemptively add do_home_void() and do_end_void(), and make the global function lists use them.
-
- 16 Mar, 2017 1 commit
-
-
Benno Schulenberg authored
This addresses a followup of https://savannah.gnu.org/bugs/?50362 . Reported-by:
Mike Frysinger <vapier@gentoo.org>
-
- 06 Mar, 2017 2 commits
-
-
Hans-Bernhard Broeker authored
The platform's default char type might be signed, which could cause problems in 8-bit locales. This addresses https://savannah.gnu.org/bugs/?50289 . Reported-by:
Hans-Bernhard Broeker <HBBroeker@T-Online.de>
-
Mike Frysinger authored
Now that we pull in the gnulib regex module, we can assume it exists.
-
- 16 Feb, 2017 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
As a small service to the user, reject empty regex strings, because an entirely empty regex simply doesn't make sense. Inspired-by:
Elia Geretto <elia.f.geretto@gmail.com>
-
- 11 Jan, 2017 1 commit
-
-
Benno Schulenberg authored
-
- 07 Dec, 2016 1 commit
-
-
Benno Schulenberg authored
-
- 27 Nov, 2016 4 commits
-
-
Benno Schulenberg authored
Achieve this elegantly by factoring out the reading of one rcfile.
-
Benno Schulenberg authored
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Also remove some unneeded prototypes, adjust some comments, and move a constant definition to the top of the file.
-
- 26 Nov, 2016 2 commits
-
-
Benno Schulenberg authored
-
Benno Schulenberg authored
Also improve or correct some comments.
-
- 13 Nov, 2016 1 commit
-
-
Benno Schulenberg authored
Otherwise the user can override a 'set nowrap' in /etc/nanorc only via the command line. This fixes https://savannah.gnu.org/bugs/?49593 reported by Shirish.
-
- 20 Oct, 2016 2 commits
-
-
Benno Schulenberg authored
-
Faissal Bensefia authored
It can be activated with --linenumbers on the command line or with 'set linenumbers' in a nanorc file, and it can be toggled with M-#. Signed-off-by:
Faissal Bensefia <faissaloo@gmail.com> Signed-off-by:
Benno Schulenberg <bensberg@justemail.net>
-