From: Ken Goldman <kgoldman@us.ibm.com>
To: help-gnu-emacs@gnu.org
Subject: Re: yank without indentation?
Date: Mon, 09 Jun 2014 20:00:30 -0400 [thread overview]
Message-ID: <ln5hqu$eih$1@ger.gmane.org> (raw)
In-Reply-To: <CAA6UvuFa_a-yiiOPvcKcsXyq+BOBz63dW-Szf-X8RobwxLRcMA@mail.gmail.com>
How about an automated version? I've been using this:
; automatically indenting yanked text if in programming-modes
(defadvice yank (after indent-region activate)
(if (member major-mode '(emacs-lisp-mode
c-mode c++-mode
tcl-mode sql-mode
perl-mode cperl-mode
java-mode jde-mode
LaTeX-mode TeX-mode))
(indent-region (region-beginning) (region-end) nil)))
On 6/5/2014 3:25 PM, Jacob Gerlach wrote:
> I run in to this problem sometimes when yanking a piece of code with
> certain indentation into a new place where it should have different (more
> or less) indentation. My solution is:
>
> C-y
> C-x C-x (exchange-point-and-mark) to re-highlight the yanked text
> <TAB> to properly indent it for the new contexxt
prev parent reply other threads:[~2014-06-10 0:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-05 15:13 yank without indentation? Eric Abrahamsen
2014-06-05 15:18 ` Thorsten Jolitz
2014-06-05 15:31 ` Nicolas Richard
2014-06-06 0:36 ` Eric Abrahamsen
2014-06-05 19:19 ` Grant Rettke
2014-06-05 19:25 ` Jacob Gerlach
2014-06-05 22:26 ` Robert Thorpe
2014-06-06 6:27 ` Eli Zaretskii
2014-06-05 23:29 ` Drew Adams
2014-06-06 0:40 ` Eric Abrahamsen
2014-06-10 0:00 ` Ken Goldman [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='ln5hqu$eih$1@ger.gmane.org' \
--to=kgoldman@us.ibm.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.