diff options
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -65,6 +65,9 @@ int allowaltscreen = 1; setting the clipboard text */ int allowwindowops = 0; +/* Set clipboard max size (default 4MiB) */ +#define CLIPBOARD_SIZE 4194304 + /* * draw latency range in ms - from new content/keypress/etc until drawing. * within this range, st draws when content stops arriving (idle). mostly it's @@ -183,6 +186,11 @@ static unsigned int mousebg = 0; */ static unsigned int defaultattr = 11; +/* Shortcuts */ +static Shortcut shortcut[] = { + { XKB_KEY_c, KEY_MOD_ALT, copy }, + { XKB_KEY_v, KEY_MOD_ALT, paste }, +}; /* * This is the huge key array which defines all compatibility to the Linux |