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でJavaを書いてる時に、うまくコピー&ペーストができない件の対処方法

Last updated at Posted at 2023-10-17

自分用のメモです。

現象

VSCodeでLanguage Support for Java(TM) by Red Hatという拡張機能を有効にしてあり、かつJavaファイル編集中にコピペを行う以下のような事象が発生します。

「`Language Support for Java(TM) by Red Hat`拡張子を使用して貼り付ける」か「プレーンテキストの挿入」かを求められてスムーズにペーストができません。
image.png

解決方法

以下のページにて解決方法が記載されていたので要約します。

対症療法ですが、VSCodeのsettings.jsonファイルに以下を追記すると事象は発生しなくなります。

{

    ... 

    "[java]": {
      "editor.pasteAs.enabled": false
   }
}

Javaファイル編集中は〇〇として貼り付け系の処理を止めちゃっているわけです。拡張機能の組み合わせによっては支障も出そうなので注意が必要です。


2024/03/30 追記 この事象についてまとめている人が他にもいるっぽいです

同じ事象についてアップデートしていた方がいるようなので、より新しい情報を知りたい方はこちらの記事を確認してみてくださいmm

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?