diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2024-11-23 15:40:10 +0000 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2024-11-23 15:43:24 +0000 |
| commit | a27af4105a30e4c78435f2f69f0035489620a46b (patch) | |
| tree | 590ce39c7bd219ebb798c7b0e50c4b416364e91e | |
| parent | 53811683ccf96a7444dac55b4466e5e79b7159d2 (diff) | |
darwin/emacs: More keybindings to resize frames
| -rw-r--r-- | dotfiles-darwin/emacs/functions.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dotfiles-darwin/emacs/functions.el b/dotfiles-darwin/emacs/functions.el index 4a39418..c9b16be 100644 --- a/dotfiles-darwin/emacs/functions.el +++ b/dotfiles-darwin/emacs/functions.el @@ -24,7 +24,9 @@ ("j" . ((width . ,(/ 2.0 3)))) ("k" . ((left . 1.0) (width . ,(/ 2.0 3)))) ("l" . ((left . 0.5) (width . 0.5))) - ("o" . ((left . 1.0) (width . 0.5))))) + ("o" . ((left . 1.0) (width . 0.5))) + ("p" . ((left . 1.0) (width . ,(/ 1.0 3)))) + ("u" . ((width . ,(/ 1.0 3)))))) (keymap-set map (car elem) (lambda () (interactive) (my/modify-frame-parameters (cdr elem))))) |
