1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VS codeのAI補間を無効化する

1
Posted at

VS codeのAI補間を無効化する

CPHP でプログラミングを VS code をしようとしたら、AI (GitHub Copilot) が勝手にコードの補間をするのがとてもイライラするので、次の手順で無効化しました。

手順

  1. Ctrl + , を同時に押す。
  2. 右上の Open Settings (JSON) を選択する。
    image.png
  3. 次の設定を追加する。
    image.png
settings.json
{
  "github.copilot.enable": {
      "*": false,
  },
}

これを保存して閉じれば、もう AI にコード補間されなくて楽です。

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?