diff options
| author | Mateja <mail@matejamaric.com> | 2021-04-10 01:00:14 +0200 | 
|---|---|---|
| committer | Mateja <mail@matejamaric.com> | 2021-04-10 01:00:14 +0200 | 
| commit | 5d22f95fecef1bbade79350a8585ce1b81fb9898 (patch) | |
| tree | c246b0a44bcbf6a24f6c73a9832f203efd3e7305 | |
| parent | 086870bda90b248d800bbce93a5ea7b63b6d1fc4 (diff) | |
| download | st-5d22f95fecef1bbade79350a8585ce1b81fb9898.tar.gz st-5d22f95fecef1bbade79350a8585ce1b81fb9898.zip | |
Applied `clipboard` patch.v1.3.2
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | x.c | 1 | 
2 files changed, 2 insertions, 0 deletions
| @@ -9,6 +9,7 @@ This is my fork of [st][stterm] terminal with following patches applied:  - newterm  - desktopentry  - scrollback (with mouse) +- clipboard  ## Dependencies: @@ -677,6 +677,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 | 
