From: Kevin Rodgers <ihs_4664@yahoo.com>
Subject: Re: viper and py-electric-backspace
Date: Mon, 06 Oct 2003 11:49:32 -0600 [thread overview]
Message-ID: <3F81AB2C.9070702@yahoo.com> (raw)
In-Reply-To: 87he2m3e9u.fsf@hugin.valhalla.net
Sean Richards wrote:
> I need some help getting viper to play nice with python-mode. How do I
> get backspace to call py-electric-backspace when I am using viper as
> well? When in insert mode C-h k on backspace gives 'viper-backward-char'
> as the function it is mapped to. So I think I need to use a defadvice
> around viper-backward-char. Something like ...
>
> (defadvice viper-backward-char (around my-viper-py-backspace activate)
> (if (check if we are in python-mode)
> (py-electric-backspace someargument)
> ad-do-it))
>
> OK so I am not sure how to check what the buffer mode is. Use mode-name
> or something better? And the argument to py-electric-backspace? Am I on
> the right track or completely lost?
(eq major-mode 'python-mode)
someargument should probably be current-prefix-arg.
But looking at viper-keym.el, you probably ought to do this instead:
(add-hook 'python-mode-hook
(lambda ()
(define-key viper-vi-user-local-map [backspace]
'py-electric-backspace)))
--
Kevin Rodgers
prev parent reply other threads:[~2003-10-06 17:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-10-06 9:29 viper and py-electric-backspace Sean Richards
2003-10-06 17:49 ` Kevin Rodgers [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=3F81AB2C.9070702@yahoo.com \
--to=ihs_4664@yahoo.com \
/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).