欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > > 文章正文

VS Code中转换大小写功能,vscode转换大小写

来源: javaer 分享于  点击 1333 次 点评:249

VS Code中转换大小写功能,vscode转换大小写


一 、默认情况下VS Code的编辑菜单或快捷键中没有 转换为大写,转换为小写的功能

解决方案1:使用键盘配置,开启转换为小写,转换为大写的快捷键 

以VS中的 快捷键为例:

小写 -》Ctrl+U

大写=》Ctrl+Shift+U


解决方案2,直接修改keybings.json 添加配置

    {
        "key": "ctrl+shift+u",
        "command": "editor.action.transformToUppercase",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl+shift+l",
        "command": "editor.action.transformToLowercase",
        "when": "editorTextFocus"
    }


更多:

VS Code修改选中文字或代码的颜色

VS Code 列编辑功能说明

VS Code使用技巧整理

相关文章

    暂无相关文章

用户点评