Make selected block of text uppercase

前端 未结 13 1788
旧巷少年郎
旧巷少年郎 2020-12-12 09:50

Can I make a multi-line selection of text all capitals in Visual Studio Code?

In full Visual Studio it\'s CTRL+SHIFT+U

13条回答
  •  借酒劲吻你
    2020-12-12 10:03

    I'm using the change-case extension and it works fine. I defined the shortcuts:

    { 
      "key": "ctrl+shift+u", 
      "command": "extension.changeCase.upper", 
      "when": "editorTextFocus" 
    },
    { 
      "key": "ctrl+u",
      "command": "extension.changeCase.lower", 
      "when": "editorTextFocus" 
    },
    

提交回复
热议问题