KarimAziev / km-window

Misc Emacs window utils.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

km-window

Misc Window Commands.

Installation

Emacs >= 27.1 is required.

Manual

Ensure that you have installed required dependencies:

  • transient >= 0.3.7.50

Download the source code and put it wherever you like, e.g. into ~/.emacs.d/km-window/

git clone https://github.com/KarimAziev/km-window.git ~/.emacs.d/km-window/

Add the downloaded directory to the load path:

(add-to-list 'load-path "~/.emacs.d/km-window/")
(require 'km-window)
(use-package km-window
  :straight (km-window
             :repo "KarimAziev/km-window"
             :type git
             :host github)
  :bind (("C-M-v" . km-window-scroll-other-window-down)
         ("C-M-S-v" . km-window-scroll-other-window-up)
         ("C-M-]" . km-window-scroll-other-window-down)
         ("C-M-[" . km-window-scroll-other-window-up)
         ("C-c w" . km-window-transient)) )

About

Misc Emacs window utils.

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%