Move vi-tilde-fringe toggle to `SPC T ~`

This commit is contained in:
syl20bnr 2015-11-24 09:59:16 -05:00
parent 093ae18d26
commit c732c9ea22
2 changed files with 2 additions and 2 deletions

View File

@ -930,7 +930,6 @@ and ~T~):
| Key Binding | Description |
|-------------+-------------------------------------------------------------------|
| ~SPC t ~~ | display =~= in the fringe on empty lines |
| ~SPC t f~ | display the fill column (by default the fill column is set to 80) |
| ~SPC t h h~ | toggle highlight of the current line |
| ~SPC t h i~ | toggle highlight indentation levels |
@ -942,6 +941,7 @@ and ~T~):
| Key Binding | Description |
|-------------+--------------------------------------------------------------|
| ~SPC T ~~ | display =~= in the fringe on empty lines |
| ~SPC T F~ | toggle frame fullscreen |
| ~SPC T f~ | toggle display of the fringe |
| ~SPC T m~ | toggle menu bar |

View File

@ -1900,7 +1900,7 @@ It will toggle the overlay under point or create an overlay of one character."
:off (global-vi-tilde-fringe-mode -1)
:documentation
"Globally display a ~ on empty lines in the fringe."
:evil-leader "t~")
:evil-leader "T~")
;; don't enable it on spacemacs home buffer
(with-current-buffer "*spacemacs*"
(vi-tilde-fringe-mode -1))