更改 PowerShell ISE 键盘快捷键

更改 PowerShell ISE 键盘快捷键

是否可以使用注册表破解或其他机制来更改 PowerShell ISE 中的默认快捷方式?为了保持一致性,我想将调试快捷方式修改为我在其他应用程序中使用的键。

答案1

这应该有所帮助(重新分配切换大纲的 CTRL + M 快捷键的示例):stackoverflow.com/questions/53577234 ..摘自帖子:

$Display = "Select Current Line"
$Action = { $psise.CurrentFile.Editor.SelectCaretLine() }
$Shortcut = "Ctrl+L"
$psise.CurrentPowerShellTab.AddOnsMenu.Submenus.Add($Display,$Action,$shortcut)

相关内容