Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.