1 Star 1 Fork 0

gfcocos/autohotkey

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
explorer.ahk 849 Bytes
一键复制 编辑 原始数据 按行查看 历史
gfcocos 提交于 2014-04-04 00:37 . commit in cyou
exploer_get_dir()
{
clipboard =
send {Down}
send ^c
ClipWait, 0.01
if(ErrorLevel)
{
Send {Up}
Send ^c
ClipWait, 0.01
}
return clipboard
}
explorer_alt_g()
{
global GITBASH_APPPATH
path := exploer_get_dir()
if path =
return
SplitPath, path, , dir
Run, D:\Git\Git Bash.vbs %dir%, Max,
}
explorer_e()
{
global SUBLIME_APPPATH
path := CopySelection()
if path =
return
SplitPath, path, , dir
IfWinExist, ahk_group sublimetext_group
{
WinClose, ahk_group sublimetext_group
}
;else
;{
SoundBeep,
Run, %SUBLIME_APPPATH% %path%, , , thePid
GroupAdd, sublimetext_group, % "ahk_pid " thePid
;}
;sleep 2000
;if WinExist("ahk_class PX_WINDOW_CLASS")
;{
; WinHide ,
;}
;GroupAdd, sublimetext_group, % "ahk_pid " thePid
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
AutoHotkey
1
https://gitee.com/gfcocos/autohotkey.git
git@gitee.com:gfcocos/autohotkey.git
gfcocos
autohotkey
autohotkey
master

搜索帮助