While creating code snippets, as this link describes, we can pass arguments into an expansion function.
So how can we pass the $selected$ into an expansion function or say get the selected text in the function without passing it?
The snippet file looks as follows:
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Arghh</Title>
<Shortcut>Arghh</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>variable</ID>
<Function>GetSelectedString($selected$, "my-value")</Function>
<ToolTip>Variable name</ToolTip>
</Literal>
</Declarations>
<Code Language="ArghhUrghh"><![CDATA[SOMETEXT $variable$ SOMETEXT]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
In the ExpansionFunction
public override string GetCurrentValue()
{
string arg0 = string.Empty;
string arg1 = string.Empty;
arg0 is always "" (empty string), even when there is a text selected on the editor! Do we know why?
The task to be done is check if there is a selected text, then return that value else return the default value. Is there a way to do this?
