diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2024-08-26 16:44:07 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2024-08-26 16:44:07 +0200 |
| commit | c483527055aa91a230e965faf0f557c75a2626dd (patch) | |
| tree | 6d84044371d83083240841a37311a831056c8857 | |
| parent | b7545659576e4fba8540dbf822c1bd234d7689b8 (diff) | |
Emacs: Add transpose-frame
| -rw-r--r-- | dot.emacs.d/init.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 772baf9..4cc99b1 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -131,6 +131,19 @@ ("C-c m f" . #'magit-file-popup) ("C-c m d" . #'magit-diff-buffer-file))) +(use-package transpose-frame + :init + (dolist (i '(("j" . transpose-frame) + ("i" . flip-frame) + ("o" . flop-frame) + ("r" . rotate-frame) + ("c" . rotate-frame-clockwise) + ("C" . rotate-frame-anticlockwise))) + (dolist (p '("s-j " "s-j s-")) + (bind-key + (concat p (car i)) + (cdr i))))) + (use-package ace-window :bind ("M-o" . ace-window) :config (setq aw-scope 'frame)) |
