From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Hansen Newsgroups: gmane.emacs.help Subject: Re: Skeleton pair only working partialy in C++ Date: Fri, 02 May 2008 22:10:45 +0200 Organization: disorganized Message-ID: <87myn8o4ai.fsf@localhorst.mine.nu> References: <17023138.post@talk.nabble.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1209759956 14704 80.91.229.12 (2 May 2008 20:25:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 2 May 2008 20:25:56 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri May 02 22:26:30 2008 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 1Js1pY-0002Sm-Da for geh-help-gnu-emacs@m.gmane.org; Fri, 02 May 2008 22:26:08 +0200 Original-Received: from localhost ([127.0.0.1]:43260 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Js1or-0005zp-5Y for geh-help-gnu-emacs@m.gmane.org; Fri, 02 May 2008 16:25:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Js1oZ-0005zP-7S for help-gnu-emacs@gnu.org; Fri, 02 May 2008 16:25:07 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Js1oY-0005z5-7H for help-gnu-emacs@gnu.org; Fri, 02 May 2008 16:25:06 -0400 Original-Received: from [199.232.76.173] (port=56773 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Js1oX-0005yv-Kk for help-gnu-emacs@gnu.org; Fri, 02 May 2008 16:25:05 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Js1oX-0002t5-3t for help-gnu-emacs@gnu.org; Fri, 02 May 2008 16:25:05 -0400 Original-Received: from root by ciao.gmane.org with local (Exim 4.43) id 1Js1oU-0008EL-Vj for help-gnu-emacs@gnu.org; Fri, 02 May 2008 20:25:03 +0000 Original-Received: from e178054187.adsl.alicedsl.de ([85.178.54.187]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 May 2008 20:25:02 +0000 Original-Received: from david.hansen by e178054187.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 May 2008 20:25:02 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: help-gnu-emacs@gnu.org Original-Lines: 25 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178054187.adsl.alicedsl.de Mail-Copies-To: nobody User-Agent: Gnus/5.110009 (No Gnus v0.9) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:SxQ8/HrhuG6TTib/K7mpJi5ZkWw= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:53720 Archived-At: On Fri, 2 May 2008 09:33:11 -0700 (PDT) TheLonelyStar wrote: > I have enabled skeleton-pair funcionality with what I have found in here: > http://littlechina.org/~cmarcelo/paren-experiment.el > It works in most modes, but in C++ mode it only works for [ and not for (,{ > or ". Try: (define-key c-mode-base-map (kbd "(") #'skeleton-pair-insert-maybe) ;; same for the other keys here... or (add-hook 'c-mode-common-hook #'(lambda () (local-set-key (kbd "(") #'skeleton-pair-insert-maybe) ;; same for the other keys here... )) If you don't like the way skeleton decides whether to insert a pair or not but to insert a pair always use `insert-pair' instead of `skeleton-pair-insert-maybe'. David