16
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[VS Code]勝手に閉じタグにカーソルが複製されてしまう機能の無効化

Posted at

先日、HTML ファイルで開始タグにカーソルを合わせると、勝手に閉じタグにカーソルが生成されていることに気づいた。

スクリーンショット 2019-12-16 19.25.45.png

おそらく最近追加された機能の様だが、不要というかかなり煩わしいので消す方法を探していたら見つけることができた。

設定( [左下の歯車アイコン]>[設定]、または Ctrl+,、Macは+,)から「Mirror Cursor」 で検索すると出てくる、
HTML: Mirror Cursor On Matching TagEnable/disable mirroring cursor on matching HTML tagのチェックをはずすと無効になる。

スクリーンショット 2019-12-16 19.26.36.png

↑ のチェック

なお、settings.json で無効にする場合は下記を json に追記すると良い。

"html.mirrorCursorOnMatchingTag": false,
16
6
1

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
16
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?