Reputation: 41
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?
Upvotes: 4
Views: 1594
Reputation: 1681
Try the editor.links
setting in settings.json
:
// Controls whether the editor should detect links and make them clickable
"editor.links": true,
// Controls whether the editor should detect links and make them clickable
"editor.links": false,
Upvotes: 3