Chet
Chet

Reputation: 19829

How to remove sidebar search from VSCode?

How do I remove this search feature? Its ruining all my keyboard shortcuts!

enter image description here

Upvotes: 7

Views: 1485

Answers (2)

Alex
Alex

Reputation: 67473

From vscode 1.32.0:

"workbench.list.automaticKeyboardNavigation": false,

Command id that temporarily toggles it back:

list.toggleKeyboardNavigation

Upvotes: 10

mark kopenga
mark kopenga

Reputation: 343

Add "workbench.list.keyboardNavigation": "simple" to your VSCode settings

  1. In the editor press: Ctrl + shift + p
  2. Type: settings
  3. Click on: Preferences: Open settings (JSON)
  4. Add the following line: "workbench.list.keyboardNavigation": "simple"

Upvotes: 0

Related Questions