⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 letters.h

📁 一个开源著名的TDE编辑器源代码
💻 H
字号:
/* * Editor:      TDE, the Thomson-Davis Editor * Filename:    letters.h * Compiled by: Byrial Jensen * * This file contains various defines of letters etc., collected to * to ease making versions for other languages. * It is used with changed versions of several of the TDE source files *//* Response letters */#define L_BLOCK         'B'     /* cp. block13 */#define L_FILE          'F'#define L_ABORT         'A'     /* cp. criterr_screen in criterr.h */#if defined( __DOS16__ )# define L_FAIL         'Q'     /* L_CONTINUE used by unix and djgpp is */# define L_RETRY        'R'     /*  defined below (in find) */#elif defined( __UNIX__ )# define L_IGNORE       'I'#endif/* * dos file attributes */#define L_DOS_ARCHIVE   'A'     /* cp. utils14 */#define L_DOS_SYSTEM    'S'#define L_DOS_HIDDEN    'H'#define L_DOS_READ_ONLY 'R'/* * unix file attributes */#define L_UNIX_READ     'r'     /* cp. utils14 */#define L_UNIX_WRITE    'w'#define L_UNIX_EXECUTE  'x'#define L_REPLACE       'R'     /* cp. find2 */#define L_SKIP          'S'#define L_EXIT          'E'#define L_QUIT          'Q'     /* cp. find3 */#define L_CONTINUE      'C'#define L_ASCENDING     'A'     /* cp. utils4 */#define L_DESCENDING    'D'#define L_FORWARD       'F'     /* cp. utils5 */#define L_BACKWARD      'B'#define L_YES           'Y'     /* in multiple prompts */#define L_NO            'N'#define L_LEFT          'L'     /* cp. block18 */#define L_RIGHT         'R'#define L_BEGINNING     'B'     /* cp. diff_prompt3 */#define L_CURRENT       'C'#define L_OVERWRITE     'O'     /* cp. block7 */#define L_APPEND        'A'#define BLOCK14_LINE_SLOT  14   /* positions for data in messages */#define BLOCK14_TOTAL_SLOT 25#define BLOCK14_SUM_SLOT   25#define UTILS13_NO_SLOT     7#define GRAPHIC_SLOT        8   /* jmh 981129 */#define ED7C_SLOT          10   /* jmh 030304 *//* * Some mode letters in bottom screen line */#define MODE_TRAILING   'T'#define MODE_CONTROL_Z  'Z'#define MODE_INSERT     'i'#define MODE_OVERWRITE  'o'#define REG_ALPHANUM    'a'     /* Regular expression predefined macros */#define REG_WHITESPACE  'b'#define REG_ALPHA       'c'#define REG_DECIMAL     'd'#define REG_HEX         'h'#define REG_LOWER       'l'#define REG_UPPER       'u'#define TS_DAYMONTH     'd'     /* Time-stamp format characters */#define TS_DAYWEEK      'D'#define TS_ENTER        'e'#define TS_12HOUR       'h'#define TS_24HOUR       'H'#define TS_MONTHNUM     'm'#define TS_MONTHWORD    'M'#define TS_MINUTES      'n'#define TS_MERIDIAN     'p'     /* ie. am or pm */#define TS_SECONDS      's'#define TS_TAB          't'#define TS_YEAR2        'y'#define TS_YEAR         'Y'#define TS_ZONE         'Z'#define MAC_BackSpace   'b'     /* Macro literal escape characters */#define MAC_CharLeft    'l'     /* In addition: 0 is MacroMark     */#define MAC_CharRight   'r'     /*  and 1..3 are SetMark1..3       */#define MAC_Rturn       'n'#define MAC_Pseudo      'p'#define MAC_Tab         't'#if defined( __UNIX__ ) && !defined( PC_CHARS )#define EOF_CHAR        '='#else#define EOF_CHAR        '

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -