現在個人でプログラミングの勉強をしています。
ちょっと前までSublimeText3
を使っていたのですが、ポップアップの頻度に嫌気がさし、友人からVSCode
の存在を教えてもらい、利用しています。
できる限り自分で設定をしていたのですが行コメントの切り替えがSublimeText3
ではCmd + /
でできていたのですが、VSCode
ではできない状態でかなり困っています(m_ _m)
わかる方がいらっしゃれば教えていただきますようよろしくお願いいたします(m_ _m)
※現在の設定
json
1 2//keybindings.json 3 4[ 5 { 6 "key": "cmd+/", 7 "command": "editor.action.commentLine", 8 "when": "editorTextFocus" 9 }, 10 { 11 "key": "alt+cmd+/", 12 "command": "-editor.action.commentLine", 13 "when": "editorTextFocus" 14 }, 15 { 16 "key": "cmd+/", 17 "command": "editor.emmet.action.toggleComment" 18 }, 19 { 20 "key": "cmd+/", 21 "command": "editor.action.addCommentLine", 22 "when": "editorTextFocus && !editorReadonly" 23 }, 24 { 25 "key": "cmd+k cmd+c", 26 "command": "-editor.action.addCommentLine", 27 "when": "editorTextFocus && !editorReadonly" 28 } 29] 30
VSCode
のコメント切り替えがCmd + /
でできるようにしたい
###動作環境
OS:mac
VSCode:1.28.0
###参考サイト

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。