Python Forum

Full Version: Additional buffer for Windows
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?