skip to Main Content

How can I show the Code Runner shortcut in Visual Studio Code if I mistakenly hid it?"

1

I was using Visual Studio Code and I accidentally hid the Code Runner shortcut. Is there a way to show it again? I have tried searching in the keyboard shortcuts settings but can’t seem to find it. Any help would be appreciated (P.S I Know Many Of You will Say Use a Shortcut Key, or Reinstall the CodeRunner & VS Code But All Is Not Working)

How Can I get Code runner Shortcut Again

2

Answers


    1. Make sure that you enabled your "Code Runner" extension

    2. Go to the top right corner of VS Code to find a button that looks like three dots (…)

    3. Right click on it and press "Run Code"

      run code

    4. The Run Code button should reappear now

    Login or Signup to reply.
  1. @AnsonH‘s answer is most likely the solution you need:

    1. Make sure that you enabled your "Code Runner" extension

    2. Go to the top right corner of VS Code to find a button that looks like three dots (…)

    3. Right click on it and press "Run Code"

      run code

    4. The Run Code button should reappear now

    But there’s a chance you accidentally messed with the code-runner.showRunIconInEditorTitleMenu (accidentally set it to false), in which case you just need to remove the line that sets it to false from your settings.json files, or set it to true explicitly.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search