From b039ee8ccbe6bd4920e78fd7f67671a11390f2d9 Mon Sep 17 00:00:00 2001 From: rrueger Date: Fri, 17 Jul 2020 21:26:21 +0200 Subject: Correctly use double quotes, since single are literals in VimL and escape sequences will not work --- plugin/statusryne.vim | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'plugin') 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', - \ '\' : 'V Block', - \ 's' : 'SELECT', - \ 'S' : 'S-LINE', - \ '\' : '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", + \ "\" : "V-Block", + \ "s" : "SELECT", + \ "S" : "S-LINE", + \ "\" : "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 {{{ -- cgit v1.2.3-70-g09d2