File tree Expand file tree Collapse file tree 3 files changed +48
-2
lines changed Expand file tree Collapse file tree 3 files changed +48
-2
lines changed Original file line number Diff line number Diff line change 1+ memory_normal =
2+ memory_alt =
3+
4+ ^!C ::
5+ memory_normal = %ClipBoard %
6+ Send , ^ c
7+ memory_alt = %ClipBoard %
8+ ClipBoard = %memory_normal%
9+ return
10+
11+ ^!V ::
12+ memory_normal = %ClipBoard %
13+ ClipBoard = %memory_alt%
14+ Send , ^ v
15+ ClipBoard = %memory_normal%
16+ return
Original file line number Diff line number Diff line change 1- # AltCopy
2- Copy to multiple clipboards, life made simple.
1+ # AltCopy - Multiple Clipboards.
2+ Life made simple, one clipboard at a time.
3+
4+ ![ Alt Text] ( demo.gif )
5+
6+ ## What it does
7+ - Copy to an alternative clipboard
8+ - Paste from an alternative clipboard
9+ - Maintain default copy/paste functionality
10+
11+ ## How to use
12+ #### Keybindings
13+ - ` Ctrl + Alt + c ` = Copy to register
14+ - ` Ctrl + Alt + v ` = Paste from register
15+
16+ #### Usage
17+ You can freely change between using ` Ctrl C / V ` and ` Ctrl Alt C / V ` to your wishes, the "Alt" clipboard is stored in a register within the hotkey.
18+
19+ ## Future idea's
20+ - ` Ctrl + Alt + x ` = Cut to register and paste what is currently in clipboard. (#1 )
21+
22+ ## How to install
23+ - Install AutoHotkey (https://www.autohotkey.com/ )
24+ - Copy ` AltCopy.ahk ` into your startup folder (Open run dialog -> ` shell:startup ` )
25+ - Double-click the ` AltCopy.ahk ` file if you do not wish to restart immediately.
26+ - Enjoy!
27+
28+ ## Customization
29+ #### If you rather use ` Ctrl + Shift + c `
30+ - Open the script in a text editor
31+ - Change ` ^!C:: ` and ` ^!V:: ` to ` ^+V:: ` ` ^+V:: `
32+ - Save and reload hotkey
You can’t perform that action at this time.
0 commit comments