键盘快捷键可以跳到Qt Creator中的下一个空白行吗?

时间:2018-12-28 23:25:41

标签: qt keyboard-shortcuts qt-creator

是否可以使用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*

有人知道吗?

0 个答案:

没有答案