VSCode
#VSCode
Cmd+Shift+E で Exploer
言語ごとの設定
https://code.visualstudio.com/docs/getstarted/settings#_language-specific-editor-settings
インデント幅とかを言語ごとに設定できる
code:setting
...
"typescript": {
"editor.tabSize": 2
},
"python": {
"editor.tabSize": 4
}
公式tips集
⌘K⌘S でキーボードショートカット一覧表示
https://vscodethemes.com/
UserSnippet で yas の代わりになりそう
https://vscode-doc-jp.github.io/docs/userguide/userdefinedsnippets.html
もういいやと思ったので設定切り出した
https://github.com/pokutuna/vscode-settings
みんな Setting Sync 使ってるが...
デフォルトシェル変える
"terminal.integrated.shell.osx": "/usr/local/bin/zsh
Go のツール類最新にする
コマンドから Go: Install/Update Tools を選択してチェックつけてアップデート
https://gyazo.com/998385b45e4a763f181bea02e78c037e
右サイドバーの開閉
workbench.action.toggleAuxiliaryBar
Right でも Secondary でもなくて見つからない
GitHub Copilot や Cline/Roo Code など置いてる
MARK
# MARK: hoge などを書くと minimap に出てくる
Minimap: support // Mark meta comments to support custom rendering in the minimap · Issue 74843 · microsoft/vscode
エディタの行番号部分をせまくする
change the width of the line number · Issue #48791 · microsoft/vscode
code:settings.json
"editor.glyphMargin": false,
"editor.folding": false,
#dev #vscode