-
-
Notifications
You must be signed in to change notification settings - Fork 208
Copy Buffers
sabrogden edited this page Feb 1, 2021
·
2 revisions
With copy buffers up to 3 buffers can be defined, Options - Copy Buffers. The goal is to have each buffer work independently from the standard copy/paste. So you can have data saved on the standard windows clipboard, allowing you to paste that with ctrl-v and have separate data stored in buffer 1 and paste that separate from ctrl-v.
windows data
my buffer
buffer 2
Now you can paste 'windows data' with ctrl-v and 'my buffer' with ctrl-+. Then copy data into into buffers using the copy short cut key.
Windows doesn't have any concept of multiple buffers so when pasting using a buffer the following steps are taken to fake it out
- Save the contents of the current windows clipboard
- Load the windows clipboard with the buffer's content
- Simulate a paste using the standard ctrl-v
- Wait for a few seconds
- Restore the original contents of the windows clipboard so the standard ctrl-v will paste what it should.