- Using -k, pasted text is not updated properly if it goes beyond
editbot. (35) [FIXED]
- Doing a cut with -k can screw up the filestruct; fault is in cutting
- code. (36) [FIXED]
+ code. (36) [FIXED]
- Hitting enter on the magic line makes new lines, but they are not
written out to disk when saved..... (37). [FIXED]
- Page up and page down do not work the same way as in Pico (# of
CVS code -
+- nano.h:
+ - Rename NANO_ALT_REPLACE_KEY to NANO_REPLACE_ALTKEY, for
+ consistency. (DLR)
- BUGS:
- Miscellaneous cosmetic fixes. (DLR)
sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg
#ifndef NANO_TINY
- , IFSCHELP(nano_replace_msg, FALSE, NANO_ALT_REPLACE_KEY)
+ , IFSCHELP(nano_replace_msg, FALSE, NANO_REPLACE_ALTKEY)
#else
- , IFSCHELP(nano_replace_msg, TRUE, NANO_ALT_REPLACE_KEY)
+ , IFSCHELP(nano_replace_msg, TRUE, NANO_REPLACE_ALTKEY)
#endif
, NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW, do_replace);
#define NANO_REGEXP_KEY NANO_ALT_R
#define NANO_REPLACE_KEY NANO_CONTROL_4
#define NANO_REPLACE_FKEY KEY_F(14)
-#define NANO_ALT_REPLACE_KEY NANO_ALT_R
+#define NANO_REPLACE_ALTKEY NANO_ALT_R
#define NANO_TOOTHERSEARCH_KEY NANO_CONTROL_R
#define NANO_PREVPAGE_KEY NANO_CONTROL_Y
#define NANO_PREVPAGE_FKEY KEY_F(7)