Skip to content

Commit

Permalink
update tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
vivainio committed Jan 26, 2024
1 parent 10ab70d commit 074e277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RoughGrep/Logic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static class Logic

public static List<ExternalCommand> ExternalCommands = new List<ExternalCommand>();
public static string Tutorial =
"Tutorial: space=preview, enter=edit, p=edit parent project dir, d=containing dir, n=take note, g=git history, f=find in results";
"Tutorial: space=preview, enter=edit, p=edit parent project dir,\nd=containing dir, n=take note, g=git history, f=find in results\nF12=open selected word";
public static SettingsStorage<StoredSettings> SettingsStorage =
new SettingsStorage<StoredSettings>("roughgrep", "settings.json");

Expand All @@ -51,7 +51,7 @@ public static void SetupShellIntegration()
var keyPath2 = @"HKEY_CURRENT_USER\Software\Classes\directory\Background\shell\RoughGrep\command";
var cmdline = $"\"{appPath}\" \"%V\"";
Registry.SetValue(keyPath2, "", cmdline, RegistryValueKind.ExpandString);

// Add Context menu icon
var iconPath = $"{Application.StartupPath}\\roughgrep.ico";
Registry.SetValue(keyPath, "Icon", iconPath);
Expand Down

0 comments on commit 074e277

Please sign in to comment.