mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
41 lines
937 B
C#
41 lines
937 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.CMD
|
|
{
|
|
public class CMDStorage : JsonStrorage<CMDStorage>
|
|
{
|
|
[JsonProperty]
|
|
public bool ReplaceWinR { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool LeaveCmdOpen { get; set; }
|
|
|
|
[JsonProperty]
|
|
public Dictionary<string, int> CMDHistory = new Dictionary<string, int>();
|
|
|
|
protected override string FileName { get; } = "CMDHistory";
|
|
|
|
protected override CMDStorage LoadDefault()
|
|
{
|
|
ReplaceWinR = true;
|
|
return this;
|
|
}
|
|
|
|
public void AddCmdHistory(string cmdName)
|
|
{
|
|
if (CMDHistory.ContainsKey(cmdName))
|
|
{
|
|
CMDHistory[cmdName] += 1;
|
|
}
|
|
else
|
|
{
|
|
CMDHistory.Add(cmdName, 1);
|
|
}
|
|
Save();
|
|
}
|
|
|
|
}
|
|
}
|