Allow rectangle selection to extend past end of current line to behave
the same as vi with virtualedit=block set. From Mark Kelly in GitHub
issue 5227.
Fix behavior of ')' used in a range when setence reaches EOF.
For a sentence spanning more than one line at the end of the file,
when the cursor is placed at the first character of any line except
for the last one, running '!)<cmd>' won't affect the last line.
From Walter Alejandro Iglesias
Check for E_CLRFLAG in ecp->cmd->flags, not ecp->iflags.
Fixes a problem where an extra line is printed at the end of the
output when the "number" command is given the "l" (literal display)
flag.
From Jeremy Mates Walter Alejandro Iglesias and
remove dup entries that were added to PFRAG.X86-main but not removed from
PFRAG.amd64-main to unbreak amd64 packaging. reported by naddy.
there are some remaining files that are duplicated between PFRAG.amd64-main
and PFRAG.i386-main which probably want moving to X86-main, but let's get
amd64 moving again first.
Be more strict about what names and titles we allow and reject them
immediately when possible, but allow # again for those directly set by
commands (but not escape sequences). From Barrett Ruth in GitHub issue
5175.
gambatte: migrate to Python 3
Convert the solitary Python file with 2to3 and add a few more tweaks so it
works under Python 3.
This removes Python 2 as a dep from one more port.
ok bentley@ (MAINTAINER)
bring back bin/2to3 now that it was removed from Python 3.14
We have python2.7-2to3 there, but it's more convenient for me to use the
shorter tool name. So bring it back now that there's no conflict.
This tool is still useful to help get some of the final Python 2 bits over
to Python 3.
ok and tweaked by sthen@