在基于文件类型/扩展名创建文件时,是否有某种方法可以向文件添加代码段。我想在创建新的C ++头文件时添加头保护。示例:
#ifndef DIRECTORY_FILENAME_H
#define DIRECTORY_FILENAME_H
#endif // DIRECTORY_FILENAME_H
我已经创建了一个添加此文本的代码段,但是我不知道如何在创建文件时自动添加该文本。
答案 0 :(得分:0)
https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.auto-snippet
示例:
autoSnippet.snippets: [
{ "pattern": "ut-*.cpp", "snippet": "ut-template",
{ "pattern": "*.h", "snippet": "header-template" },
{ "pattern": "*.cpp", "snippet": "body-template",
{ "language": "javascript", "snippet": "template", "commands":"[ editor.action.commentLine" ] }
]