diff options
author | Robin Obůrka <robin.oburka@nic.cz> | 2014-05-02 09:31:35 +0200 |
---|---|---|
committer | Robin Obůrka <robin.oburka@nic.cz> | 2014-05-02 09:31:35 +0200 |
commit | 9d6123ebeeee5b124d977db28c79c12cec59923b (patch) | |
tree | 0ec7952c1ae536742be77ecc5d8fe939273ac348 /.vimrc | |
parent | Completely new version of vimrc (diff) | |
download | vim_sync-9d6123ebeeee5b124d977db28c79c12cec59923b.tar.xz |
Fix "highlite redundant spaces" function
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -87,16 +87,18 @@ endif set spelllang=cs set mousemodel=popup -"show redundant spaces -au BufEnter * match RedundantSpaces /\s\+$\| \+\ze\t/ -highlight RedundantSpaces ctermbg=red guibg=red - " ================= " syntax highliting " ================= syntax on colorscheme evening +" ===================== +" show redundant spaces +" ===================== +au BufEnter * match RedundantSpaces /\s\+$\| \+\ze\t/ +highlight RedundantSpaces ctermbg=red guibg=red + " =========== " key hacking " =========== |