nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 06416e3d5c03b9ad72360b9fda5518a9187b47b2
parent e1c8dd0091947328cc19b0ab5fd093258d67ad7b
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 15 Oct 2018 08:28:29 -0500

tweaks: don't define controldelete or controlshiftdelete in tiny version

The tiny version never uses them because it doesn't know word deletion.

Diffstat:
Msrc/global.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/global.c b/src/global.c @@ -70,8 +70,8 @@ int didfind = 0; int controlleft, controlright, controlup, controldown; int controlhome, controlend; -int controldelete, controlshiftdelete; #ifndef NANO_TINY +int controldelete, controlshiftdelete; int shiftleft, shiftright, shiftup, shiftdown; int shiftcontrolleft, shiftcontrolright, shiftcontrolup, shiftcontroldown; int shiftcontrolhome, shiftcontrolend;