Skip to content

Instantly share code, notes, and snippets.

@yaqinking
Last active December 8, 2016 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaqinking/a4d52f263b415a3023d057bfcdf14bcc to your computer and use it in GitHub Desktop.
Save yaqinking/a4d52f263b415a3023d057bfcdf14bcc to your computer and use it in GitHub Desktop.
在 Notepad++ 里面转换编码
; yaqinking
; ctrl alt 3 是窝在 Notepad++ 里设置的转换编码到 UCS2LE 的快捷键
; 按 ctrl alt v 之后执行 输入数量 次转换编码的操作
^!v::
InputBox, FileCount, 文件数量, 请输入要转换的文件数量, , 320, 120
Loop, %FileCount%
{
Send ^!3
sleep 50
Send ^s
sleep 50
Send ^w
sleep 50
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment