-
-
Save vedang/912e6796ca0a7471ff201cc72432e8ae to your computer and use it in GitHub Desktop.
scroll-other-window.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; scroll-other-window.el --- Variable commands for scrolling the other window. | |
;; Copyright (C) 2016 Andreas Politz | |
;; Author: Andreas Politz <[email protected]> | |
;; Keywords: extensions, frames | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or | |
;; (at your option) any later version. | |
;; This program is distributed in the hope that it will be useful, | |
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
;; GNU General Public License for more details. | |
;; You should have received a copy of the GNU General Public License | |
;; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
;;; Commentary: | |
;; | |
;;; Code: | |
(defvar-local sow-scroll-up-command nil) | |
(defvar-local sow-scroll-down-command nil) | |
(defvar sow-mode-map | |
(let ((km (make-sparse-keymap))) | |
(define-key km [remap scroll-other-window] | |
'sow-scroll-other-window) | |
(define-key km [remap scroll-other-window-down] | |
'sow-scroll-other-window-down) | |
km) | |
"Keymap used for `sow-mode'.") | |
(define-minor-mode sow-mode | |
"Provide a decent way to scroll the other window. | |
A way that does not use the default C function for scrolling." | |
:group 'sow | |
:global t) | |
(defun sow-scroll-other-window (&optional arg) | |
"Scroll the other window up by ARG lines. | |
If ARG is not provided, scroll a near full screen. A near full | |
screen is `next-screen-context-lines' less than a full screen." | |
(interactive "P") | |
(sow--scroll-other-window-1 arg)) | |
(defun sow-scroll-other-window-down (&optional arg) | |
"Scroll the other window down by ARG lines. | |
If ARG is not provided, scroll a near full screen. A near full | |
screen is `next-screen-context-lines' less than a full screen." | |
(interactive "P") | |
(sow--scroll-other-window-1 arg t)) | |
(defun sow--scroll-other-window-1 (n &optional down-p) | |
"Scroll the other window up/down by N lines, depending on DOWN-P. | |
If N is not provided, scroll a near full screen. A near full | |
screen is `next-screen-context-lines' less than a full screen." | |
(let* ((win (other-window-for-scrolling)) | |
(cmd (with-current-buffer (window-buffer win) | |
(if down-p | |
(or sow-scroll-down-command #'scroll-down-command) | |
(or sow-scroll-up-command #'scroll-up-command))))) | |
(with-current-buffer (window-buffer win) | |
(save-excursion | |
(goto-char (window-point win)) | |
(with-selected-window win | |
(funcall cmd n)) | |
(set-window-point win (point)))))) | |
(add-hook 'Info-mode-hook | |
(lambda nil | |
(setq sow-scroll-up-command | |
(lambda (_) (Info-scroll-up)) | |
sow-scroll-down-command | |
(lambda (_) (Info-scroll-down))))) | |
(add-hook 'doc-view-mode-hook | |
(lambda nil | |
(setq sow-scroll-up-command | |
'doc-view-scroll-up-or-next-page | |
sow-scroll-down-command | |
'doc-view-scroll-down-or-previous-page))) | |
(add-hook 'pdf-view-mode-hook | |
(lambda nil | |
(setq sow-scroll-up-command | |
'pdf-view-scroll-up-or-next-page | |
sow-scroll-down-command | |
'pdf-view-scroll-down-or-previous-page))) | |
(provide 'scroll-other-window) | |
;;; scroll-other-window.el ends here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment