131054Sminshall/* 2*33817Sbostic * Copyright (c) 1988 Regents of the University of California. 3*33817Sbostic * All rights reserved. 4*33817Sbostic * 5*33817Sbostic * Redistribution and use in source and binary forms are permitted 6*33817Sbostic * provided that this notice is preserved and that due credit is given 7*33817Sbostic * to the University of California at Berkeley. The name of the University 8*33817Sbostic * may not be used to endorse or promote products derived from this 9*33817Sbostic * software without specific prior written permission. This software 10*33817Sbostic * is provided ``as is'' without express or implied warranty. 11*33817Sbostic * 12*33817Sbostic * @(#)default.map 1.4 (Berkeley) 03/28/88 1331054Sminshall */ 1431054Sminshall 1531054Sminshall/* default.map3270: This file is the system default for the key sequence 1631054Sminshall * if neither the user's TERM nor "unknown" are found in either of 1731054Sminshall * MAP3270 or /etc/map3270. 1831054Sminshall * 1931054Sminshall * 2031054Sminshall */ 2131099Sminshall#if defined(MSDOS) 2231135Sminshall"tn3270pc{", 2331135Sminshall" ENTER='^M';CLEAR='^Z'|'^Aw';NL='^N'|'^AO';TAB='^I';DP='^U';FM='^Y';", 2431135Sminshall" BTAB='^B'|'^[^I'|'^A^O';LEFT='^H'|'^AK';RIGHT='^L'|'^AM';UP='^K'|'^AH';", 2531135Sminshall" DOWN='^J'|'^AP';HOME='^^'|'^AG';DELETE='^AS'|'^D';EINP='^W';FLINP='^X';", 2631135Sminshall" EEOF='^E'|'^Au';WERASE='^As';FERASE='^At';INSRT='^[ '|'^AR';CURSEL='^[.';", 2731135Sminshall" PFK1='^A;'|'^F01'|'^[1'|'^Ax';PFK2='^A<'|'^F02'|'^[2'|'^Ay';SETTAB='^[;';", 2831135Sminshall" PFK3='^A='|'^F03'|'^[3'|'^Az';CLRTAB='^[+'|'^[:';SETMRG='^[(';", 2931135Sminshall" PFK4='^A>'|'^F04'|'^[4'|'^A{';PFK5='^A?'|'^F05'|'^[5'|'^A|';", 3031135Sminshall" PFK6='^A@'|'^F06'|'^[6'|'^A}';PFK7='^AA'|'^AI'|'^F07'|'^[7'|'^A~';", 3131135Sminshall" PFK8='^AB'|'^AQ'|'^F08'|'^[8'|'^A^?';PFK9='^AC'|'^F09'|'^[9'|'^A^A^@';", 3231135Sminshall" PFK10='^AD'|'^F10'|'^[0'|'^A^A^A';SETHOM='^[!';COLTAB='^[i'|'^[I';", 3331135Sminshall" COLBAK='^[b'|'^[B';INDENT='^[l'|'^[L';UNDENT='^[h'|'^[H';", 3431135Sminshall" PFK11='^AT'|'^F11'|'^[-'|'^A^A^B';PFK12='^AU'|'^F12'|'^A^A^C'|'^[=';", 3531135Sminshall" PFK13='^AV'|'^F13';PFK14='^AW'|'^F14';PFK15='^AX'|'^F15';", 3631135Sminshall" PFK16='^AY'|'^F16';", 3731135Sminshall" PFK17='^AZ'|'^F17';PFK18='^A['|'^F18';PFK19='^A\\\\'|'^F19';", 3831135Sminshall" PFK20='^A]'|'^F20';PFK21='^A\\^'|'^F21';PFK22='^A_'|'^F22';PA3='^Aj'|'^P3';", 3931135Sminshall" PFK23='^A`'|'^F23';PFK24='^Aa'|'^F24';PA1='^Ah'|'^P1';PA2='^Ai'|'^P2';", 4031135Sminshall" RESET='^T'|'^R'; ", 4131135Sminshall" MASTER_RESET='^G';RESHOW='^V';DELTAB='^[\\\'';ESCAPE='^C';", 4231135Sminshall"}", 4331099Sminshall#else /* defined(MSDOS) */ 4431135Sminshall"generic { clear = '^z'; flinp = '^x'; enter = '^m'; delete = '^d' | '^?';", 4531135Sminshall" synch = '^r'; reshow = '^v'; eeof = '^e'; tab = '^i';", 4631135Sminshall" btab = '^b'; nl = '^n'; left = '^h'; right = '^l';", 4731135Sminshall" up = '^k'; down = '^j'; einp = '^w'; reset = '^t';", 4831135Sminshall" xoff = '^s'; xon = '^q'; escape = '^c'; ferase = '^u';", 4931135Sminshall" insrt = '\\E ';", 5031135Sminshall" pa1 = '^p1'; pa2 = '^p2'; pa3 = '^p3';", 5131135Sminshall" pfk1 = '\\E1'; pfk2 = '\\E2'; pfk3 = '\\E3'; pfk4 = '\\E4';", 5231135Sminshall" pfk5 = '\\E5'; pfk6 = '\\E6'; pfk7 = '\\E7'; pfk8 = '\\E8';", 5331135Sminshall" pfk9 = '\\E9'; pfk10 = '\\E0'; pfk11 = '\\E-'; pfk12 = '\\E=';", 5431135Sminshall" pfk13 = '\\E!'; pfk14 = '\\E@'; pfk15 = '\\E#'; pfk16 = '\\E$';", 5531135Sminshall" pfk17 = '\\E%'; pfk18 = '\\E\\^'; pfk19 = '\\E&'; pfk20 = '\\E*';", 5631135Sminshall" pfk21 = '\\E('; pfk22 = '\\E)'; pfk23 = '\\E_'; pfk24 = '\\E+';", 5731135Sminshall"}", 5831099Sminshall#endif /* defined(MSDOS) */ 59