From 8d9e628fa9c7fac1fd4b31aa9e0b2219a9d095f6 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Tue, 21 Sep 2021 15:10:14 -0400 Subject: [PATCH] Fix text scale keybinding --- README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index db8bcbb..70a0c53 100644 --- a/README.org +++ b/README.org @@ -2184,8 +2184,8 @@ epkgs.hydra ;; Define a `hydra' function for scaling the text interactively. (defhydra hydra-text-scale (:timeout 4) "Scale the text in the current buffer." - ("j" text-scale-decrease "Decrease") - ("k" text-scale-increase "Increase") + ("k" text-scale-decrease "Decrease") + ("j" text-scale-increase "Increase") ("f" nil "Finished" :exit t)) ;; Create keybinding for calling the function.