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 :)

link|improve this question
feedback

1 Answer

I tested this script in Google Docs and it appears to be working fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.