(Emacs/core)~tabs now use r as a prefix key

This commit is contained in:
2024-05-11 13:06:29 +05:30
parent ebf18a5209
commit 5567f2647d

View File

@@ -33,7 +33,6 @@ code.
:states '(normal motion) :states '(normal motion)
"SPC" 'nil "SPC" 'nil
"\\" '(nil :which-key "Local leader") "\\" '(nil :which-key "Local leader")
"SPC ;" '(nil :which-key "Tabs")
"SPC a" '(nil :which-key "Applications") "SPC a" '(nil :which-key "Applications")
"SPC b" '(nil :which-key "Buffers") "SPC b" '(nil :which-key "Buffers")
"SPC c" '(nil :which-key "Code") "SPC c" '(nil :which-key "Code")
@@ -41,6 +40,7 @@ code.
"SPC f" '(nil :which-key "Files") "SPC f" '(nil :which-key "Files")
"SPC i" '(nil :which-key "Insert") "SPC i" '(nil :which-key "Insert")
"SPC m" '(nil :which-key "Modes") "SPC m" '(nil :which-key "Modes")
"SPC r" '(nil :which-key "Tabs")
"SPC s" '(nil :which-key "Search") "SPC s" '(nil :which-key "Search")
"SPC t" '(nil :which-key "Shell") "SPC t" '(nil :which-key "Shell")
"SPC q" '(nil :which-key "Quit/Literate")) "SPC q" '(nil :which-key "Quit/Literate"))
@@ -67,12 +67,12 @@ code.
(general-create-definer shell-leader (general-create-definer shell-leader
:states '(normal motion) :states '(normal motion)
:keymaps 'override :keymaps 'override
:prefix "SPC ;") :prefix "SPC t")
(general-create-definer tab-leader (general-create-definer tab-leader
:states '(normal motion) :states '(normal motion)
:keymaps 'override :keymaps 'override
:prefix "SPC t") :prefix "SPC r")
(general-create-definer mode-leader (general-create-definer mode-leader
:states '(normal motion) :states '(normal motion)