<div dir="ltr">It looks like &#39;yank-pop&#39; also doesn&#39;t behave properly with &#39;interprogram-paste-function&#39; though in a different way—I have to call it multiple times before it begins cycling. &#39;my-paste-pop&#39; has the same behavior as yank-pop.</div>

<div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Sep 8, 2013 at 12:36 AM, Frank Fischer <span dir="ltr">&lt;<a href="mailto:frank-fischer@shadow-soft.de" target="_blank">frank-fischer@shadow-soft.de</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Am Sat, 7 Sep 2013 23:56:38 -0700<br>
schrieb Mark Tran &lt;<a href="mailto:mark.tran@gmail.com">mark.tran@gmail.com</a>&gt;:<br>
<div class="im"><br>
&gt; In my Emacs setup, I have &#39;interprogram-paste-function&#39; set to a<br>
&gt; function that returns the contents of the OS X system clipboard. This<br>
&gt; prevents &#39;evil-paste-pop&#39; and &#39;evil-paste-pop-next&#39; from cycling<br>
&gt; through the kill ring because the evil-paste-* functions call<br>
&gt; &#39;current-kill&#39;, which first calls &#39;interprogram-paste-function&#39;<br>
&gt; before the kill ring. This causes evil-paste-pop to always paste the<br>
&gt; same value from the system clipboard.<br>
<br>
</div>Calling `current-kill` is the same as Emacs&#39; `yank-pop` does, so I<br>
wonder if this problem also occurs if you use `yank-pop` (e.g. C-z to<br>
change to emacs-state and then M-y for yank-pop)?<br>
<div class="im"><br>
&gt; Is there anyway to get this working properly with<br>
&gt; interprogram-paste-function?<br>
<br>
</div>You could try to write a new command that temporarily sets<br>
`interprogram-paste-function` to nil (untested):<br>
<br>
(defun my-paste-pop (count)<br>
  (interactive &quot;p&quot;)<br>
  (let (interprogram-paste-function)<br>
    (evil-paste-pop count)))<br>
<br>
and then bind it to C-p<br>
<br>
(define-key evil-normal-state-map (kbd &quot;C-p&quot;) &#39;my-paste-pop)<br>
<br>
Does this help?<br>
<br>
Best regards,<br>
Frank<br>
<br>
<br>
_______________________________________________<br>
implementations-list mailing list<br>
<a href="mailto:implementations-list@lists.ourproject.org">implementations-list@lists.ourproject.org</a><br>
<a href="https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list" target="_blank">https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list</a><br>
</blockquote></div><br></div>