Python Forum
Additional buffer for Windows - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Additional buffer for Windows (/thread-25459.html)



Additional buffer for Windows - constantin01 - Mar-31-2020

I would like to write a program for extending the number of buffers available for the user. We have a default ctrl+c and ctrl+v but I want to have additional buffers with others keys, let say ctrl+b and ctrl+n.

The first idea that comes to me is to create txt file for each buffer and just to save in them selected text information when the user uses ctrl+b. But in this case, it is impossible to save images.

So, are there some neater ways to implement my idea with Python?