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: Fri, 18 Nov 2005 16:07:46 +0100 Organization: Informatimago Message-ID: <877jb6570d.fsf@thalassa.informatimago.com> References: <1132235806.806274.136230@f14g2000cwb.googlegroups.com> <87lkzn6xe4.fsf@thalassa.informatimago.com> <1132309438.172206.208080@z14g2000cwz.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1132329381 22804 80.91.229.2 (18 Nov 2005 15:56:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 18 Nov 2005 15:56:21 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Nov 18 16:56:20 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ed8Yb-0003xf-VN for geh-help-gnu-emacs@m.gmane.org; Fri, 18 Nov 2005 16:53:46 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ed8UR-0003d2-0w for geh-help-gnu-emacs@m.gmane.org; Fri, 18 Nov 2005 10:49:27 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!newsfeed.icl.net!newsfeed.fjserv.net!colt.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:QP109fGG9UHv630wgDE+CwzSPaI= Original-Lines: 27 Original-NNTP-Posting-Host: 62.93.174.79 Original-X-Trace: DXC=`W0[MTVado`m4l4S\0hjBbSiHWb3f14:cbBd4DjF1d]a Original-Xref: shelby.stanford.edu gnu.emacs.help:135549 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:31145 Archived-At: Jeckob@gmx.net writes: > Thanks you all and especialy Pascal, > you are really a helpful person...thanks again. > > Can you explain me the following line you wrote to me: > (local-set-key (kbd "C-RET") (function newline))))) > > why do you use C-RET to call newline ??? because you want to use RET to call format/align-and-newline. So when you'll type RET, you get your formating, and if you want to insert a newline without any formating you'd have to type: C-q C-j but I think it'll be easier to type C-RET. [ and of course, you'll have removed the "hk" characters; sometimes my iBook keyboard doesn't realize I'm pressing the control key :-( ] (local-set-key (kbd "RET")hk (function format/align-and-newline)) --> (local-set-key (kbd "RET") (function format/align-and-newline)) > sorry, but tryin to understand every piece of code. > Thanks -- "Specifications are for the weak and timid!"