📄 constants.h
字号:
#ifndef _constants_h_#define _constants_h_#ifndef MAX_PATH#define MAX_PATH 256#endif#ifdef WIN32#ifdef QSTE_EXPORTS#define _QSTE_DLL_ __declspec(dllexport)#else#define _QSTE_DLL_ __declspec(dllimport)#endif#else#define _QSTE_DLL_#endif#define ELEMENTS(a) (sizeof(a) / sizeof(a[0]))/// Codes representing the effect a line has on indentation.enum IndentationStatus { isNone, // no effect on indentation isBlockStart, // indentation block begin such as "{" or VB "function" isBlockEnd, // indentation end indicator such as "}" or VB "end" isKeyWordStart // Keywords that cause indentation};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -