1 Star 1 Fork 0

gfcocos/autohotkey

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
consol2.ahk 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
gfcocos 提交于 2014-04-04 00:37 . commit in cyou
; Launch console if necessary; hide/show on Win+`
Launch_console()
{
DetectHiddenWindows, on
IfWinExist ahk_class Console_2_Main
{
IfWinActive ahk_class Console_2_Main
{
WinHide ahk_class Console_2_Main
; need to move the focus somewhere else.
WinActivate ahk_class Shell_TrayWnd
}
else
{
WinShow ahk_class Console_2_Main
WinActivate ahk_class Console_2_Main
}
}
else
Run C:\Console2\Console.exe
; the above assumes a shortcut in the c:\windows folder to console.exe.
; also assumes console is using the default console.xml file, or
; that the desired config file is set in the shortcut.
DetectHiddenWindows, off
return
}
; hide console on "esc".
hide_console()
{
IfWinActive ahk_class Console_2_Main
{
WinHide ahk_class Console_2_Main
WinActivate ahk_class Shell_TrayWnd
}
return
}
;------------------------------------------------------------------------------
;;在命令行窗口启用快捷键粘贴
;------------------------------------------------------------------------------
;#IfWinActive ahk_class Console_2_Main
;^v::
;Send {Escape 2}ii
;SendInput %clipboard%
;#IfWinActive
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
AutoHotkey
1
https://gitee.com/gfcocos/autohotkey.git
git@gitee.com:gfcocos/autohotkey.git
gfcocos
autohotkey
autohotkey
master

搜索帮助