To put it simply, I'm trying to get scrolling in emacs like in vim and most other editors; when I'm for example, two lines from the bottom/top, and I press down/up (Ctrl-p,n, Up,down) it goes only one line up or down, not half the screen.
|
|
See some of the suggestions on the EmacsWIki:
(setq scroll-step 1
scroll-conservatively 10000)
|
|||||||||||||||
|
|
If you want to position the screen exactly, you can use Ctrl-L.
|
|||||||||||||||
|
|
I rebind my arrow keys to perform scrolling operations.
|
|||||
|
|
My solution is not to change Emac's default scrolling, but rather to create a key sequence command from a macro. This way you have a convenient way to scroll one line at a time when you want. Not ideal, but super easy. It just happens that M-(down arrow) and M-(up arrow) are available, so that's what I used. This is how I did it. First, you need to record a macro for one line scrolls, up and down. Begin macro
Scroll down one
Stop macro
For scroll up one, use
Next you need to name the macro.
Give it a name when prompted like:
Then just use the following to bind a key sequence to that command name:
And upon prompting, use something like:
Then it will ask you which command you want to bind, and you should give it the name you invented earlier, e.g., down-one-line. Here is where I got this information. You can also find instructions below and elsewhere about adding your macro to the .emacs file. Here for macro definition explanation http://www.emacswiki.org/emacs/KeyboardMacros Here for how to control scrolling http://www.gnu.org/s/libtool/manual/emacs/Scrolling.html |
|||
|
|
|
I've been using these in my
This way, I can keep the Emacs default behavior as well as scroll one line at a time, depending on what I'm doing. This worked till at least GNU Emacs 22. I recently upgraded to Emacs 24 and discovered that
I mostly skipped Emacs 23, so if that is the version you're using, you can experiment with both the above. Note: |
|||
|
|
|
I have the following in my .emacs file to enable a nice ctrl-up, ctrl-down scrolling behavior. I also use this for the mousewheel.
|
|||||
|
|
Simples do this:
then meta cursor up moves up and meta cursor down moves down. QED. Not sure what all the above people were smoking! |
||||
|
|
Set it to 1. You don't really want to do this, though. |
|||||||||
|
|
I'm a bit late to the party, but if you don't mind installing a package then smooth-scrolling (github) may be what you're looking for - it certainly works for me. Once you've installed it you can pop the following in your init.el:
The second line is optional, but starts scrolling near the screen edge rather than at it, so you've always got a little context around the point. Adjust to taste. |
|||
|
|

