"VS 2013 Color Theme Editor" 主题快捷方式

"VS 2013 Color Theme Editor" Shortcut to themes

我想在 Visual Studio 2013 中附加一个键盘快捷键来切换主题。

示例:Ctrl+1 将更改为浅色主题,Ctrl+2 将更改为深色主题等
我还安装了 Visual Commander,所以如果那里有宏,我想知道...

你可以试试宏。

alt + t
o
alt + c
[d/l/b] (dark/light/blue)
输入

值得一试 这是我的 autohotkey(http://www.autohotkey.com/)

脚本

^!1::
键等待 1
等待 ^
KeyWait !
发送,!t
发送,o
发送,!c
发送,l
发送 {Enter}
Return

^!1:: 是我分配给它的热键 :P