From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pascal Bourguignon Newsgroups: gmane.emacs.help Subject: Re: How to create my own mode? Date: Thu, 17 Nov 2005 17:40:19 +0100 Organization: Informatimago Message-ID: <87lkzn6xe4.fsf@thalassa.informatimago.com> References: <1132235806.806274.136230@f14g2000cwb.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1132246466 14267 80.91.229.2 (17 Nov 2005 16:54:26 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 17 Nov 2005 16:54:26 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 17 17:54:16 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ecmuo-0000qT-Cq for geh-help-gnu-emacs@m.gmane.org; Thu, 17 Nov 2005 17:47:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ecmun-0005nu-SH for geh-help-gnu-emacs@m.gmane.org; Thu, 17 Nov 2005 11:47:13 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!easynet-quince!easynet.net!easynet-post2!not-for-mail Original-Newsgroups: gnu.emacs.help Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAQMAAABtzGvEAAAABlBMVEUAAAD///+l2Z/dAAAA oElEQVR4nK3OsRHCMAwF0O8YQufUNIQRGIAja9CxSA55AxZgFO4coMgYrEDDQZWPIlNAjwq9 033pbOBPtbXuB6PKNBn5gZkhGa86Z4x2wE67O+06WxGD/HCOGR0deY3f9Ijwwt7rNGNf6Oac l/GuZTF1wFGKiYYHKSFAkjIo1b6sCYS1sVmFhhhahKQssRjRT90ITWUk6vvK3RsPGs+M1RuR mV+hO/VvFAAAAABJRU5ErkJggg== X-Accept-Language: fr, es, en X-Disabled: X-No-Archive: no User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:Fq+lr9GYph8N8xOkDbcRW2+iXd0= Original-Lines: 28 Original-NNTP-Posting-Host: 62.93.174.79 Original-X-Trace: DXC=iSBGN^`aJUimQFP3fbBd4DjF1d]a Original-Xref: shelby.stanford.edu gnu.emacs.help:135528 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor 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:31124 Archived-At: Jeckob@gmx.net writes: > Hi, i have written some functions in elisp to get some strings > formated. Now i want to have that only active when i open *.ci > files....how can i do this in elisp? Here is my code: Perhaps you don't really need a fullfleshed mode. Adding a hook could be enough: (add-hook 'find-file-hook (lambda () (when (string-match "\\.ci$" (buffer-file-name)) (local-set-key (kbd "RET")hk (function format/align-and-newline)) (local-set-key (kbd "C-RET") (function newline))))) You can still choose a default mode for your .ci files: (require 'cl) (push '("\\.ci$" . text-mode) auto-mode-alist) ; or some othe mode adapted ; to your data. -- __Pascal Bourguignon__ http://www.informatimago.com/ Nobody can fix the economy. Nobody can be trusted with their finger on the button. Nobody's perfect. VOTE FOR NOBODY.