recommend me a ahk clipboard manager

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Kaique
Posts: 1
Joined: 06 May 2021, 12:11

recommend me a ahk clipboard manager

06 May 2021, 12:22

i need a clipboard manager with hotkeys that allow me paste like: ctrl+shift+1 paste the first thing saved and thus successively
User avatar
mikeyww
Posts: 26971
Joined: 09 Sep 2014, 18:38

Re: recommend me a ahk clipboard manager

06 May 2021, 12:45

Some popular ones:

ClipJump
Ditto
ClipClip
Clip Angel

The scripts forum section might have more that have been posted. You can also write your own without much trouble, since AHK can capture the clipboard when it changes.
ahk7
Posts: 575
Joined: 06 Nov 2013, 16:35

Re: recommend me a ahk clipboard manager

08 May 2021, 04:29

Perhaps overkill, but you can add some hotkeys to CL3 - https://www.autohotkey.com/boards/viewtopic.php?f=6&t=814 - I would recommend this to be added to plugins\MyPlugins.ahk (and restart CL3)

Code: Select all

^+1::
^+2::
^+3::
^+4::
; etc
OnClipboardChange("FuncOnClipboardChange", 0)
Clipboard:=History[SubStr(A_ThisHotkey,0)].text
Sleep 200
PasteIt()
Sleep 200
Clipboard:=History[1].text
OnClipboardChange("FuncOnClipboardChange", 1)
Return

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Araphen, DataLife, ShatterCoder, sofista and 299 guests