36 Star 70 Fork 31

linxinhong / VimDesktop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
check.ahk 2.17 KB
一键复制 编辑 原始数据 按行查看 历史
linxinhong 提交于 2015-02-09 13:44 . ++ 增加vim.SetModeFunction()
#NoTrayIcon
#NoEnv
FileEncoding,utf-8
ExtensionsAHK := A_ScriptDir "\Lib\VIMD_Plugins.ahk"
/*If Not FileExist(ExtensionsAHK)
FileAppend,,%ExtensionsAHK%
FileRead,Extensions,%ExtensionsAHK%
; 验证Extensions里Include的插件是否存在
Loop,Parse,Extensions,`n,`r
{
If Not RegExMatch(A_LoopField,"i)^#include")
Continue
If FileExist(RegExReplace(A_LoopField,"i)^#include\s(\*i\s)?%A_ScriptDir%\\"))
{
Match := "\t" ToMatch(SubStr(A_LoopField,35)) "\t"
If Not RegExMatch(ExtensionsNames,Match)
NewExtensions .= A_LoopField "`r`n"
ExtensionsNames .= A_Tab Substr(A_LoopField,35) A_Tab
}
}
*/
; 清理无用#include
Filedelete,%ExtensionsAHK%
FileAppend,%NewExtensions%,%ExtensionsAHK%
; 查询是否有新插件加入
Loop,%A_ScriptDir%\Plugins\*.*,2
plugins .= "#include *i `%A_ScriptDir`%\plugins\" A_LoopFileName "\" A_LoopFileName ".ahk`n"
FileAppend,%plugins%,%ExtensionsAHK%
; 保存修改时间
SaveTime := "/*`r`n[ExtensionsTime]`r`n"
Loop,%A_ScriptDir%\plugins\*.*,2
{
plugin := A_ScriptDir "\plugins\" A_LoopFileName "\" A_LoopFileName ".ahk"
FileGetTime,ExtensionsTime,%plugin%,M
SaveTime .= A_LoopFileName "=" ExtensionsTime "`r`n"
}
SaveTime .= "*/`r`n"
FileAppend,%SaveTime%,%ExtensionsAHK%
FileRead,Extensions,%ExtensionsAHK%
Send_WM_COPYDATA("reload")
Exit
Send_WM_COPYDATA(StringToSend)
{
VarSetCapacity(CopyDataStruct, 3*A_PtrSize, 0)
SizeInBytes := (StrLen(StringToSend) + 1) * (A_IsUnicode ? 2 : 1)
NumPut(SizeInBytes, CopyDataStruct, A_PtrSize)
NumPut(&StringToSend, CopyDataStruct, 2*A_PtrSize)
Prev_DetectHiddenWindows := A_DetectHiddenWindows
Prev_TitleMatchMode := A_TitleMatchMode
DetectHiddenWindows On
SetTitleMatchMode 2
iniRead,hwnd,%A_Temp%\vimd_auto.ini,auto,hwnd
SendMessage, 0x4a, 0, &CopyDataStruct,, ahk_id %hwnd%
DetectHiddenWindows %Prev_DetectHiddenWindows%
SetTitleMatchMode %Prev_TitleMatchMode%
return ErrorLevel
}
ToMatch(str){
str := RegExReplace(str,"\+|\?|\.|\*|\{|\}|\(|\)|\||\^|\$|\[|\]|\\","\$0")
Return RegExReplace(str,"\s","\s")
}
; ToReplace(str) {{{2
;
ToReplace(str){
If RegExMatch(str,"\$")
return Regexreplace(str,"\$","$$$$")
Else
Return str
}
AutoHotkey
1
https://gitee.com/linxinhong/VimDesktop.git
git@gitee.com:linxinhong/VimDesktop.git
linxinhong
VimDesktop
VimDesktop
master

搜索帮助