From: rush Date: Mon, 1 Sep 2025 03:34:47 +0000 (-0400) Subject: Swap v/h split, attempt to clean up help page X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=60babb3653ea744c7a63bb21e24032be0a3da006;p=stumpwminit.git Swap v/h split, attempt to clean up help page --- diff --git a/init.lisp b/init.lisp index 3eaa7c6..0240e70 100644 --- a/init.lisp +++ b/init.lisp @@ -14,6 +14,8 @@ (undefine-key *root-map* (kbd "C-a")) (undefine-key *root-map* (kbd "C-b")) (undefine-key *root-map* (kbd "C-m")) +(undefine-key *root-map* (kbd "s")) +(undefine-key *root-map* (kbd "S")) (define-key *top-map* (kbd "s-l") "exec xscreensaver-command --activate") (define-key *top-map* (kbd "s-s") "toggle-slynk") @@ -23,8 +25,8 @@ (define-key *root-map* (kbd "\-") "vsplit") (define-key *root-map* (kbd "\\") "hsplit") -(define-key *root-map* (kbd "s") "vsplit-and-focus") -(define-key *root-map* (kbd "S") "hsplit-and-focus") +(define-key *root-map* (kbd "s") "hsplit-and-focus") +(define-key *root-map* (kbd "S") "vsplit-and-focus") (define-key *root-map* (kbd "C-c") "9term") (define-key *root-map* (kbd "C-s") "surf") (define-key *root-map* (kbd "C-f") "firefox")