VS2010 Surround Snippet - 我可以复制$ selected $ text吗?

时间:2011-11-09 15:29:41

标签: visual-studio-2010 code-snippets

我想创建一个使用$selected$文本两次的周围片段 - 作为HTML链接的文本和标题。这是我写的:

<?xml version="1.0" encoding="utf-8"?>
<CodeSnippet Format="1.0.0" xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <Header>
        <SnippetTypes>
            <SnippetType>SurroundsWith</SnippetType>
            <SnippetType>Expansion</SnippetType>
        </SnippetTypes>
        <Title>My Link</Title>
        <Author>Me</Author>
        <Description>Makes a special link.</Description>
        <HelpUrl>
        </HelpUrl>
        <Shortcut>myLink</Shortcut>
    </Header>
    <Snippet>
        <Declarations>
            <Literal>
                <ID>Link</ID>
                <ToolTip></ToolTip>
                <Default>http://www.aggienetwork.com</Default>
                <Function></Function>
            </Literal>
        </Declarations>
        <Code Language="html"><![CDATA[<a style="color: #1a4e9d; text-decoration: none;" 
            href="$Link$" title="$selected$" target="_blank">$selected$</a>$end$]]></Code>
    </Snippet>
</CodeSnippet>

如果我使用它,$selected$文本只显示一次作为文本,title属性为空。任何人都知道如何使这项工作?

1 个答案:

答案 0 :(得分:2)

这似乎是一个问题,希望微软将来会考虑将$selected$用作文字......

Code Element (IntelliSense Code Snippets)