powerline: modify some segment toggle key bindings

tmj -> tmM for major mode
tmg -> tmv for version control
tmv -> tmV for new version
This commit is contained in:
syl20bnr 2015-07-26 23:04:06 -04:00
parent bf2d840a7a
commit 5f0c70636a
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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.")