We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404a464 commit 83ec22cCopy full SHA for 83ec22c
README.md
@@ -6,6 +6,15 @@
6
7
## Usage
8
9
+There are total 4 interactive functions in this package.
10
+
11
+* `better-scroll-down`
12
+* `better-scroll-up`
13
+* `better-scroll-down-other-window`
14
+* `better-scroll-up-other-window`
15
16
+I will recommend to bind these function to global keys like the snippet below.
17
18
```el
19
(define-key global-map (kbd "<prior>") #better-scroll-down)
20
(define-key global-map (kbd "<next>") #better-scroll-up)
@@ -14,6 +23,8 @@
23
(define-key global-map (kbd "S-<next>") #better-scroll-up-other-window)
24
```
25
26
+*P.S. `<prior>` and `<next>` is corresponds to `page up` and `page down` key.*
27
28
## Contribution
29
30
If you would like to contribute to this project, you may either
0 commit comments