From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Malte Spiess Newsgroups: gmane.emacs.help Subject: Re: How to apply a minor mode to all buffers Date: Thu, 18 Jan 2007 22:08:01 +0100 Organization: Arcor Message-ID: <877ivkjb66.fsf@trick.ulm.malte.spiess> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1169156600 27491 80.91.229.12 (18 Jan 2007 21:43:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 18 Jan 2007 21:43:20 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 18 22:43:17 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H7f2D-0007FN-49 for geh-help-gnu-emacs@m.gmane.org; Thu, 18 Jan 2007 22:43:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H7f2D-0006gw-JC for geh-help-gnu-emacs@m.gmane.org; Thu, 18 Jan 2007 16:43:01 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!t-online.de!tiscali!newsfeed1.ip.tiscali.net!proxad.net!proxad.net!newsfeed.arcor.de!newsspool2.arcor-online.net!news.arcor.de.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:w2I08Ypra0r1AN3v+8nnYRkA3QE= Original-Lines: 21 Original-NNTP-Posting-Date: 18 Jan 2007 22:07:45 CET Original-NNTP-Posting-Host: 17b863ac.newsspool2.arcor-online.net Original-X-Trace: DXC=X0_CCU>IQfAFJ3]dH>I?oEA9EHlD; 3YcB4Fo<]lROoRAFl8W>\BH3YBHM[3Tm List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:40437 Archived-At: "James Aguilar" writes: > Emacs folks, > Hello, I am a new and relatively inexperienced emacs user.  I was > wondering if there was an easy way to make a minor mode apply to all > created buffers.  I want to do this so that I can use the column > marker mode in all of my buffers. Well, if you want to have a minor mode running all the time, putting (whatever-mode t) into your .emacs file should do the trick. I'm not sure if it works with all modes, but here it does with column-number-mode and global-font-lock-mode. >[...] > Yours, > James Aguilar Greetings Malte