Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off hyperlinks in vscode?

I want to disable hyperlinks in VSCode so badly because every time I copy a link, I use cursor and cmd + c, then vscode determines that I use cmd + click to follow a link and open in browser. That drives me crazy! And I find no clue to turn off hyperlinks in VSCode.

enter image description here

like image 593
Natsu Avatar asked May 17 '17 03:05

Natsu


People also ask

How do I stop VS Code pop ups?

Type “editor. hover. enable” into the search field then check/uncheck the checkbox associated with “Controls whether the hover is shown.” to enable/disable the suggestion tooltip on hover.


1 Answers

You are looking for :

// Controls whether the editor should detect links and make them clickable

"editor.links": true,

That is the default, make yours false. I do not know when this was added to VSCode.

like image 137
Mark Avatar answered Oct 22 '22 22:10

Mark