📄 codetmpl.txt
字号:
CodeTmpl.txt
------------
Configuration file for CodeTmpl add-in. Should live in DevStudio\SharedIDE
Example Comment Blocks
----------------------
#{File Header
/////////////////////////////////////////////////////////////////////////////
//
// Copyright .....
//
/////////////////////////////////////////////////////////////////////////////
//
//
// File :
//
// Author :
//
// Date :
//
// Synopsis :
//
////////////////
#}
#{Block Header
/////////////////////////////////////////////////////////////////////////////
//
//
//
///////////////
#}
#############################################################################
Example Code Snippets
---------------------
#{Hello World (Console)
#include <stdio.h>
int main()
{
puts("Hello, World");
}
#}
#{Hello World (GUI)
#include <windows.h>
int PASCAL WinMain(HANDLE hInstance,
HANDLE hPrevInstance,
LPSTR lpszCommandLine,
int cmdShow)
{
MessageBox(NULL, "Hello, World", "Example", MB_OK);
}
#}
#############################################################################
Example Syntax Elements
-----------------------
#{Lazy Error Handling
try
{
}
catch(...)
{
}
#}
#{Quick Class Definition
class X
{
public:
X();
~X();
protected:
private:
};
#}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -