How to open a file on a single click? #10989
-
When I click on a file in the file tab, the file open but the cursor/focus is not on the editor. I need to double click on the file to have focus on the editor. The main issue comes from the confusion in terms of UX: when I click once, the code appears in the editor but I cannot move the cursor. I need to double click to bring the cursor. If the editor shows the code, I expect to bring the focus (e.g. as IntelliJ does: a single click selects the file but does not show it to the user, a double click shows the file and brings focus). Is there a way (config file) to open the editor and focus the cursor on a single click? Additional question: what is the binding to switch from the editor to the file panel? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This feature was recently added to zed as, preview tabs where on single click to view file and to pin them you have to double click the file, #4922 you can put this in your
Also, the binding to switch from editor to explorer is |
Beta Was this translation helpful? Give feedback.
This feature was recently added to zed as, preview tabs where on single click to view file and to pin them you have to double click the file, #4922
you can put this in your
settings.json
to turn this feature offAlso,…