mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update
This commit is contained in:
parent
07060a8584
commit
2310d36604
1 changed files with 3 additions and 3 deletions
|
|
@ -3,14 +3,14 @@ using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace Wox.Plugin.WebSearch.Commands
|
namespace Wox.Plugin.SharedCommands
|
||||||
{
|
{
|
||||||
internal static class SearchWeb
|
public static class SearchWeb
|
||||||
{
|
{
|
||||||
/// <summary> Opens search in a new browser. If no browser path is passed in then Chrome is used.
|
/// <summary> Opens search in a new browser. If no browser path is passed in then Chrome is used.
|
||||||
/// Leave browser path blank to use Chrome.
|
/// Leave browser path blank to use Chrome.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static void NewBrowserWindow(this string url, string browserPath)
|
public static void NewBrowserWindow(this string url, string browserPath)
|
||||||
{
|
{
|
||||||
var browserExecutableName = browserPath?
|
var browserExecutableName = browserPath?
|
||||||
.Split(new[] { Path.DirectorySeparatorChar }, StringSplitOptions.None)
|
.Split(new[] { Path.DirectorySeparatorChar }, StringSplitOptions.None)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue