📄 command.h
字号:
/*--------------------------------*-H-*---------------------------------* * File: command.h *----------------------------------------------------------------------* * * All portions of code are copyright by their respective author/s. * Copyright (c) 1997-2001 Geoff Wing <gcw@pobox.com> * Copyright (c) 2004 Jingmin Zhou <jimmyzhou@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *----------------------------------------------------------------------*/#ifndef __COMMAND_H__#define __COMMAND_H__#define STRING_MAX 512 /* max string size for process_rxvt_xterm_seq() */#define ESC_ARGS 32 /* max # of args for esc sequences */#ifdef OFFIX_DND# define DndFile 2# define DndDir 5# define DndLink 7#endif#ifndef MULTICLICK_TIME# define MULTICLICK_TIME 500#endif#ifndef SCROLLBAR_INITIAL_DELAY# ifdef NEXT_SCROLLER# define SCROLLBAR_INITIAL_DELAY 20# else# define SCROLLBAR_INITIAL_DELAY 40# endif#endif#ifndef SCROLLBAR_CONTINUOUS_DELAY# define SCROLLBAR_CONTINUOUS_DELAY 2#endif/* * Home/End key-strings. (The trailing '~' will be automatically added). * * If only these keys were standardized <sigh> *//* Linux console style */#define KS_HOME_LINUX "\033[1" /* Home == Find */#define KS_END_LINUX "\033[4" /* End == Select *//* X Terminal style [default] */#define KS_HOME "\033[7" /* Home */#define KS_END "\033[8" /* End *//* * ESC-Z processing: * * By stealing a sequence to which other xterms respond, and sending the * same number of characters, but having a distinguishable sequence, * we can avoid having a timeout (when not under an rxvt) for every login * shell to auto-set its DISPLAY. * * This particular sequence is even explicitly stated as obsolete since * about 1985, so only very old software is likely to be confused, a * confusion which can likely be remedied through termcap or TERM. Frankly, * I doubt anyone will even notice. We provide a #ifdef just in case they * don't care about auto-display setting. Just in case the ancient * software in question is broken enough to be case insensitive to the 'c' * character in the answerback string, we make the distinguishing * characteristic be capitalization of that character. The length of the * two strings should be the same so that identical read(2) calls may be * used. */#define VT100_ANS "\033[?1;2c" /* vt100 answerback */#ifndef ESCZ_ANSWER# define ESCZ_ANSWER VT100_ANS /* obsolete ANSI ESC[c */#endif#endif /* __COMMAND_H__ *//*----------------------- end-of-file (H source) -----------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -