It would be useful if it would possible to export/import only one specific VA Snippet - the format should be xml or json like this:
<xml>
<va_snippet>
<title>HelloWorld</title>
<shortcut>Strg+F23</shortcut>
<description>A Hello World example</description>
<code>
#include <iostream>
using namespace std;
void main()
{
cout<<"Hello World!"<<endl;
system("pause");
}
</code>
</va_snippert>
</xml>
This would it make easy to give away a snipped to a colleague or share it on a blog - there is already a snippet format for .Net Languages integrated in Visual Studio - maybe you can make it combatable with this format and extend its support to C++
anyway thanks for the hint to the Autotext folder