びぼうろくnote

サイト制作などの備忘録

VS Code ダウンロード~設定

・ダウンロード

www.sejuku.net

・日本語化

qiita.com

VSCodeでHTML/CSSファイルを編集しながらリアルタイムでプレビューする方法

qiita.com

VSCodeでテキスト選択(ctrl+shift+〇)のキーバインド登録方法
Ctrl + Shift + P で検索

qiita.com


・Vusual Studio Codeの標準での選択行を複製するショートカットキーをctrl+shift+Dに変更する


// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
}
]

terakoya.site