Open TrevorSayre opened 7 years ago
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 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.