IE の「ソース表示」にメモ帳ではなくvim を使いたい

http://pcmania.jp/~moraz/howto/tips.html#ie_source

' wrapper of source view editor for IE.
Dim wsh, exe
Set wsh = WScript.CreateObject("WScript.Shell")
' 必要ならばフルパスで
exe = "C:\vim\gvim -R -c ""set ft=html"" "
For Each arg in Wscript.Arguments
exe = exe & " """ & arg & """"
Next
call wsh.Exec( exe )
Set wsh = Nothing

上記をvimと同じディレクトリに置く
単独で実行して動くことを確認

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source Editor\Editor Name]
@="c:\\vim\\gvim_srcview.vbs"

これをレジストリに登録する