3f34673245c838fb42e7846783876d9548aab20b
Windows/VSCode.md
... | ... | @@ -99,6 +99,21 @@ |
99 | 99 | "command": "editor.action.jumpToBracket", |
100 | 100 | "when": "editorTextFocus" |
101 | 101 | }, |
102 | + { /* 大文字に変換 */ |
|
103 | + "key": "ctrl+shift+u", |
|
104 | + "command": "editor.action.transformToUppercase", |
|
105 | + "when": "editorHasSelection && editorTextFocus" |
|
106 | + }, |
|
107 | + { /* 小文字に変換 */ |
|
108 | + "key": "ctrl+u", |
|
109 | + "command": "editor.action.transformToLowercase", |
|
110 | + "when": "editorHasSelection && editorTextFocus" |
|
111 | + }, |
|
112 | + { /* [change-case](https://marketplace.visualstudio.com/items?itemName=wmaurer.change-case) */ |
|
113 | + "key": "ctrl+shift+c", |
|
114 | + "command": "extension.changeCase.commands", |
|
115 | + "when": "editorHasSelection && editorTextFocus" |
|
116 | + }, |
|
102 | 117 | ] |
103 | 118 | ``` |
104 | 119 | |
... | ... | @@ -218,6 +233,8 @@ |
218 | 233 | ```javascript |
219 | 234 | { |
220 | 235 | "recommendations": [ |
236 | + "bscan.perlnavigator", |
|
237 | + "chrischinchilla.vscode-pandoc", |
|
221 | 238 | "donjayamanne.githistory", |
222 | 239 | "DotJoshJohnson.xml", |
223 | 240 | "DougFinke.vscode-pandoc", |
... | ... | @@ -225,10 +242,12 @@ |
225 | 242 | "ionutvmi.reg", |
226 | 243 | "jebbs.plantuml", |
227 | 244 | "joelday.docthis", |
245 | + "mhutchie.git-graph", |
|
228 | 246 | "michelemelluso.code-beautifier", |
229 | 247 | "mortenhenriksen.perl-debug", |
230 | 248 | "ms-vscode.PowerShell", |
231 | 249 | "sfodje.perltidy", |
250 | + "wmaurer.change-case", |
|
232 | 251 | ] |
233 | 252 | } |
234 | 253 | ``` |
... | ... | @@ -240,6 +259,16 @@ |
240 | 259 | %UserProfile%/.vscode/extensions |
241 | 260 | ``` |
242 | 261 | |
262 | +## インストール済み拡張機能一覧 |
|
263 | +- Windows |
|
264 | + ``` |
|
265 | + PS> code.cmd --list-extensions |
|
266 | + ``` |
|
267 | +- Linux |
|
268 | + ``` |
|
269 | + $ code --list-extensions |
|
270 | + ``` |
|
271 | + |
|
243 | 272 | ## PowerShell プロファイル |
244 | 273 | - 統合ターミナルとなる PowerShell のプロファイルのパス |
245 | 274 | ``` |