Autohotkey: clipboard enhancements don't work in Google Docs word processor

Posted by Robert Mark Bram on Super User See other posts from Super User or by Robert Mark Bram
Published on 2010-06-13T04:42:24Z Indexed on 2010/06/13 4:42 UTC
Read the original article Hit count: 350

Filed under:
|
|

Came across this amazing AutoHotkey tip in an earlier question:

Clipboard enhancements

; Append to clipboard (cut)
^+x::
clipboardBefore = %clipboard%
Send ^x
ClipWait, 2
clipboard = %clipboardBefore% %clipboard%
return

; Append to clipboard (copy)
^+c::
clipboardBefore = %clipboard%
Send ^c
ClipWait, 2
clipboard = %clipboardBefore% %clipboard%
return

Source: most useful autohotkey scripts

But the append copy and cut don't seem to work in Google Docs (word processing). Anyone know how they can be fixed?

Rob :)

© Super User or respective owner

Related posts about google

Related posts about autohotkey