📄 cmdtab.c
字号:
#ifndef lintstatic char sccsid[] = "@(#)cmdtab.c 4.6 (Berkeley) 6/25/83";#endif#include "tip.h"extern int shell(), getfl(), sendfile(), chdirectory();extern int finish(), help(), pipefile(), consh(), variable();extern int cu_take(), cu_put(), dollar(), genbrk(), suspend();esctable_t etable[] = { { '!', NORM, "shell", shell }, { '<', NORM, "receive file from remote host", getfl }, { '>', NORM, "send file to remote host", sendfile }, { 't', NORM, "take file from remote UNIX", cu_take }, { 'p', NORM, "put file to remote UNIX", cu_put }, { '|', NORM, "pipe remote file", pipefile },#ifdef CONNECT { 'C', NORM, "connect program to remote host",consh },#endif { 'c', NORM, "change directory", chdirectory }, { '.', NORM, "exit from tip", finish }, {CTRL('d'),NORM, "exit from tip", finish }, {CTRL('z'),NORM, "suspend tip", suspend }, { 's', NORM, "set variable", variable }, { '?', NORM, "get this summary", help }, { '#', NORM, "send break", genbrk }, { 0, 0, 0 }};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -