set fenc=utf-8 bomb
只是在设置FENC 的时候, 后面要加个BOMB, 告诉VIM 要加BOM 头
--
Feng
Dim oShell, oExec, sLine
dim url
url = "http://www.tek-tips.com/viewthread.cfm?qid=1520693&page=20"
Set oShell = CreateObject("WScript.Shell")
'Set oExec = oShell.Exec("%COMSPEC% /c md5 ""-d" & url & """")
Set oExec = oShell.Exec("md5 ""-d" & url & """")
Do While oExec.Status = 1
WScript.Sleep 50
Loop
Do Until oExec.StdOut.AtEndOfStream
sLine = oExec.StdOut.ReadLine
Loop
WScript.Echo sLine
--
Feng
--
Feng
"syntax match num /\d*/ contained
highlight link header_name Statement
highlight link header function
highlight link method include
highlight link direction type
highlight link status lcursor
"highlight link deep_link underlined
--
Feng