From 4a5f4264283d20a064a09c9e3d9fa317cb4c18aa Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 14 Dec 2021 11:42:26 -0800 Subject: [PATCH] Meta-Space for Global Leader, and Shift-Space for Local Let's see if this really works for insert mode. --- ha-config.org | 2 +- ha-irc.org | 2 +- ha-org.org | 2 +- ha-programming.org | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ha-config.org b/ha-config.org index a337fee..fd51413 100644 --- a/ha-config.org +++ b/ha-config.org @@ -357,7 +357,7 @@ I'm not trying an experiment where specially-placed function keys on my fancy er :states '(normal visual motion) :prefix "SPC m" :global-prefix "" - :non-normal-prefix "M-SPC")) + :non-normal-prefix "S-SPC")) #+END_SRC *** Top-Level Operations Let's try this general "space" prefix by defining some top-level operations, including hitting ~space~ twice to bring up the =M-x= collection of functions: diff --git a/ha-irc.org b/ha-irc.org index 3a7c030..4943247 100644 --- a/ha-irc.org +++ b/ha-irc.org @@ -100,7 +100,7 @@ Let's create a leader for this mode: :keymaps '(circe-channel-mode-map circe-server-mode-map) :prefix "SPC m" :global-prefix "" - :non-normal-prefix "M-SPC") + :non-normal-prefix "S-SPC") #+END_SRC And a quick shortcut to call it: diff --git a/ha-org.org b/ha-org.org index 2ebec24..81e769e 100644 --- a/ha-org.org +++ b/ha-org.org @@ -55,7 +55,7 @@ One other helper routine is a =general= macro for org-mode files: :keymaps 'org-mode-map :prefix "SPC m" :global-prefix "" - :non-normal-prefix "M-SPC") + :non-normal-prefix "S-SPC") #+END_SRC * Initialization Section Org is an important part of my Emacs world, and with a lot of customization (even though Spacemacs and Doom do a good job getting things started). diff --git a/ha-programming.org b/ha-programming.org index c0cf8f5..8797ffd 100644 --- a/ha-programming.org +++ b/ha-programming.org @@ -34,7 +34,7 @@ One other helper routine is a =general= macro for org-mode files: :keymaps 'prog-mode-map :prefix "SPC m" :global-prefix "" - :non-normal-prefix "M-SPC") + :non-normal-prefix "S-SPC") #+END_SRC * General The following work for all programming languages.