help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: emacs font dims in console mode: why? how to avoid?


From: e_xung
Subject: Re: emacs font dims in console mode: why? how to avoid?
Date: 01 Jan 2003 21:35:05 -0800
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2

plampione@yahoo.com (Peter Lampione) writes:

> When I use emacs-21 in console mode, the characters 
> appear in half intensity mode, presumably to be able to 
> highlight text. 
> 
> How do I turn this feature off?  I'd like the "normal 
> intensity" (hilight) mode default. 

I think you have to turn the feature called weight on instead.

F10 --> e --> t --> d
then choose dim face and set weight to bold





> 
> Thanks, 
> 
> Peter
>From michael@thehermans.org Thu Jan 02 00:30:52 2003
Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13)
        id 18TxwS-0003za-00
        for help-gnu-emacs@gnu.org; Thu, 02 Jan 2003 00:30:52 -0500
Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13)
        id 18TxwQ-0003zJ-00
        for help-gnu-emacs@gnu.org; Thu, 02 Jan 2003 00:30:51 -0500
Received: from pcp530390pcs.nash01.tn.comcast.net ([68.52.133.203]
        helo=del3yzmj01.thehermans.org)
        by monty-python.gnu.org with esmtp (Exim 4.10.13)       id 
18TxwP-0003yV-00
        for help-gnu-emacs@gnu.org; Thu, 02 Jan 2003 00:30:49 -0500
Received: (from michaher@localhost)
        by del3yzmj01.thehermans.org (8.11.6/8.11.6) id h025UjR02406
        for help-gnu-emacs@gnu.org; Wed, 1 Jan 2003 23:30:45 -0600
Date: Wed, 1 Jan 2003 23:30:44 -0600
From: Michael Herman <michael@thehermans.org>
To: help-gnu-emacs@gnu.org
Message-ID: <20030102053044.GD2013@del3yzmj01.thehermans.org>
Mail-Followup-To: Michael Herman <michael@thehermans.org>,
        help-gnu-emacs@gnu.org
References: <20030101215910.GA1738@del3yzmj01.thehermans.org>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
        protocol="application/pgp-signature"; boundary="pWyiEgJYm5f9v55/"
Content-Disposition: inline
In-Reply-To: <20030101215910.GA1738@del3yzmj01.thehermans.org>
User-Agent: Mutt/1.4i
Subject: Re: Raising the frame and focus
X-BeenThere: help-gnu-emacs@gnu.org
X-Mailman-Version: 2.1b5
Precedence: list
List-Id: Users list for the GNU Emacs text editor <help-gnu-emacs.gnu.org>
List-Help: <mailto:help-gnu-emacs-request@gnu.org?subject=help>
List-Post: <mailto:help-gnu-emacs@gnu.org>
List-Subscribe: <http://mail.gnu.org/mailman/listinfo/help-gnu-emacs>,
        <mailto:help-gnu-emacs-request@gnu.org?subject=subscribe>
List-Archive: <http://mail.gnu.org/pipermail/help-gnu-emacs>
List-Unsubscribe: <http://mail.gnu.org/mailman/listinfo/help-gnu-emacs>,
        <mailto:help-gnu-emacs-request@gnu.org?subject=unsubscribe>
X-List-Received-Date: Thu, 02 Jan 2003 05:30:53 -0000


--pWyiEgJYm5f9v55/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Wed, Jan 01, 2003 at 03:59:10PM -0600, Michael Herman wrote: 

>I am using Mutt for e-mail with emacs for editing and
>composing. Today, I run a separate instance of emacs everytime I
>compose or edit. I have tried emacsclient but have one issue - when
>using emacsclient, the focus doesn't change so I need to alt-tab in
>the window manager to the emacs window.
>
>I have been playing around with raise-frame to bring the emacs window
>to the front and that works fine but it doesn't change the focus.
>The focus is still on the Mutt window.  Is there any way to raise the
>frame and have emacs grab the focus?
>

I googled for some stuff and found a solution for getting the focus to
emacs and raising it.  Here it is being called from my post-mode-hook.

;;declare frame name
(setq main-frame (selected-frame))

;; Post mode hooks
(add-hook 'post-mode-hook
     '(lambda ()
      (raise-frame main-frame)
      (x-focus-frame main-frame)
))


However, is there a function to hand the focus back to a non-emacs
application (Mutt)?  I created an exit-hook for the post mode I use
and it works to lower the emacs window but the focus does not return
to the xterm which is running Mutt.

Here's what I have so far:

(add-hook 'exit-post-mode-hook
     '(lambda ()
      (lower-frame main-frame)
        ))

Again, thanks in advance for the help.


-- 
Michael Herman

--pWyiEgJYm5f9v55/
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE+E86E+7rPd94z4i8RAgbYAJsFM/79X1U0AMQl9jB9Ggjq8DMO3QCdEGGw
1THEvNuXiiXcisKY+05T0Gg=
=i0bB
-----END PGP SIGNATURE-----

--pWyiEgJYm5f9v55/--



reply via email to

[Prev in Thread] Current Thread [Next in Thread]