From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bernardo Newsgroups: gmane.emacs.help Subject: Re: indenting automatically after pasting in c-mode Date: Thu, 13 Aug 2009 20:34:44 +1000 Message-ID: <4A83EC44.4070504@pobox.com> References: <24938448.post@talk.nabble.com> Reply-To: bernardo.bacic@pobox.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1250160060 31527 80.91.229.12 (13 Aug 2009 10:41:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Aug 2009 10:41:00 +0000 (UTC) To: Help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 13 12:40:55 2009 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 1MbXjr-0007bu-Db for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Aug 2009 12:40:55 +0200 Original-Received: from localhost ([127.0.0.1]:41434 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbXjo-00010F-Ah for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Aug 2009 06:40:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MbXjI-0000zD-Mc for help-gnu-emacs@gnu.org; Thu, 13 Aug 2009 06:40:20 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MbXjC-0000wd-Os for Help-gnu-emacs@gnu.org; Thu, 13 Aug 2009 06:40:19 -0400 Original-Received: from [199.232.76.173] (port=39190 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbXjC-0000wR-G9 for Help-gnu-emacs@gnu.org; Thu, 13 Aug 2009 06:40:14 -0400 Original-Received: from a-pb-sasl-quonix.pobox.com ([208.72.237.25]:58320 helo=sasl.smtp.pobox.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MbXjC-0001VK-2a for Help-gnu-emacs@gnu.org; Thu, 13 Aug 2009 06:40:14 -0400 Original-Received: from a-pb-sasl-quonix. (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id 43951957B for ; Thu, 13 Aug 2009 06:39:56 -0400 (EDT) Original-Received: from [192.168.1.10] (unknown [220.233.188.27]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 9AFA5957A for ; Thu, 13 Aug 2009 06:39:53 -0400 (EDT) User-Agent: Thunderbird 2.0.0.22 (X11/20090605) In-Reply-To: <24938448.post@talk.nabble.com> X-Pobox-Relay-ID: A4673034-87F5-11DE-9620-EAC21EFB4A78-14340206!a-pb-sasl-quonix.pobox.com X-detected-operating-system: by monty-python.gnu.org: Solaris 10 (beta) 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:67118 Archived-At: > Hi, > > I use emacs mainly to write c-code. > > For example I paste 10 lines of code into a function. Now this 10 lines of > code are just inserted into the buffer as they are and not indented. I have > to mark these 10 lines, and then pressing TAB (indent-for-tab-command) and > everything is fine. > > It would be great if the 10 lines would be intended automatically (without > marking the 10 lines and then pressing tab) when I paste them. > > How could I solve this? Do I have to write an own elisp-function which is > doing the job and then binding it in c-mode to C-y. Or is this behaviour > already implemented? > > Thanks for your answers. > Dirk this slightly modified tip from http://emacs.wordpress.com/2007/01/22/killing-yanking-and-copying-lines/ seems to work fine (defadvice yank (after indent-region activate) (when (member major-mode '(c++-mode emacs-lisp-mode python-mode c-mode)) (unless mark-active (exchange-point-and-mark)) (indent-region (region-beginning) (region-end) nil)))