keys.h
来自「minix软件源代码」· C头文件 代码 · 共 51 行
H
51 行
/* Copyright (c) 1985 Ceriel J.H. Jacobs *//* $Header: keys.h,v 7.1 88/04/29 11:46:10 ceriel Exp $ */# ifndef _KEYS_# define PUBLIC extern# else# define PUBLIC# endifPUBLIC struct keymap { char k_help[80]; /* To be printed on illegal command */ struct state *k_mach; /* Finite state machine */ char k_esc[10]; /* escape chars */} *currmap, /* pointer to current key map */ *othermap; /* pointer to other keymap */VOID initkeys();/* * void initkeys(); * * Initializes the keymap(s). */VOID setused();/* * void setused(key); * int key; * * Marks the key "key" as used. */int isused();/* * int isused(key); * int key; * * returns 0 if the key "key" is not used. * Otherwise it returns non-zero. */int is_escape();/* * int is_escape(c); * int c; * * Returns 1 if "c" is an escape char (shell or pipe) in the current * keymap. */# undef PUBLIC
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?