From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25013 invoked by alias); 27 Sep 2013 00:35:27 -0000 Mailing-List: contact cygwin-xfree-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-xfree-owner@cygwin.com Reply-To: cygwin-xfree@cygwin.com Mail-Followup-To: cygwin-xfree@cygwin.com Received: (qmail 24999 invoked by uid 89); 27 Sep 2013 00:35:26 -0000 Received: from p3plsmtpa08-02.prod.phx3.secureserver.net (HELO p3plsmtpa08-02.prod.phx3.secureserver.net) (173.201.193.103) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 27 Sep 2013 00:35:26 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=3.8 required=5.0 tests=AWL,BAYES_50,RDNS_NONE,SPAM_SUBJECT autolearn=no version=3.3.2 X-HELO: p3plsmtpa08-02.prod.phx3.secureserver.net Received: from [10.0.1.148] ([72.209.18.161]) by p3plsmtpa08-02.prod.phx3.secureserver.net with id W0bN1m00S3UWwwg010bPJh; Thu, 26 Sep 2013 17:35:23 -0700 Message-ID: <5244D2C9.9000401@codespunk.com> Date: Fri, 27 Sep 2013 00:35:00 -0000 From: "Matt D." User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: cygwin-xfree Subject: Re: Clipboard periodically breaks References: <51B4D075.3050001@tiscali.co.uk> <51B5D4E2.20008@dronecode.org.uk> <51B6479A.5050707@tiscali.co.uk> <51C44820.4010307@dronecode.org.uk> <523E580D.8010807@codespunk.com> <524454A6.8030503@dronecode.org.uk> In-Reply-To: <524454A6.8030503@dronecode.org.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00027.txt.bz2 Jon, Thanks for looking into this. I can confirm that your changes correct the issue where highlighting next would cause arbitrary pastes to occur. Good work! I also concede that there does not seem to be a good solution to transparently fix the two-to-one clipboard issue; as XWin may indeed be able to interpret calls to X's two clipboards, there wouldn't be any reasonable way for it to identify which clipboard is actually being used. However, an environment variable that tells it which clipboard to use would provide an immediate solution and be used used on a per-application basis. For example, I can use aliases when launching programs: $ xclip=clipboard1 gedit $@ (monitor only clipboard 1) $ xclip=clipboard2 gedit $@ (monitor only clipboard 2) No option would indicate that both clipboard 1 and clipboard 2 would be handled as they are now. I'm not familiar with X programming but I'm assuming here that it would be possible for xclip to read from a particular process's own environment (rather than xclip's own) while processing a clipboard event to do this. What do you think? Matt D. On 9/26/2013 11:37 AM, Jon TURNEY wrote: >> In-Reply-To: <51C44820.4010307@dronecode.org.uk> > > Please start a new thread for a new subject. > > On 22/09/2013 03:38, Matt D. wrote: >> I often keep gedit sessions open on remote servers for maintaining various >> scripts. The problem I've encountered is that after a while I can no >> longer copy/paste between X and Windows. >> >> For example, I'll copy in windows and attempt to paste in gedit but nothing >> will happen. However, if I then proceed to copy something in gedit it will >> immediate "paste" that in place of where I had previously tried to paste >> from Windows. >> >> Sometimes I can get it working again by bombarding the clipboard with >> copy/pastes from both X and Windows. But most of the time I have to exit >> the ssh session and reconnect. >> >> Is this a known problem? > > We know there are bugs, but we don't know what they all are :-) > >> Here is an example screen capture and repeatable bug of the clipboard >> breaking. >> >> Synopsis: Copy from Windows, highlight text in gedit, clipboard breaks >> (paste doesn't work). Proceed to copy from gedit and suddenly that text >> gets pasted. Sometimes it will just start pasting while a selection is >> being made.. ?? >> >> Download the video here in Xvid format: >> >> http://codespunk.com/files/upload/cygwinx_clipboard_breaking_xvid.avi > > Thanks for this. > > There's definitely a bug here when stuff fails to paste. > > You are also having difficulties because of a limitation of the current > clipboard implementation I'll try to explain: > > As [1] tries to explain, there are 2 X selections of interest, the PRIMARY > selection (the highlighted text) and the CLIPBOARD selection (the cut/copied > text) (and some X applications only use one or the other), but only 1 windows > clipboard. > > When you update the PRIMARY selection, by highlighting that text, it is made > available for pasting from the Windows clipboard, which means that the > previous Windows clipboard contents are removed. When you then go to paste, > since the Windows clipboard contents have changed to the selected text, that's > what you get in the CLIPBOARD selection. > > This is far from idea, but the proposed solutions I've seen so far aren't any > better: > > i) Don't monitor the PRIMARY selection. This breaks with any application > which only uses the PRIMARY selection (e.g. xterm, emacs in default > configurations) > ii) Use some more complex heuristic than 'most recently changed owner' for > choosing which selection to make available in the Windows clipboard. It's > very hard to know if this will make things better on average. > > I've fixed something else that might be related to the paste failure, so > please try the latest snapshot [2],[3]. > > If you can still reproduce your problem with that, can you please try: > > * run XWin with the -noclipboard flag added to your usual flags. > * Then run xwinclip, which should produce some useful logs when you reproduce > your problem. > > [1] http://x.cygwin.com/docs/ug/using-clipboard-integration.html > [2] ftp://cygwin.com/pub/cygwinx/XWin.20130924-git-d5a9aea0e48a088b.exe.bz2 > [3] ftp://cygwin.com/pub/cygwinx/xwinclip.20130924-git-d5a9aea0e48a088b.exe.bz2 > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/