У меня следующий фрагмент кода C ++ для Visual Studio 2013 Express. Он не содержит никакого кода и представляет собой многострочный комментарий с отступом.
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>fileComment</Title>
<Shortcut>fileComment</Shortcut>
<Description>Creates a comment for a C++ file</Description>
<Author>Podskal</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>fileName</ID>
<ToolTip>The name of the file.</ToolTip>
<Default>header.h</Default>
</Literal>
<Literal>
<ID>description</ID>
<ToolTip>The desription for the file.</ToolTip>
<Default>File with definitions and declarations.</Default>
</Literal>
</Declarations>
<Code Language="cpp">
<![CDATA[
/*
File:
$fileName$
Description:
$description$
*/$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
При вставке я обнаружил, что VS пропускает все отступы кода внутри многострочного комментария, в результате чего
в
/*
File:
header.h
Description:
File with definitions and declarations.
*/
но в
/*
File:
header.h
Description:
File with definitions and declarations.
*/
Что может вызвать такое поведение и что можно сделать, чтобы исправить это?
Что было перепробовано:
<Code Language="CSharp">
) — правильно вставляет фрагмент кода в файлы C #;Задача ещё не решена.