在qt快捷方式中复制行
我对此进行了很多搜索,但没有用。 QT Creator 中是否有使用键盘快捷键复制整行的快捷方式?我见过剪线的快捷方式,但这不是我想要的..
I have been searching a lot on this but of no use. Is there any shortcut to copy an entire line with a keyboard shortcut in QT creator? I have seen shortcut for cutting a line but that's not what i want..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
用户可以在“工具”菜单 ->“工具”菜单中配置快捷方式列表。选项->环境->键盘。
复制行的默认快捷键是 Ctrl + Ins。
The shortcut list is user configurable in
Tools menu -> Options -> Environment -> Keyboard
.And the default shortcut to copy a line is Ctrl + Ins.
将光标置于要复制的行,然后按
Command+Alt+Down
或Command+Alt+Up
就是这样!
您还可以移动一行:
标记您要移动的行,然后按
Command+Shift+Down
或Command+Shift+Up
干杯!
PS:显然它们是Mac的快捷方式!
pps:另请参阅https://wiki.qt.io/Qt_Creator_Keyboard_Shortcuts
Set cursor to the line you want copy and press
Command+Alt+Down
orCommand+Alt+Up
That's it!
You can also move a line:
Mark the line you want to move and press
Command+Shift+Down
orCommand+Shift+Up
Cheers!
ps: clearly they are shortcuts for mac!
pps: see also https://wiki.qt.io/Qt_Creator_Keyboard_Shortcuts
Windows 上的 Ctrl + Alt + 向上/向下箭头
Ctrl + Alt + Up / Down Arrow on windows
快捷方式名称为“CopyLine”。
您可以在编辑中找到当前快捷方式 -> 首选项 -> 环境 -> 键盘选项卡并过滤“CopyLine”。
如果默认快捷方式不起作用,请尝试记录其他快捷方式:默认快捷方式可能已被其他应用程序保留。
The shortcut name is "CopyLine".
You can find current shortcut in Edit -> Preferences -> Environment -> Keyboard Tab and filtering for "CopyLine".
If default shortcut has no effect, try to record a different one: default might be already reserved by other app.