From f68e68417bb4d687780460eeff742d05fbc80ce4 Mon Sep 17 00:00:00 2001 From: "Darby M. Dixon III" Date: Wed, 20 May 2026 16:32:57 -0400 Subject: [PATCH 1/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 713ef39..dee049f 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,8 @@ Additionally, Origami allows one to zoom the current pane, making it take up a l | `command+k` | `command+z` | Zoom the current pane so it takes up 90% of the screen (the fraction is changeable in the keybindings) | | `command+k` | `shift+command+z` | Un-zoom: equally space all panes | +Note: in the keybindings, you can also use the `toggle_zoom_pane` command, to enable zoom/un-zoom from a single keyboard shortcut. + It is also possible to edit the pane sizes: | First | Then | Action | From 29a184bacc62c8be4a6cd4bb0cd7bbb9f0dd610c Mon Sep 17 00:00:00 2001 From: "Darby M. Dixon III" Date: Wed, 20 May 2026 16:36:21 -0400 Subject: [PATCH 2/4] Update Default (OSX).sublime-keymap --- Default (OSX).sublime-keymap | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Default (OSX).sublime-keymap b/Default (OSX).sublime-keymap index ba77e45..1db5a58 100644 --- a/Default (OSX).sublime-keymap +++ b/Default (OSX).sublime-keymap @@ -45,6 +45,10 @@ // { "keys": ["super+k", "super+z"], "command": "zoom_pane", "args": {"fraction": 0.9} }, // { "keys": ["super+k", "super+shift+z"], "command": "unzoom_pane", "args": {} }, + // To toggle zoom/unzoom from a single keybinding, use this command: + + // { "keys": ["super+k", "super+z"], "command": "toggle_zoom_pane", "args": {"fraction": 0.9} }, + // { "keys": ["super+k", "super+c"], "command": "resize_pane", "args": {"orientation": "cols"} }, // { "keys": ["super+k", "super+r"], "command": "resize_pane", "args": {"orientation": "rows"} }, ] From 611a27a3cdf94d2fbe8cd70a5014567e9447a609 Mon Sep 17 00:00:00 2001 From: "Darby M. Dixon III" Date: Wed, 20 May 2026 16:37:35 -0400 Subject: [PATCH 3/4] Update Default (Linux).sublime-keymap --- Default (Linux).sublime-keymap | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Default (Linux).sublime-keymap b/Default (Linux).sublime-keymap index 08e9664..ab6c640 100644 --- a/Default (Linux).sublime-keymap +++ b/Default (Linux).sublime-keymap @@ -45,6 +45,10 @@ // { "keys": ["ctrl+k", "ctrl+z"], "command": "zoom_pane", "args": {"fraction": 0.9} }, // { "keys": ["ctrl+k", "ctrl+shift+z"], "command": "unzoom_pane", "args": {} }, + // To toggle zoom/unzoom from a single keybinding, use this command: + + // { "keys": ["ctrl+k", "ctrl+z"], "command": "toggle_zoom_pane", "args": {"fraction": 0.9} }, + // { "keys": ["ctrl+k", "ctrl+c"], "command": "resize_pane", "args": {"orientation": "cols"} }, // { "keys": ["ctrl+k", "ctrl+r"], "command": "resize_pane", "args": {"orientation": "rows"} }, ] From 81a686d997055c14bc523be4e4ec5e74cf1351ee Mon Sep 17 00:00:00 2001 From: "Darby M. Dixon III" Date: Wed, 20 May 2026 16:37:58 -0400 Subject: [PATCH 4/4] Update Default (Windows).sublime-keymap --- Default (Windows).sublime-keymap | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Default (Windows).sublime-keymap b/Default (Windows).sublime-keymap index f456366..4be4f4c 100644 --- a/Default (Windows).sublime-keymap +++ b/Default (Windows).sublime-keymap @@ -45,6 +45,10 @@ // { "keys": ["ctrl+k", "ctrl+z"], "command": "zoom_pane", "args": {"fraction": 0.9} }, // { "keys": ["ctrl+k", "ctrl+shift+z"], "command": "unzoom_pane", "args": {} }, + // To toggle zoom/unzoom from a single keybinding, use this command: + + // { "keys": ["ctrl+k", "ctrl+z"], "command": "toggle_zoom_pane", "args": {"fraction": 0.9} }, + // { "keys": ["ctrl+k", "ctrl+c"], "command": "resize_pane", "args": {"orientation": "cols"} }, // { "keys": ["ctrl+k", "ctrl+r"], "command": "resize_pane", "args": {"orientation": "rows"} } ]