Commit 7bf7274d authored by Chris Allegretta's avatar Chris Allegretta
Browse files

nano.c:main() - Add Esc-[IGL] keys for FreeBSD Console (PgUp,PgDn,Insert)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@890 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 17 additions and 0 deletions
+17 -0
CVS Code -
- nano.c:
main()
- Add Esc-[IGL] keys for FreeBSD Console (PgUp,PgDn,Insert).
nano-1.1.3 - 10/26/2001
- General
......
......@@ -3027,10 +3027,16 @@ int main(int argc, char *argv[])
kbinput = KEY_PPAGE;
wgetch(edit);
break;
case 'I': /* Alt-[-I = Page Up - FreeBSD Console */
kbinput = KEY_PPAGE;
break;
case '6': /* Alt-[-6 = Page Down */
kbinput = KEY_NPAGE;
wgetch(edit);
break;
case 'G': /* Alt-[-G = Page Down - FreeBSD Console */
kbinput = KEY_NPAGE;
break;
case '7':
kbinput = KEY_HOME;
wgetch(edit);
......@@ -3039,6 +3045,14 @@ int main(int argc, char *argv[])
kbinput = KEY_END;
wgetch(edit);
break;
case 'L': /* Insert Key - FreeBSD Console */
#ifdef ENABLE_MULTIBUFFER
do_insertfile(ISSET(MULTIBUFFER));
#else
do_insertfile(0);
#endif
keyhandled = 1;
break;
case '[': /* Alt-[-[-[A-E], F1-F5 in linux console */
kbinput = wgetch(edit);
if (kbinput >= 'A' && kbinput <= 'E')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment