如何强制 QT Creator 的切换评论功能不跳过行
How can I force QT Creator's toggle comment feature to not skip lines
使用 QT Creator,给出以下条件:
int example = 1;
if (example == 1)
{
example = 2;
}
如果我 select 该文本并输入 ctrl-/
以切换对 selection 的评论,我得到:
//int example = 1;
//if (example == 1)
//{
// example = 2;
//}
但我想得到:
//int example = 1;
//
//if (example == 1)
//{
// example = 2;
//}
(空行也被注释掉了)
有谁知道如何配置 QT Creator 在切换评论时不跳过空行?
我知道的唯一方法是使用多行版。如果您从未使用过此功能,请参阅 QtCreator 上的说明:
仅限键盘: 将光标放在要评论的第一行的开头,按 Shift+Alt,使用向下箭头到达最后一行,松开Shift+Alt,键入“//”。
键盘+鼠标: Select你要注释的代码,按下Atl键再松开鼠标左键。释放 Alt,然后键入“//”。
注意:好像需要QtCreator >= 3.2才能有功能多行版。
使用 QT Creator,给出以下条件:
int example = 1;
if (example == 1)
{
example = 2;
}
如果我 select 该文本并输入 ctrl-/
以切换对 selection 的评论,我得到:
//int example = 1;
//if (example == 1)
//{
// example = 2;
//}
但我想得到:
//int example = 1;
//
//if (example == 1)
//{
// example = 2;
//}
(空行也被注释掉了)
有谁知道如何配置 QT Creator 在切换评论时不跳过空行?
我知道的唯一方法是使用多行版。如果您从未使用过此功能,请参阅 QtCreator 上的说明:
仅限键盘: 将光标放在要评论的第一行的开头,按 Shift+Alt,使用向下箭头到达最后一行,松开Shift+Alt,键入“//”。
键盘+鼠标: Select你要注释的代码,按下Atl键再松开鼠标左键。释放 Alt,然后键入“//”。
注意:好像需要QtCreator >= 3.2才能有功能多行版。