📄 sleep.h
字号:
/* compatibility for the unix/win32 sleep() function */#ifndef __VI_SLEEP_H#define __VI_SLEEP_H#ifdef WIN32#include <windows.h>#define vi_sleep(x) Sleep((x)*1000)#else#include <unistd.h>#define vi_sleep(x) sleep(x)#endif#endif /* __VI_SLEEP_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -