VSCodeで最初にやること
日本語化
- 拡張機能「Japanese Language Pack for VS Code」をインストール
- VSCode上で「Ctrl+Shift+P」を押してコマンドパレットを開く
- Configure Display Languageを選択
- locale.jsonが開く
- localeをjaに設定
Emacsをインストール
- 拡張機能「Emacs Friendly Keymap」をインストール
- でもctrl+v, ctrl+sはwindows系を使いたい
ctrl+vをペーストにしたい場合
\Users\hoge\.vscode\extensions\lfs.vscode-emacs-friendly-0.8.2\package.json
{
"key": "ctrl+v",
"command": "emacs.C-y",
"when": "editorTextFocus && !editorReadonly"
}
ctrl+sを保存にしたい場合
\Users\hoge\.vscode\extensions\lfs.vscode-emacs-friendly-0.8.2\package.json
{
"key": "ctrl+s",
"command": "workbench.action.files.save",
"when": "editorTextFocus"
}
ターミナルをanacondaに変更
- 拡張機能「Emacs Friendly Keymap」をインストール
- でもctrl+v, ctrl+sはwindows系を使いたい
ctrl+vをペーストにしたい場合
\Users\hoge\.vscode\extensions\lfs.vscode-emacs-friendly-0.8.2\package.json
{
"key": "ctrl+v",
"command": "emacs.C-y",
"when": "editorTextFocus && !editorReadonly"
}
ctrl+sを保存にしたい場合
\Users\hoge\.vscode\extensions\lfs.vscode-emacs-friendly-0.8.2\package.json
{
"key": "ctrl+s",
"command": "workbench.action.files.save",
"when": "editorTextFocus"
}
ターミナルをanacondaに変更
起動スクリプトを下記に配置
\Users\hoge\Anaconda3\envs\anaconda3.bat
%windir%\System32\cmd.exe "/K" C:\Users\hoge\Anaconda3\Scripts\activate.bat C:\Users\hoge\Anaconda3
VSCode > ファイル > 基本設定 > 設定 で下記を追加
UserSettings
{
"python.pythonPath": "C:\\Users\\hoge\\Anaconda3\\pythonw.exe",
"terminal.integrated.shell.windows": "C:\\Users\\hoge\\Anaconda3\\envs\\Anaconda3.bat",
}
ctrl+@ でターミナルを起動
Author And Source
この問題について(VSCodeで最初にやること), 我々は、より多くの情報をここで見つけました https://qiita.com/underwell111/items/594e66ce086af9718340著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .