diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-06 16:47:55 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-06 16:47:55 +0100 |
commit | 212ade3e61e118c8eefbae40fd77c20683141b90 (patch) | |
tree | 719a01e58f18578748daba67cb487d8267bc1d1d | |
parent | Incomplete patch fix for hidecursor (diff) | |
download | st-212ade3e61e118c8eefbae40fd77c20683141b90.tar.gz st-212ade3e61e118c8eefbae40fd77c20683141b90.tar.bz2 st-212ade3e61e118c8eefbae40fd77c20683141b90.tar.xz st-212ade3e61e118c8eefbae40fd77c20683141b90.tar.zst st-212ade3e61e118c8eefbae40fd77c20683141b90.zip |
Added clipboard patch
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | README.org | 1 | ||||
-rw-r--r-- | x.c | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -36,6 +36,7 @@ Here is my list: - hidecursor - keyboard select - scrollback + - clipboard Settings -------- @@ -33,6 +33,7 @@ Here is my list: - /hidecursor/ - /keyboard select/ - /scrollback/ +- /clipboard/ * Settings Most settings are done by editing ~config.h~ and recompiling. @@ -562,6 +562,7 @@ setsel(char *str, Time t) XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t); if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win) selclear(); + clipcopy(NULL); } void |