I have a code snippet that according to the syntax is all right, but I can not get the tab stop from the snippet to change to the variables that they are inside the parentheses, on the contrary I click tab , it does not do anything, I click again on tab and it moves to the last substitution variable, here is the declaration of the code snippet :
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Set de la clase de Negocio</Title>
<Author>Jorge Torselli</Author>
<Description>Establece el set modificado para el campo</Description>
<Shortcut>set</Shortcut>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>Nombre_set</ID>
<ToolTip>Escribir el nombre del campo en cuestión</ToolTip>
</Literal>
<Literal>
<ID>Tipo_dato</ID>
<ToolTip>Escribir el tipo de dato en cuestión</ToolTip>
</Literal>
<Literal>
<ID>Nueva_asignacion</ID>
<ToolTip>El tipo de dato y nombre que se le asignara</ToolTip>
</Literal>
<Literal>
<ID>Nombre_campo</ID>
<ToolTip>EL nombre del campo al que hace referencia = al que se le asigno</ToolTip>
</Literal>
</Declarations>
<Code Language="CSharp">
<![CDATA[public void set$Nombre_set$($Tipo_dato$ $Nueva_asignacion$) { this$Nombre_campo$ = $Nueva_asignacion$; }]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
I am using Visual Studio Community 2015, when I add the snippet to Visual Studio I follow the steps that are in the MSDN tutorial of code snippets .