Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I disable Rickroll in Visual Studio Code even if it is not installed?

when I try to compile an HTML code in my visual studio code, the rickroll begins even if the extension is already uninstalled.

enter image description here

like image 574
Innanov Avatar asked Nov 07 '22 00:11

Innanov


1 Answers

As you can read in the Details section of the extension, it does modify the desktop.main.css file, so in order to remove the rickroll you have to run the command Rickroll remove Rick from the command palette. Done that, you should be able to uninstall the extension and reload the window.

Edit: If the problem persists be sure to have fully deleted, in the VSCode_Installation_Folder/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.css file, the code between /*ext-vscode-rickroll-start*/ and /*ext-vscode-rickroll-end*/; then, after making sure you've uninstalled the extension, reload the window by the command Developer: Reload Window

like image 81
CcmU Avatar answered Dec 05 '22 10:12

CcmU