@@ -75,34 +75,34 @@ internal List<Result> GetDefaultHotKeys()
7575 {
7676 new Result ( )
7777 {
78- Title = Settings . HotKeyInstall ,
78+ Title = Settings . InstallCommand ,
7979 IcoPath = icoPath ,
80- AutoCompleteText = $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . HotKeyInstall } ",
80+ AutoCompleteText = $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . InstallCommand } ",
8181 Action = _ =>
8282 {
83- Context . API . ChangeQuery ( $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . HotKeyInstall } ") ;
83+ Context . API . ChangeQuery ( $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . InstallCommand } ") ;
8484 return false ;
8585 }
8686 } ,
8787 new Result ( )
8888 {
89- Title = Settings . HotkeyUninstall ,
89+ Title = Settings . UninstallCommand ,
9090 IcoPath = icoPath ,
91- AutoCompleteText = $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . HotkeyUninstall } ",
91+ AutoCompleteText = $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . UninstallCommand } ",
9292 Action = _ =>
9393 {
94- Context . API . ChangeQuery ( $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . HotkeyUninstall } ") ;
94+ Context . API . ChangeQuery ( $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . UninstallCommand } ") ;
9595 return false ;
9696 }
9797 } ,
9898 new Result ( )
9999 {
100- Title = Settings . HotkeyUpdate ,
100+ Title = Settings . UpdateCommand ,
101101 IcoPath = icoPath ,
102- AutoCompleteText = $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . HotkeyUpdate } ",
102+ AutoCompleteText = $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . UpdateCommand } ",
103103 Action = _ =>
104104 {
105- Context . API . ChangeQuery ( $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . HotkeyUpdate } ") ;
105+ Context . API . ChangeQuery ( $ "{ Context . CurrentPluginMetadata . ActionKeyword } { Settings . UpdateCommand } ") ;
106106 return false ;
107107 }
108108 }
@@ -122,7 +122,7 @@ internal async Task InstallOrUpdate(UserPlugin plugin)
122122 Context
123123 . API
124124 . ChangeQuery (
125- $ "{ Context . CurrentPluginMetadata . ActionKeywords . FirstOrDefault ( ) } { Settings . HotkeyUpdate } { plugin . Name } ") ;
125+ $ "{ Context . CurrentPluginMetadata . ActionKeywords . FirstOrDefault ( ) } { Settings . UpdateCommand } { plugin . Name } ") ;
126126
127127 var mainWindow = Application . Current . MainWindow ;
128128 mainWindow . Show ( ) ;
0 commit comments