是否可以使用Qt Creator跳到代码中的下一个空白行?我无法在任何首选项中找到它。跳过块和跳过线在那里,但是那不是我想要的。
行为应如下所示:
//Before using command:
*cursor is here*
func(a)
{
...code...
}
func(b)
{
...code...
}
-----------------------------------
//After using command:
func(a)
{
...code...
}
*cursor is here*
func(b)
{
...code...
}
-----------------------------------
//After using command again:
func(a)
{
...code...
}
func(b)
{
...code...
}
*cursor is here*
有人知道吗?