PowerShell 技能连载 - 在 PowerShell ISE 中切换注释
PowerShell ISE 暴露了一些可扩展的组件。例如,如果您希望按下 CTRL
+K
切换选中文本的注释状态,请试试这段代码:
1 | function Toggle-Comment |
它基本上是使用 $psise
来操作 ISE 对象模型,然后安装一个快捷键为 CTRL
+K
的新的菜单命令来调用 Toggle-Comment
函数。
在位于 $profile
的用户配置文件脚本中(这个路径可能还不存在)增加这段代码,PowerShell ISE 每次启动的时候就会自动运行这段代码。
PowerShell 技能连载 - 在 PowerShell ISE 中切换注释
http://blog.vichamp.com/2017/11/28/toggling-comments-in-powershell-ise/