unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Andy Stewart <lazycat.manatee@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Trying to return focus to a window
Date: Mon, 24 Nov 2008 14:20:57 +0800	[thread overview]
Message-ID: <874p1xve46.fsf@debian.domain> (raw)
In-Reply-To: ggdbj3$ur$1@ger.gmane.org

Hi, Kevin.

Now i'm debugging it.
I have use save-selected-window defadvice.

Advice is not problem (although use save-selected-window is simple, but
effect same as second advice).

But problem is not at advice, is some code make focus on iPython buffer
after `py-execute-buffer'.

  -- Andy.

Kevin Rodgers <kevin.d.rodgers@gmail.com> writes:

> Richard Riley wrote:
>> I have tried two ways to have the focus return to the source
>> buffer/window when "execute buffer" is done using python integration
>> as outlined here :
>>
>> http://www.emacswiki.org/emacs/PythonMode#toc10
>>
>> The two ways I have tried (both using defadvice) are:
>>
>> ,----
>> | ;; (defadvice py-execute-buffer (around stay-current-buffer activate)
>> | ;;   "This advice make cursor stay current position after execute `py-execute-buffer'."
>> | ;;   (save-excursion
>> | ;;     ad-do-it)
>> | ;;   (message "py-execute-function done"))
>> | | (defadvice py-execute-buffer (around stay-current-buffer activate)
>> |   "This advice make cursor stay current position after execute `py-execute-buffer'."
>> |   (let ((remember-point (point))
>> |         (remember-window (selected-window)))
>> |     ad-do-it
>> |     (message "focus stuff done")
>> |     (select-window remember-window)
>> |     (goto-char remember-point)))
>> `----
>>
>> But in both cases the cursor stays in the iPython window (same
>> frame). Can someone suggest how best to get the cursor back into the
>> python buffer when I execute py-execute-buffer? is there something
>> fundamentally wrong with the approach I have taken above or a naive code
>> error?
>
> You could try save-selected-window instead of save-excursion.





      reply	other threads:[~2008-11-24  6:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-23 21:10 Trying to return focus to a window Richard Riley
2008-11-24  4:46 ` Kevin Rodgers
2008-11-24  6:20   ` Andy Stewart [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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=874p1xve46.fsf@debian.domain \
    --to=lazycat.manatee@gmail.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).