diff --git a/doc/DOCUMENTATION.org b/doc/DOCUMENTATION.org index 1fa541dc1..6c2b803d9 100644 --- a/doc/DOCUMENTATION.org +++ b/doc/DOCUMENTATION.org @@ -810,12 +810,12 @@ Some elements can be dynamically toggled: | ~SPC t m b~ | toggle the battery status | | ~SPC t m c~ | toggle the =org= task clock (available in =org= layer) | | ~SPC t m m~ | toggle the minor mode lighters | -| ~SPC t m j~ | toggle the major mode | -| ~SPC t m g~ | toggle the version control info | +| ~SPC t m M~ | toggle the major mode | | ~SPC t m n~ | toggle the cat! (if =colors= layer is declared in your dotfile) | | ~SPC t m p~ | toggle the point character position | | ~SPC t m t~ | toggle the mode line itself | -| ~SPC t m v~ | toggle the new version lighter | +| ~SPC t m v~ | toggle the version control info | +| ~SPC t m V~ | toggle the new version lighter | **** Powerline font installation for terminal-mode users Users who run Emacs in terminal mode may need to install the [[https://github.com/powerline/fonts][Powerline patched diff --git a/spacemacs/packages.el b/spacemacs/packages.el index 0bc666ff8..527491116 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -2630,7 +2630,7 @@ Put (global-hungry-delete-mode) in dotspacemacs/config to enable by default." :on (setq spacemacs-mode-line-major-modep t) :off (setq spacemacs-mode-line-major-modep nil) :documentation "Show major mode in mode-line." - :evil-leader "tmj") + :evil-leader "tmM") (defvar spacemacs-mode-line-version-controlp t "If not nil, version control info is displayed in the mode-line.") @@ -2639,7 +2639,7 @@ Put (global-hungry-delete-mode) in dotspacemacs/config to enable by default." :on (setq spacemacs-mode-line-version-controlp t) :off (setq spacemacs-mode-line-version-controlp nil) :documentation "Show version control info in mode-line." - :evil-leader "tmg") + :evil-leader "tmv") (defvar spacemacs-mode-line-new-version-lighterp t "If not nil, new version lighter is displayed in the mode-line.") @@ -2648,7 +2648,7 @@ Put (global-hungry-delete-mode) in dotspacemacs/config to enable by default." :on (setq spacemacs-mode-line-new-version-lighterp t) :off (setq spacemacs-mode-line-new-version-lighterp nil) :documentation "Show new version in the mode-line." - :evil-leader "tmv") + :evil-leader "tmV") (defvar spacemacs-mode-line-display-point-p nil "If not nil, display point alongside row/column in the mode-line.")