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

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

adding fonts to font menu?


From: Peter Lampione
Subject: adding fonts to font menu?
Date: 27 Dec 2002 01:00:42 -0800

I have figured out the answer to my previous question (I needed 
to turn the 0's into *, &^%#&%$#!!). 

Once one finds nice fonts, how does one add them to the menu that 
pops up when pressing shift-leftbutton? 

Thanks, 

Peter
>From help-gnu-emacs-bounces@gnu.org  Fri Dec 27 06:50:51 2002
Path: 
shelby.stanford.edu!newsfeed.stanford.edu!canoe.uoregon.edu!arclight.uoregon.edu!wn14feed!wn12feed!worldnet.att.net!12.120.4.37!attcg2!attdl2!attdl1!ip.att.net!news.ti.com!not-for-mail
From: Ramakrishnan M <rkrishnan@ti.com>
Newsgroups: gnu.emacs.help
Date: Fri, 27 Dec 2002 17:16:28 +0530
Organization: Texas Instruments
Lines: 15
Message-ID: <3E0C3D94.9385AE8F@ti.com>
NNTP-Posting-Host: dhcp8440.india.ti.com
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Trace: tilde.itg.ti.com 1040989546 20847 157.87.84.40 (27 Dec 2002 11:45:47
        GMT)
X-Complaints-To: usenet@news.ti.com
NNTP-Posting-Date: 27 Dec 2002 11:45:47 GMT
X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U)
X-Accept-Language: en
Xref: shelby.stanford.edu gnu.emacs.help:108504
To: help-gnu-emacs@gnu.org
Subject: Talking to serial port
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: Fri, 27 Dec 2002 11:50:51 -0000

Is there a way to talk to devices connected to serial port (like modems)
using emacs? 

I currently use tera-term pro in Windoze to talk to hardware connected
on my serial port. But tera term scripting is difficult (I don't want to
learn another language just to use it!) I would love to use lisp for
that. 

I saw the term-mode but didn't really think that is what I want. I want
something like the minicom of teraterm. If someone knows about such a
mode already existing, please let me know. Otherwise, I plan to write
such a program.

-- 
   Ramakrishnan M
>From help-gnu-emacs-bounces@gnu.org  Fri Dec 27 07:20:14 2002
Path: 
shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-han1.dfn.de!news-ber1.dfn.de!zrz.TU-Berlin.DE!lnews.rz.hu-berlin.de!not-for-mail
From: Uwe Ziegenhagen <isestd14@wiwi.hu-berlin.de>
Newsgroups: gnu.emacs.help
Date: Thu, 26 Dec 2002 21:46:28 +0100
Organization: Humboldt Universitaet zu Berlin
Lines: 32
Message-ID: <aufpr7$7d2$1@lnews.rz.hu-berlin.de>
NNTP-Posting-Host: ppp196-146.rz.hu-berlin.de
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: lnews.rz.hu-berlin.de 1040935591 7586 141.20.196.146 (26 Dec 2002
        20:46:31 GMT)
X-Complaints-To: news@lnews.rz.hu-berlin.de
NNTP-Posting-Date: 26 Dec 2002 20:46:31 GMT
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US;
        rv:1.2.1) Gecko/20021130
X-Accept-Language: en-us, en
Xref: shelby.stanford.edu gnu.emacs.help:108505
To: help-gnu-emacs@gnu.org
Subject: How to have Emacs ignore Case and list Dirs first with
        dired-sort-menu
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: Fri, 27 Dec 2002 12:20:14 -0000

Hello, i use the foolwing line in my .emacs to have Emacs ignore Case 
and list directories first when in the dir mode.

The options are saved but not laoded by default, so i have to toggle 
between saved and actual each time. How can i have Emacs (or load these 
options when starting)

I even set (setq ls-lisp-dirs-first t) and (setq ls-lisp-ignore-case t), 
but this is ignored.


Uwe

; http://centaur.maths.qmw.ac.uk/Emacs/

(add-hook 'dired-load-hook
(lambda () (load-library "ls-lisp")))

(add-hook 'dired-load-hook
(lambda () (require 'dired-explore)))

(add-hook 'dired-load-hook
(lambda () (require 'dired-sort-menu)))

; this should do it, but somehow doesn't work
;
(setq ls-lisp-dirs-first t)
(setq ls-lisp-ignore-case t)

  '(dired-sort-menu-saved-config (quote ((dired-actual-switches . "-al") 
(ls-lisp-ignore-case . t) (ls-lisp-dirs-first . t))))


reply via email to

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