Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] Copy/paste from CoqIde right-side windows

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] Copy/paste from CoqIde right-side windows


chronological Thread 
  • From: Thery Laurent <thery AT ns.di.univaq.it>
  • To: Eugene Kirpichov <ekirpichov AT gmail.com>
  • Cc: coq-club AT pauillac.inria.fr
  • Subject: Re: [Coq-Club] Copy/paste from CoqIde right-side windows
  • Date: Thu, 16 Oct 2008 11:10:32 +0200 (CEST)
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>


On Wed, 15 Oct 2008, Eugene Kirpichov wrote:

Hello from an inspired Coq newbie!

So. Coqide supports Copy/Paste (Ctrl-C/Ctrl-V) from the main editor
window on MS Windows.
However, I'd like to copy/paste contents of the other windows (the
goals window and coq output window) during proof steps, and it seems
like Ctrl-C/Ctrl-V and even the Menu->Edit commands are not working
there (they don't change the clipboard contents at all).


The problem seems to come from the items Cut/Copy/Paste of the
item Edit: they wrongly apply the command to the script window instead of the current active window.

A quick fix is to remove the key biding of these items.
One way is to use the dynamic change of short-cuts of gtk,
another one is to edit the file .coqide.keys in your home dir
and uncomment the three lines:

;(gtk_accel_path "<CoqIde MenuBar>/Edit/Paste/" "")
;(gtk_accel_path "<CoqIde MenuBar>/Edit/Copy/" "")
;(gtk_accel_path "<CoqIde MenuBar>/Edit/Cut/" "")

into

(gtk_accel_path "<CoqIde MenuBar>/Edit/Paste/" "")
(gtk_accel_path "<CoqIde MenuBar>/Edit/Copy/" "")
(gtk_accel_path "<CoqIde MenuBar>/Edit/Cut/" "")


--
Laurent





Archive powered by MhonArc 2.6.16.

Top of Page