レンガ積みのブログ

開発ツールとかの忘備録

VisualStudioCode

最近流行りのテキストエディタまとめ(書きかけ)

プログラマ向けテキストエディタのメモほんの少し前まではVimかEmacsかぐらいしか話に上がってこなかったのに、最近はいろいろ話題にでるエディタが登場している。現在はVisualStudioCodeで開発するのが気に入っているが、身の回りの人が使っていたり、話に…

Visual Studio Codeのtasks.jsonメモ

code.visualstudio.com Visual Studio Codeの tasks.jsonとlaunch.json内で使える変数 ${workspaceRoot} the path of the folder opened in VS Code ${file} the current opened file ${fileBasename} the current opened file's basename ${fileDirname} th…

WindowsでVisual Studio Codeの拡張機能開発環境を整える

事前準備 renga.hatenadiary.com yo,generator-codeをインストール コマンドプロンプトから以下のコマンドでインストールできる npm install -g yo npm install -g generator-code generator-codeで雛形コードを生成する コマンドプロンプトから以下のコマン…

Visual Studio Codeのおすすめのユーザー設定

vscodeのおすすめの設定 【必須】shftjis対応設定(日本語の文字化け対策) 【推奨】空白文字の表示 【推奨】垂直ルーラー表示 【推奨】保存時に末尾の空白削除 ユーザー設定ファイルを開く setting.jsonの中を変更して保存 { // ファイルの読み取り/書き込…

WindowsでPythonの環境構築

おすすめの環境 Anaconda + Visual Studio Code で開発するのがおすすめ自分の環境は OS:Windows10 Python:Python 3.5.1 :: Anaconda 4.0.0 (64bit) エディタ:Visual Studio Code version 1.3.0 Anaconda Python+主要なPythonライブラリのセットを簡単にイ…