我试图找到在Visual Studio代码中复制一行的快捷方式(我使用1.3.1),我尝试了明显的CTRL + D,但似乎不起作用。
当前回答
Ubuntu:
重复排列:Ctrl + Alt + Shift + 8 重复行下:Ctrl + Alt + Shift + 2
其他回答
VC代码版本:1.22.2 转到:代码->首选项->键盘快捷键(cmd + K;cms + S); 更改(编辑):"Add Selection To Next Find Match": "cmd + what you want" //对我来说这是"cmd + D",我pur cmd + F; 进入"Copy Line Down": "cmd + D" //编辑并设置cmd + D为例 对我来说就是这样,我用mac;
Ubuntu:
重复排列:Ctrl + Alt + Shift + 8 重复行下:Ctrl + Alt + Shift + 2
另外2个非常有用的快捷键是上下移动选定的行,就像sublime text…
{
"key" : "ctrl+shift+down", "command" : "editor.action.moveLinesDownAction",
"when" : "editorTextFocus && !editorReadonly"
},
and
{
"key" : "ctrl+shift+up", "command" : "editor.action.moveLinesUpAction",
"when" : "editorTextFocus && !editorReadonly"
}
使用以下方法:Shift + Alt+(↓或↑)
点击文件>首选项>键盘快捷键:
在键盘快捷键中搜索copyLinesDownAction或copyLinesUpAction
通常是SHIFT+ALT +↓
Ubuntu更新:
Ubuntu似乎隐藏了这个快捷方式,不让VSCode看到(也就是说,它自己可能会使用它)。在GitHub上有一个问题。
为了在Ubuntu中工作,你必须定义自己的快捷方式,例如使用ctrl+shift+alt+j和ctrl+shift+alt+ k复制一行,你可以使用一个键绑定。Json是这样的:
[
{ "key": "ctrl+shift+alt+j", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+alt+k", "command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly" }
]
推荐文章
- Visual Studio代码如何解决合并冲突与git?
- Visual Studio代码-在文件末尾插入换行符
- 如何重新启动VScode编辑扩展的配置?
- Visual Studio代码PHP Intelephense保持显示不必要的错误
- 如何添加一个@顺风CSS规则CSS检查
- 我如何打开Visual Studio Code的设置。json文件?
- 在Visual Studio代码中运行的Angular应用程序中,TSLint扩展抛出错误
- 在Visual Studio代码编辑器中使用哪种字体以及如何更改字体?
- 如何设置Visual Studio代码来编译c++代码?
- 如何从Visual Studio代码中执行Python代码
- 如何在visual studio代码切换文本情况
- Visual Studio代码回滚缓冲区
- 'TypeError [ERR_INVALID_ARG_TYPE]: "path"参数必须是字符串类型。接收类型未定义'
- 我如何按住一个键并让它在VSCode中重复?
- 在Visual Studio Code中安装Nuget包