unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Andreas Politz <politza@fh-trier.de>
To: help-gnu-emacs@gnu.org
Subject: Re: macro only for shell-mode
Date: Sun, 05 Oct 2008 11:33:00 +0200	[thread overview]
Message-ID: <1223199493.378516@arno.fh-trier.de> (raw)
In-Reply-To: <mailman.275.1223196072.25473.help-gnu-emacs@gnu.org>

Stefan Thomas wrote:
> Dear all,
> sorry for bothering You again, but I didn't succed with all my trials until
> now. But I think what I want is very simple:
> I want, if I press the key "4" in shell-mode,
> the curser moves first one space to the left, then prints "4" and then goes
> to the end of the line.
> In other words:
> I want to substitue "4" with:
> C-b 4 C-e
> I have defined a macro  ("viertel") wich does C-b 4 C-e, but I'm not able to
> associate this macro to the key 4.
> It would be great if I could get an advice how this can be done!
> Thanks for Your support,
> Stefan
> 


(defun viertel ()
   (interactive)
   (backward-char)
   (insert "4")
   (end-of-line))

(defun my-shell-mode-hook ()
   (local-set-key [?4] 'viertel)
   ;;...
   )

(add-hook 'shell-mode-hook 'my-shell-mode-hook)

-ap


       reply	other threads:[~2008-10-05  9:33 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.275.1223196072.25473.help-gnu-emacs@gnu.org>
2008-10-05  9:33 ` Andreas Politz [this message]
2008-10-05  8:41 macro only for shell-mode Stefan Thomas
  -- strict thread matches above, loose matches on Subject: below --
2008-10-03 13:04 Stefan Thomas
2008-10-03 14:43 ` Peter Dyballa
2008-10-03 14:49   ` Stefan Thomas
     [not found]   ` <mailman.145.1223045354.25473.help-gnu-emacs@gnu.org>
2008-10-03 22:38     ` Barry Margolin
2008-10-04 10:48     ` Xah

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=1223199493.378516@arno.fh-trier.de \
    --to=politza@fh-trier.de \
    --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).