Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code URL Highlighting

Currently in Visual Studio Code all URL's are highlighted with an underline, and this underline is actionable with a Ctrl + Click.

Is it possible to turn this URL highlighting feature off?

Screenshot

like image 558
unjx Avatar asked Sep 03 '25 04:09

unjx


1 Answers

Try the editor.links setting in settings.json:

// Controls whether the editor should detect links and make them clickable
"editor.links": true,

With "editor.links": true

// Controls whether the editor should detect links and make them clickable
"editor.links": false,

enter image description here

like image 100
apk Avatar answered Sep 04 '25 20:09

apk