Lines Matching refs:arrow

724 } arrow[] = {  variable
743 arrow[A_K_DN].fun.cmd = F_DOWN_HIST; in ResetArrowKeys()
744 arrow[A_K_DN].type = XK_CMD; in ResetArrowKeys()
746 arrow[A_K_UP].fun.cmd = F_UP_HIST; in ResetArrowKeys()
747 arrow[A_K_UP].type = XK_CMD; in ResetArrowKeys()
749 arrow[A_K_LT].fun.cmd = F_CHARBACK; in ResetArrowKeys()
750 arrow[A_K_LT].type = XK_CMD; in ResetArrowKeys()
752 arrow[A_K_RT].fun.cmd = F_CHARFWD; in ResetArrowKeys()
753 arrow[A_K_RT].type = XK_CMD; in ResetArrowKeys()
755 arrow[A_K_HO].fun.cmd = F_TOBEG; in ResetArrowKeys()
756 arrow[A_K_HO].type = XK_CMD; in ResetArrowKeys()
758 arrow[A_K_EN].fun.cmd = F_TOEND; in ResetArrowKeys()
759 arrow[A_K_EN].type = XK_CMD; in ResetArrowKeys()
799 cs.buf = strA; AddXkey(&cs, &arrow[A_K_UP].fun, arrow[A_K_UP].type); in DefaultArrowKeys()
800 cs.buf = strB; AddXkey(&cs, &arrow[A_K_DN].fun, arrow[A_K_DN].type); in DefaultArrowKeys()
801 cs.buf = strC; AddXkey(&cs, &arrow[A_K_RT].fun, arrow[A_K_RT].type); in DefaultArrowKeys()
802 cs.buf = strD; AddXkey(&cs, &arrow[A_K_LT].fun, arrow[A_K_LT].type); in DefaultArrowKeys()
803 cs.buf = strH; AddXkey(&cs, &arrow[A_K_HO].fun, arrow[A_K_HO].type); in DefaultArrowKeys()
804 cs.buf = strF; AddXkey(&cs, &arrow[A_K_EN].fun, arrow[A_K_EN].type); in DefaultArrowKeys()
805 cs.buf = stOA; AddXkey(&cs, &arrow[A_K_UP].fun, arrow[A_K_UP].type); in DefaultArrowKeys()
806 cs.buf = stOB; AddXkey(&cs, &arrow[A_K_DN].fun, arrow[A_K_DN].type); in DefaultArrowKeys()
807 cs.buf = stOC; AddXkey(&cs, &arrow[A_K_RT].fun, arrow[A_K_RT].type); in DefaultArrowKeys()
808 cs.buf = stOD; AddXkey(&cs, &arrow[A_K_LT].fun, arrow[A_K_LT].type); in DefaultArrowKeys()
809 cs.buf = stOH; AddXkey(&cs, &arrow[A_K_HO].fun, arrow[A_K_HO].type); in DefaultArrowKeys()
810 cs.buf = stOF; AddXkey(&cs, &arrow[A_K_EN].fun, arrow[A_K_EN].type); in DefaultArrowKeys()
814 cs.buf = &strA[1]; AddXkey(&cs, &arrow[A_K_UP].fun, arrow[A_K_UP].type); in DefaultArrowKeys()
815 cs.buf = &strB[1]; AddXkey(&cs, &arrow[A_K_DN].fun, arrow[A_K_DN].type); in DefaultArrowKeys()
816 cs.buf = &strC[1]; AddXkey(&cs, &arrow[A_K_RT].fun, arrow[A_K_RT].type); in DefaultArrowKeys()
817 cs.buf = &strD[1]; AddXkey(&cs, &arrow[A_K_LT].fun, arrow[A_K_LT].type); in DefaultArrowKeys()
818 cs.buf = &strH[1]; AddXkey(&cs, &arrow[A_K_HO].fun, arrow[A_K_HO].type); in DefaultArrowKeys()
819 cs.buf = &strF[1]; AddXkey(&cs, &arrow[A_K_EN].fun, arrow[A_K_EN].type); in DefaultArrowKeys()
820 cs.buf = &stOA[1]; AddXkey(&cs, &arrow[A_K_UP].fun, arrow[A_K_UP].type); in DefaultArrowKeys()
821 cs.buf = &stOB[1]; AddXkey(&cs, &arrow[A_K_DN].fun, arrow[A_K_DN].type); in DefaultArrowKeys()
822 cs.buf = &stOC[1]; AddXkey(&cs, &arrow[A_K_RT].fun, arrow[A_K_RT].type); in DefaultArrowKeys()
823 cs.buf = &stOD[1]; AddXkey(&cs, &arrow[A_K_LT].fun, arrow[A_K_LT].type); in DefaultArrowKeys()
824 cs.buf = &stOH[1]; AddXkey(&cs, &arrow[A_K_HO].fun, arrow[A_K_HO].type); in DefaultArrowKeys()
825 cs.buf = &stOF[1]; AddXkey(&cs, &arrow[A_K_EN].fun, arrow[A_K_EN].type); in DefaultArrowKeys()
835 if (Strcmp(name->buf, arrow[i].name) == 0) { in SetArrowKeys()
836 arrow[i].fun = *fun; in SetArrowKeys()
837 arrow[i].type = type; in SetArrowKeys()
848 if (Strcmp(name, arrow[i].name) == 0) in IsArrowKey()
858 if (Strcmp(name->buf, arrow[i].name) == 0) { in ClearArrowKeys()
859 arrow[i].type = XK_NOD; in ClearArrowKeys()
871 if (name->len == 0 || Strcmp(name->buf, arrow[i].name) == 0) in PrintArrowKeys()
872 if (arrow[i].type != XK_NOD) in PrintArrowKeys()
873 printOne(arrow[i].name, &arrow[i].fun, arrow[i].type); in PrintArrowKeys()
893 p = tstr[arrow[i].key].str; in BindArrowKeys()
906 if (arrow[i].type == XK_NOD) { in BindArrowKeys()
911 AddXkey(&cs, &arrow[i].fun, arrow[i].type); in BindArrowKeys()
916 if (arrow[i].type == XK_CMD) in BindArrowKeys()
917 map[j] = arrow[i].fun.cmd; in BindArrowKeys()
919 AddXkey(&cs, &arrow[i].fun, arrow[i].type); in BindArrowKeys()