unjx
unjx

Reputation: 41

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

Upvotes: 4

Views: 1594

Answers (1)

apk
apk

Reputation: 1681

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

Upvotes: 3

Related Questions