[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How do you scroll the screen without moving the cursor ?
From: |
Lorenzo Isella |
Subject: |
Re: How do you scroll the screen without moving the cursor ? |
Date: |
Wed, 8 Oct 2008 18:19:06 +0200 |
> aww cool thanks... i just tried the stuffs
>
> this is what i ended up with ->
>
> ;; ^E in Vi
> (defun ctrl-e-in-vi (n)
> (interactive "p")
> (scroll-down n))
>
> ;; ^Y in Vi
> (defun ctrl-y-in-vi (n)
> (interactive "p")
> (scroll-up n))
>
> (global-set-key "\M-n" 'ctrl-y-in-vi)
> (global-set-key "\M-p" 'ctrl-e-in-vi)
Hello,
Sorry for jumping into this thread. I tried the functions above in my
.emacs file (the only trivial difference is that I keybound them to f1
and f2).
They work beautifully with e.g. python, Fortran etc.. codes, but not
with .tex files (where I use latex).
In that case, the cursor moves when I invoke one of the functions above.
How comes? I am not redefining any key-binding involving my f1 and f2 there.
If needed, I can post the part of my .emacs file dealing with the
customization of auctex, but I am not sure the problem lies there.
Any suggestions?
Cheers
Lorenzo
- Re: How do you scroll the screen without moving the cursor ?,
Lorenzo Isella <=