Skip to content
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

Mouse 4/5 button(Go Forward & Go Back function) is not working as expected because of the default feature of Chrome #4573

Closed
ericzhucode opened this issue Dec 2, 2021 · 4 comments
Labels
feature New user visible feature upstream:vscode Needs to be fixed upstream in VSCode

Comments

@ericzhucode
Copy link

ericzhucode commented Dec 2, 2021

In VSCode, we have mouse back forward to navigate feature.
image
There're keyboard shortcuts as well as mouse buttons(four and five) to do this action.
In local VSCode, mouse buttons are working perfectly.
However, in code server, since mouse button four and five is also performing as forward and back of the websites in chrome, it will not go forward and back between files in code server but change the current website.
Meanwhile, go forward and go back is working properly in https://vscode.dev
Is it possible to add an event to prevent this default action of chrome? Like

this._register(dom.addDisposableListener(window,'popState', () => {
window.history.pushState(null, '', document.URL);
}))

@ericzhucode ericzhucode added the feature New user visible feature label Dec 2, 2021
@jsjoeio
Copy link
Contributor

jsjoeio commented Dec 6, 2021

Meanwhile, go forward and go back is working properly in https://vscode.dev

Ahh, I was going to ask you to test but you already did 👍 That's indeed a code-server issue then.

Is it possible to add an event to prevent this default action of chrome? Like

this._register(dom.addDisposableListener(window,'popState', () => {
window.history.pushState(null, '', document.URL);
}))

I wonder if this would have other unintended consequences? We'd have to double-check and investigate further.

@jsjoeio jsjoeio added this to the Backlog Candidates milestone Dec 6, 2021
@neilflatley
Copy link

Hitting mouse button 4 will take me back to the previous folder or login screen using browser navigation rather than going back in code.

This browser extension (enabled only on my VSCode server pages) appears to have worked around this problem for me in Chromium Edge
https://chrome.google.com/webstore/detail/ffmsb-freedom-for-mouse-s/najmjkgimjhilaleingfkhedncclmmaf?hl=en

I can navigate back and forth in code using mouse buttons 4/5 and I keep default browser behaviour in all other sites

Link found from an answer here: https://www.reddit.com/r/brave_browser/comments/o85hh4/how_do_i_disable_the_mouse_4_and_mouse_5_buttons/

HTH until a similar fix for this problem can be implemented natively

@ericzhucode
Copy link
Author

@neilflatley
Thank you for suggestion. I have tried this extension and very helpful. 😊

@code-asher
Copy link
Member

Closing as an upstream issue, we should try to reproduce on Codespaces if this is still an issue and report at https://github.com/microsoft/vscode

@code-asher code-asher closed this as not planned Won't fix, can't repro, duplicate, stale Jul 13, 2024
@code-asher code-asher added the upstream:vscode Needs to be fixed upstream in VSCode label Jul 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New user visible feature upstream:vscode Needs to be fixed upstream in VSCode
Projects
None yet
Development

No branches or pull requests

4 participants