diff --git a/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Main.cs b/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Main.cs index 4ee38e52fc..f579cba84f 100644 --- a/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Main.cs +++ b/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/Main.cs @@ -63,7 +63,7 @@ namespace Microsoft.Plugin.Indexer Result r = new Result(); r.Title = searchResult.Title; - r.SubTitle = path; + r.SubTitle = "Search: " + path; r.IcoPath = path; r.Action = c => { diff --git a/src/modules/launcher/Plugins/Wox.Plugin.Folder/Main.cs b/src/modules/launcher/Plugins/Wox.Plugin.Folder/Main.cs index 3b0d010e3f..41c0ee76a1 100644 --- a/src/modules/launcher/Plugins/Wox.Plugin.Folder/Main.cs +++ b/src/modules/launcher/Plugins/Wox.Plugin.Folder/Main.cs @@ -94,7 +94,7 @@ namespace Wox.Plugin.Folder { Title = title, IcoPath = path, - SubTitle = subtitle, + SubTitle = "Folder: " + subtitle, QueryTextDisplay = path, TitleHighlightData = StringMatcher.FuzzySearch(query.Search, title).MatchData, ContextData = new SearchResult { Type = ResultType.Folder, FullPath = path }, @@ -228,7 +228,7 @@ namespace Wox.Plugin.Folder var result = new Result { Title = Path.GetFileName(filePath), - SubTitle = filePath, + SubTitle = "Folder: " + filePath, IcoPath = filePath, TitleHighlightData = StringMatcher.FuzzySearch(query.Search, Path.GetFileName(filePath)).MatchData, Action = c => @@ -259,7 +259,7 @@ namespace Wox.Plugin.Folder { Title = firstResult, QueryTextDisplay = search, - SubTitle = $"Use > to search within the directory. Use * to search for file extensions. Or use both >*.", + SubTitle = $"Folder: Use > to search within the directory. Use * to search for file extensions. Or use both >*.", IcoPath = search, Score = 500, Action = c => diff --git a/src/modules/launcher/Plugins/Wox.Plugin.Shell/Main.cs b/src/modules/launcher/Plugins/Wox.Plugin.Shell/Main.cs index 3af8fe85b1..09fee7d80f 100644 --- a/src/modules/launcher/Plugins/Wox.Plugin.Shell/Main.cs +++ b/src/modules/launcher/Plugins/Wox.Plugin.Shell/Main.cs @@ -110,14 +110,14 @@ namespace Wox.Plugin.Shell { if (m.Key == cmd) { - result.SubTitle = string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value); + result.SubTitle = "Shell: " + string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value); return null; } var ret = new Result { Title = m.Key, - SubTitle = string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value), + SubTitle = "Shell: " + string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value), IcoPath = Image, Action = c => { @@ -136,7 +136,7 @@ namespace Wox.Plugin.Shell { Title = cmd, Score = 5000, - SubTitle = _context.API.GetTranslation("wox_plugin_cmd_execute_through_shell"), + SubTitle = "Shell: " + _context.API.GetTranslation("wox_plugin_cmd_execute_through_shell"), IcoPath = Image, Action = c => { @@ -154,7 +154,7 @@ namespace Wox.Plugin.Shell .Select(m => new Result { Title = m.Key, - SubTitle = string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value), + SubTitle = "Shell: " + string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value), IcoPath = Image, Action = c => { diff --git a/src/modules/launcher/Plugins/Wox.Plugin.WindowWalker/Main.cs b/src/modules/launcher/Plugins/Wox.Plugin.WindowWalker/Main.cs index 7c5da70c94..df1387e440 100644 --- a/src/modules/launcher/Plugins/Wox.Plugin.WindowWalker/Main.cs +++ b/src/modules/launcher/Plugins/Wox.Plugin.WindowWalker/Main.cs @@ -24,7 +24,7 @@ namespace Wox.Plugin.WindowWalker { Title = x.Result.Title, IcoPath = IcoPath, - SubTitle = x.Result.ProcessName, + SubTitle = "Running: " + x.Result.ProcessName, Action = c => { x.Result.SwitchToWindow();