Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

vscode settings - "Go To File" keyboard short cut have disappeared from visual studio

I have tried to changed the short cut for "Go To File" command, and might have deleted it by mistake. how can I restore it?

question from:https://stackoverflow.com/questions/65829942/go-to-file-keyboard-short-cut-have-disappeared-from-visual-studio

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

With the Keyboard Shortcuts UI open (from the Gear icon), click on the odd Open Keyboard Shortcuts (JSON) icon on the right of the tab bar (or trigger the exact same command from the Command Palette).

In that file you will find something like:

{
  "key": "ctrl+e",
  "command": "-workbench.action.quickOpen"
},

(just do a find for that command). Delete that negated keybinding - note the leading - before the command which removes it (or comment it out) and it will reactivate.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...