我想创建一个 UltiSnip 代码,其中类似于他们的Github README中使用的代码。
我知道它涉及 python 插值,我发现很难编写自己的解释。他们的文档很好地列出了UltiSnip可以做什么,但仍然很难得到我想要做的事情。
我想自动生成公共方法来获取和设置实例变量,比如我输入这个...
class Foo()
{
int x;
double y;
...
并且 UltiSnip 应该添加这部分......
public void setX(int _x)
{
this.x = _x;
}
public int getX()
{
return this.x;
}
public void setY(double _y)
{
this.y = _y;
}
public double getY()
{
return this.y;
}
}