📄 shorthand.h
字号:
#ifndef __shorthand_h
#define __shorthand_h
///////////////////////////////////////////////////////////////////////////////
// $Header: /shorthand/src/shorthand.h 4 8/28/02 6:27a Arm $
//-----------------------------------------------------------------------------
// Project: ShortHand interpreter
// Author: Andrei Remenchuk <andrei@remenchuk.com>
//-----------------------------------------------------------------------------
// except.h: ShortHand debug diagnostics
///////////////////////////////////////////////////////////////////////////////
#ifdef _DEBUG
#define TRACE(x) trace x
void trace(int level, const char* format, ...);
extern int trace_level;
#else
#define TRACE(x)
#endif
#ifdef WIN32
#define THREADLOCAL __declspec(thread)
#else
#define THREADLOCAL
#endif
#endif // __shorthand_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -