LoginSignup
28

More than 3 years have passed since last update.

VSCodeリンク集

Last updated at Posted at 2015-06-21

Extensions

文字コード自動判別

settings.json
"files.autoGuessEncoding": true

PHP Debug

launch.json
  {
      // IntelliSense を使用して利用可能な属性を学べます。
      // 既存の属性の説明をホバーして表示します。
      // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
      "version": "0.2.0",
      "configurations": [
          {
              "name": "Listen for XDebug",
              "type": "php",
              "request": "launch",
              "port": 9000,
-             "stopOnEntry": true
+             "stopOnEntry": true,
+             "pathMappings": {
+                 "/var/www/html": "${workspaceRoot}"
+             }
          },
          {
              "name": "Launch currently open script",
              "type": "php",
              "request": "launch",
              "program": "${file}",
              "cwd": "${fileDirname}",
              "port": 9000
          }
      ]
  }

日本語化

  • Japanese Language Pack for Visual Studio Code

ja.png

Draw.io

  • VSCodeの拡張機能検索窓で Draw.io Integration と検索してインストール。
  • 拡張子を .drawio もしくは .dio でファイルを作成し開くだけ。

draw.png

Prettier (コード整形)

prettier.png


起動

  • 起動 : code
  • 端末 : Ctrl-` , ファイル名を右クリック -> ターミナルで開く
  • ctrl-p から以下で拡張機能インストール
git_log
ext install githistory
tasks.json
"command": "g++",
"args": ["-g3", "a.c"],
launch.json
"program": "${workspaceRoot}/a.out",
gdb
gcc -g3 a.c
gdb a.out
(gdb) b a.c:5
(gdb) run

以下古い

プラグイン機能は開発中の様子

  • まだ利用できない。

MacでASP.NET

Git bashから起動

Font指定

"editor.fontFamily": "'Migu 1M'"

Node.js

TypeScript

TypeScriptをコンパイル

ショートカットキー設定

markdown環境、日本語フォント

ubuntu用設定

Mac用設定

Unity、壁紙設定、その他カスタマイズ

数式

動作について

sublimeはお金ないし買ってね♡メッセージ邪魔だし嫌だ!!
Atomは遅いから嫌だ!!
って人ならわりかしありだと思います。

実際にUnityで開発を始めると、Consoleに出たエラーメッセージなどから該当行にジャンプできなくてつらいことが判明。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
28