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

[VSCode] 貼り付けが上手くいかない場合の設定メモ

0
Last updated at Posted at 2026-02-13

はじめに

VSCode使用中に、バックグラウンドタスクなどでPCに負荷が掛かっている場合に、貼り付けに失敗する事があります。
その対処法です。

環境

Version: 1.109.2 (user setup)
Commit: 591199df409fbf59b4b52d5ad4ee0470152a9b31
Date: 2026-02-10T20:18:23.520Z
Electron: 39.3.0
ElectronBuildId: 13168319
Chromium: 142.0.7444.265
Node.js: 22.21.1
V8: 14.2.231.22-electron.0
OS: Windows_NT x64 10.0.26200

設定

以下のチェックを外す。

Editor › Paste As: Enabled
  Controls whether you can paste content in different ways.

Paste As: Enabledにチェックが入っていると、Markdownなどに、画像を張り付けようとすると自動でリンクとして張り付けるなどが出来るようになります。
一方で、チェックを外すと、プレーンテキストのみを張り付けるようになります。

settings.jsonで設定する場合は、以下になります。

settings.json
  "editor.pasteAs.enabled": false,

Setting ID
editor.pasteAs.enabled
Setting URL
vscode://settings/editor.pasteAs.enabled
0
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
0
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?