From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1LL0eM-00051i-GJ for garchives@archives.gentoo.org; Thu, 08 Jan 2009 19:34:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07783E026B; Thu, 8 Jan 2009 19:34:37 +0000 (UTC) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.174]) by pigeon.gentoo.org (Postfix) with ESMTP id CC6ABE026B for ; Thu, 8 Jan 2009 19:34:36 +0000 (UTC) Received: by wf-out-1314.google.com with SMTP id 29so10244719wff.10 for ; Thu, 08 Jan 2009 11:34:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=z1zlhC0OG5mQlG2f17T43eJA86UxO4Vc6/W4RG8QSLo=; b=rVC9HIqiD6dwH+Q7LSDXH7sO/PRLr1eYAmMAb0ZbNPWF/9KT3sGoFj8ue0jCX9vqZr DE3l17ubED1oeweeAfxpICg/+G9CjxmkGy8RZnje5YIaamdPsS7mYeFE9J+9P/ErHRp6 IUfMNxzgX/QVa/vrs6RI2lP0XOT9mmJ9J3DLA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=baspqNImAMUmG+zcT/pPWJQ4UM+SrXODB1B956IUW97/zZnxWzoHyHlEJ+m2WFAs6h A86Q9e+hQQyBndqHJi6OODLBD9mMy15kbXH9M400Httd/1Iw1AtaDtYTO4IVlmDG3F7e 7Cwcp288jPSRgRCDaRDxPVlGoYuD0BTsF6q7E= Received: by 10.142.251.9 with SMTP id y9mr10298546wfh.181.1231443276508; Thu, 08 Jan 2009 11:34:36 -0800 (PST) Received: by 10.142.199.18 with HTTP; Thu, 8 Jan 2009 11:34:36 -0800 (PST) Message-ID: <126318cd0901081134h56861d41p62dfb28d1825275f@mail.gmail.com> Date: Thu, 8 Jan 2009 14:34:36 -0500 From: "Phillip Sawbridge" To: gentoo-user@lists.gentoo.org Subject: [gentoo-user] Re: [konqueror] Can't invoke and editor when `view source' Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_264918_6052546.1231443276495" X-Archives-Salt: af1e03eb-3012-48a9-985b-49b6bca5a007 X-Archives-Hash: 6a4103ff619f1a8b76e022b3dc4a53d9 ------=_Part_264918_6052546.1231443276495 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, Just another workaround for this problem. The ones presented in that thread didn't work for me. I used the "open with terminal option" in konqueror to get around this emacs probelm but didn't like the fact that there was always a extra terminal window hanging around so I use dcop to hide that window. So I configure konqueror to open files I want emacs to work with using this script : #!/bin/bash # invokes emacs but hides the current konsole from which it was invoked. # konsole should be killed automatically when emacs exits # make sure that option is set in konqueror otherwise you will have a million hidden windows. # hack to work around bug in konqueror which requires you to invoke emacs # through a terminal when double-clicking a file # get invoking dcop konsole session id KONSOLE_SESSION="$(echo $KONSOLE_DCOP | cut -d\( -f 2 | cut -d, -f1)" # hide the window dcop $KONSOLE_SESSION konsole-mainwindow#1 setHidden true # start emacs emacs $1 & -- cheers, phillip ------=_Part_264918_6052546.1231443276495 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi,
 
Just another workaround for this problem. The ones presented in that thread didn't work for me.
 
I used the "open with terminal option" in konqueror to get around this emacs probelm but didn't like the fact that there was always a extra terminal window hanging around so I use dcop to hide that window.
 
So I configure konqueror to open files I want emacs to work with using this script :
 
#!/bin/bash
# invokes emacs but hides the current konsole from which it was invoked.
# konsole should be killed automatically when emacs exits
# make sure that option is set in konqueror otherwise you will have a million hidden windows.
# hack to work around bug in konqueror which requires you to invoke emacs
# through a terminal when double-clicking a file
 
# get invoking dcop konsole session id
KONSOLE_SESSION="$(echo $KONSOLE_DCOP | cut -d\( -f 2 | cut -d, -f1)"
# hide the window
dcop $KONSOLE_SESSION konsole-mainwindow#1 setHidden true
# start emacs
emacs $1 &
 
--
cheers,
phillip
------=_Part_264918_6052546.1231443276495--