-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context menu for file explorer does not respect Print item position setting #208
Comments
Thank you for reporting this. As menu position is entirely done with settings and an expression in It used to work, but I can reproduce the problem so I suppose the way VS Code handles this must have changed. I'll look into it. |
Ah, i am referring to the file system context menu I keep hitting print when I want to create a new file so it has been bugging me a lot. What would be a solution? |
You could hack your |
Probably the quickest thing would be to disable Print in the extensions list, enable/disable is pretty quick. The other thing that might ease your pain is using Ctrl+N to create a file instead of using the mouse. |
This change to Here it is as text so you can copy and paste insteading of typing all that. {
"when": "ecmPrint == Top",
"command": "vsc-print.print",
"group": "navigation"
},
{
"when": "ecmPrint == Bottom",
"command": "vsc-print.print",
"group": "Z_commands"
} Once you've applied the patch you will find that the file explorer context menu also respects the setting. |
Thanks 👍 |
print.editorContextMenuItemPosition
does not seem to work
I have checked both user settings and workspace settings, both are set to bottom, but print still shows on top. Is this only affecting me?
The text was updated successfully, but these errors were encountered: