0


vscode Ctrl D 复制到下一行 快捷键

这个技巧也比较多

VS Code技巧汇总_vs code反缩进-CSDN博客

选择 python解释器 F1 Ctrl Shift P

跳转上一次编辑 下一次编辑

光标向前跳转:

Alt+Left

光标向后跳转:

Alt+Right

windows 按钮设置

菜单栏右键 选择 Command Center,左边就有上一次,下一次

linux View-> appearance-> Custom Title Bar

Ctrl d 会把当前行复制到下一行

步骤1:打开键绑定设置

  1. 打开 VS Code。
  2. Ctrl+Shift+P 打开命令面板。
  3. 输入并选择 Preferences: Open Keyboard Shortcuts (JSON)

中括号中添加:

{
      "key": "ctrl+d",
      "command": "editor.action.copyLinesDownAction",
      "when": "editorTextFocus"
},

结果:

[
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
// 其他键绑定配置...
]

使用VS Code设置换行

  1. 打开设置:- 通过快捷键 Ctrl + ,(Windows/Linux)或 Cmd + ,(Mac)打开设置。- 或者点击左下角的齿轮图标,然后选择“Settings”。
  2. 搜索并设置“Editor: Word Wrap Column”:在设置搜索栏中输入 word wrap column,然后设置 Editor: Word Wrap Column 的值为 200。例如: json 复制代码"editor.wordWrapColumn": 200 这会将编辑器的自动换行列宽设置为200。
  3. 启用自动换行:搜索 word wrap 并将 Editor: Word Wrap 设置为 bounded。例如: json 复制代码"editor.wordWrap": "bounded" 这会在列宽达到200字符时自动换行。
标签: java 前端 服务器

本文转载自: https://blog.csdn.net/jacke121/article/details/140127915
版权归原作者 AI算法网奇 所有, 如有侵权,请联系我们删除。

“vscode Ctrl D 复制到下一行 快捷键”的评论:

还没有评论