VS Code
設定
サイドメニューを右に表示する
設定項目は、View→Appearanceにある
setting.json
File → Preferences → Settings → ファイルアイコン で開く
例
code:json
"editor.codeActionsOnSave": [
"source.fixAll.eslint",
],
プラグイン
Live Share
ペア・プログラミング
チャットや、コード上にコメントが可能。とても便利。
一度招待すれば、招待ユーザーをVS Codeに記憶できるみたい。
VSCode Live shareの拡張機能
音声通話ができる?
regex
chrome debugger
----
Xdebug設定
php debug (xdebug)
PHP IntelliSense
code:ini
zend_extension="/usr/lib64/php/modules/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.remote_host=10.0.2.2
xdebug.remote_port = 9000
code:json
"php.validate.executablePath": "C:\/php-7.2.9-nts-Win32-VC15-x64/php.exe",
"php.executablePath": "C:\/php-7.2.9-nts-Win32-VC15-x64/php.exe",
importの最適化
code:json
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
コマンド
インストールされているものすべて表示
code --list-extensions | xargs -L 1 echo code --install-extension
------
shellcheck