all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Rick <rick@nospamplease.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Can I disable yank's automatic "set mark"
Date: Thu, 11 Nov 2010 04:48:30 -0700	[thread overview]
Message-ID: <4cdbd80e$0$24189$c3e8da3$50776f34@news.astraweb.com> (raw)
In-Reply-To: jwvsjz9ox6t.fsf-monnier+gnu.emacs.help@gnu.org

On Wed, 10 Nov 2010 13:29:37 -0500, Stefan Monnier
<monnier@iro.umontreal.ca> wrote:

>> Whenever I yank (ctrl-y) text into a buffer, the mark is automatically
>> set.  Is there any way to disable this behavior?
> 
> Not directly, no.  Here's how I found out:
>
>  [... yank code deleted]
> 
> So if you want to change it you have 2 solutions: create a new command
> `my-yank' which copies all the above code except for the push-mark call,
> or create a new command which calls `yank' and then undoes that push-mark,
> e.g.
> 
> (defun my-yank ()
>   "Put your description here."
>   (interactive)
>   (yank)
>   (pop-mark))
> 
> 
>         Stefan

Thank you! That's exactly what I need.

Rick



      reply	other threads:[~2010-11-11 11:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <4cda84d7$0$29178$c3e8da3$88b277c5@news.astraweb.com>
2010-11-10 18:29 ` Can I disable yank's automatic "set mark" Stefan Monnier
2010-11-11 11:48   ` Rick [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='4cdbd80e$0$24189$c3e8da3$50776f34@news.astraweb.com' \
    --to=rick@nospamplease.org \
    --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.