Keyboard shortcut to take file out of preview mode in VSCode

限于喜欢 提交于 2019-12-17 18:45:06

问题


If I quick open a file using the quick open menu, is there a keyboard shortcut that will take the opened file outside of preview mode so that when I open a new file it won't replace the currently open one?

(I'm looking for a keyboard shortcut as opposed to double-clicking the filename or tab in order to keep my workflow keyboard oriented)


回答1:


Try the View: Keep Editor command (default shortcut Ctrl+K, Enter):

Note: this shortcut is a chord, meaning that Enter must be pressed after releasing Ctrl+K.




回答2:


If you would rather open the file directly from Quick Open (skipping the preview mode altogether), you can change this in the settings or add this to settings.json:

"workbench.editor.enablePreviewFromQuickOpen": false

If you want to disable previews for other means of opening files (like the project explorer), this will do the trick:

"workbench.editor.enablePreview": false



回答3:


As of v1.19 (released in December 2017) Alt+Enter opens the file (after Ctrl+P) NOT in preview mode but in a "permanent", touched status.

Related question: How do I configure Visual Studio Code to open files always in a new tab?



来源:https://stackoverflow.com/questions/45945820/keyboard-shortcut-to-take-file-out-of-preview-mode-in-vscode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!