diff options
| author | jixiuf <jixiuf@qq.com> | 2020-11-20 13:01:07 +0800 |
|---|---|---|
| committer | jixiuf <jixiuf@qq.com> | 2020-11-20 13:01:45 +0800 |
| commit | 404423a609f9d4da7a7709f37909ee7b99cf6acb (patch) | |
| tree | 5d8178eb9ac0ef17f5b0fcfab75cd06bf0751e98 /vterm.el | |
| parent | 8c3cb37c3527209e4522aaa92e3ff3e7181078be (diff) | |
rebind prior/next , see #449
Diffstat (limited to 'vterm.el')
| -rw-r--r-- | vterm.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -538,9 +538,9 @@ Exceptions are defined by `vterm-keymap-exceptions'." (define-key map [right] #'vterm-send-right) (define-key map [up] #'vterm-send-up) (define-key map [down] #'vterm-send-down) - (define-key map [prior] #'scroll-down-command) + (define-key map [prior] #'vterm-send-prior) (define-key map [S-prior] #'scroll-down-command) - (define-key map [next] #'scroll-up-command) + (define-key map [next] #'vterm-send-next) (define-key map [S-next] #'scroll-up-command) (define-key map [home] #'vterm--self-insert) (define-key map [end] #'vterm--self-insert) |
