Skip to content

Instantly share code, notes, and snippets.

@mfakane
Created June 5, 2020 19:42
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 mfakane/b00aa69463603546ffe4e6a0262c9993 to your computer and use it in GitHub Desktop.
Save mfakane/b00aa69463603546ffe4e6a0262c9993 to your computer and use it in GitHub Desktop.
選択文字列を前後反転
^+r::
ClipSaved := ClipboardAll
Send ^c
ClipWait
Clipboard := Flip(Clipboard)
Send ^v
Clipboard := ClipSaved
ClipSaved =
Return
Flip(Str) {
Loop, Parse, Str
nStr = %A_LoopField%%nStr%
Return nStr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment