diff options
author | rrueger <rrueger@ethz.ch> | 2020-07-17 21:26:21 +0200 |
---|---|---|
committer | rrueger <rrueger@ethz.ch> | 2020-07-17 21:26:21 +0200 |
commit | b039ee8ccbe6bd4920e78fd7f67671a11390f2d9 (patch) | |
tree | 19a79640d189f6313e6746b4570036c7a981d9f9 /plugin | |
parent | 012fb79d43e371dfa7b97ead319a65560a308d09 (diff) | |
download | statusryne-b039ee8ccbe6bd4920e78fd7f67671a11390f2d9.tar.gz statusryne-b039ee8ccbe6bd4920e78fd7f67671a11390f2d9.tar.bz2 statusryne-b039ee8ccbe6bd4920e78fd7f67671a11390f2d9.zip |
Correctly use double quotes, since single are literals in VimL and escape sequences will not work
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/statusryne.vim | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/plugin/statusryne.vim b/plugin/statusryne.vim index c11de19..48f63d4 100644 --- a/plugin/statusryne.vim +++ b/plugin/statusryne.vim @@ -15,25 +15,25 @@ set noshowmode " Mode Dict {{{ let g:currentmode={ - \ 'n' : 'NORMAL', - \ 'no' : 'N-PENDING', - \ 'v' : 'VISUAL', - \ 'V' : 'V-LINE', - \ '\<C-V>' : 'V Block', - \ 's' : 'SELECT', - \ 'S' : 'S-LINE', - \ '\<C-S>' : 'S-BLOCK', - \ 'i' : 'INSERT', - \ 'R' : 'REPLACE', - \ 'Rv' : 'V-REPLACE', - \ 'c' : 'COMMAND', - \ 'cv' : 'VIM-EX', - \ 'ce' : 'EX', - \ 'r' : 'PROMPT', - \ 'rm' : 'MORE', - \ 'r?' : 'CONFIRM', - \ '!' : 'SHELL', - \ 't' : 'TERMINAL' + \ "n" : "NORMAL", + \ "no" : "N-PENDING", + \ "v" : "VISUAL", + \ "V" : "V-LINE", + \ "\<C-V>" : "V-Block", + \ "s" : "SELECT", + \ "S" : "S-LINE", + \ "\<C-S>" : "S-BLOCK", + \ "i" : "INSERT", + \ "R" : "REPLACE", + \ "Rv" : "V-REPLACE", + \ "c" : "COMMAND", + \ "cv" : "VIM-EX", + \ "ce" : "EX", + \ "r" : "PROMPT", + \ "rm" : "MORE", + \ "r?" : "CONFIRM", + \ "!" : "SHELL", + \ "t" : "TERMINAL" \} " }}} " (f) Git Info {{{ |