save cmd history to settings

This commit is contained in:
Jeremy Wu 2021-04-12 14:25:39 +10:00
parent 3110c87ee9
commit ab52859461

View file

@ -9,7 +9,7 @@ namespace Flow.Launcher.Plugin.Shell
public bool LeaveShellOpen { get; set; }
public bool RunAsAdministrator { get; set; } = true;
public Dictionary<string, int> Count = new Dictionary<string, int>();
public Dictionary<string, int> Count { get; set; } = new Dictionary<string, int>();
public void AddCmdHistory(string cmdName)
{