aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté <mikisabate@gmail.com>2014-01-05 18:38:16 +0100
committerMiquel Sabaté <mikisabate@gmail.com>2014-01-05 18:38:16 +0100
commit85d4cac350f83c0318122276b2cc9721f4cada0b (patch)
treeb2a35d7324e0005790ae18764c16d41e7538975c
parentffb02a8823625af8c9cd354cd9e2839e2b27f922 (diff)
downloaddotfiles-85d4cac350f83c0318122276b2cc9721f4cada0b.tar.gz
dotfiles-85d4cac350f83c0318122276b2cc9721f4cada0b.zip
vimrc: added the select mode in the status line.
-rw-r--r--vimrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 340beed..adcfd59 100644
--- a/vimrc
+++ b/vimrc
@@ -63,6 +63,7 @@ function! Mode()
elseif mode ==# "R" | return "REPLACE"
elseif mode ==# "v" | return "VISUAL"
elseif mode ==# "V" | return "VISUAL-LINE"
+ elseif mode ==# "s" | return "SELECT"
elseif mode ==# "" | return "VISUAL-BLOCK"
else | return l:mode
endif