We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The command to open a URI in Microsoft Edge is: start microsoft-edge:http://www.google.com
start microsoft-edge:http://www.google.com
Problematically, the method used to open a URI in this package is to use the stored command and append a space and the URI:
if pluginSettings["baseCommand"]: command = "%s %s" % (pluginSettings["baseCommand"], fileToOpen.decode().encode(sys.getfilesystemencoding()) if self._pythonVersion < 3 else fileToOpen,)
The command for Microsoft Edge does not work with a space between the command and the URI, so a special case will need to be added.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The command to open a URI in Microsoft Edge is:
start microsoft-edge:http://www.google.com
Problematically, the method used to open a URI in this package is to use the stored command and append a space and the URI:
The command for Microsoft Edge does not work with a space between the command and the URI, so a special case will need to be added.
The text was updated successfully, but these errors were encountered: