Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions onlinejudge_command/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ def webbrowser_register_explorer_exe() -> None:

if not is_windows_subsystem_for_linux():
return
if os.getenv('REMOTE_CONTAINERS', '').lower() == "true":
return
instance = webbrowser.GenericBrowser('explorer.exe')
webbrowser.register('explorer', None, instance, preferred=True) # `preferred=True` solves the issue that terminal logs are cleared on cmd.exe with stopping using wslview via www-browser. TODO: remove `preferred=True` after https://github.com/wslutilities/wslu/issues/199 is fixed.

Expand Down