From 6b275b8a4627ee186b2bdbc236c75895309b4f4e Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 23 Aug 2013 17:55:35 +0900 Subject: [PATCH] Revert C-style variable definition example --- EXAMPLES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index e003161..2acf99a 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -369,14 +369,14 @@ So what do we do? Let's try to improve our alignment rule. ```vim let g:easy_align_delimiters['d'] = { -\ 'pattern': ' \(\S\+\s*[;=,]\)\@=', +\ 'pattern': ' \(\S\+\s*[;=]\)\@=', \ 'left_margin': 0, 'right_margin': 0 \ } ``` Now the new rule has changed to align text around spaces that are followed -by some non-whitespace characters and then an equals sign, a comma, or a -semi-colon. Try `d` +by some non-whitespace characters and then an equals sign or a semi-colon. +Try `d` ```c const char* str = "Hello";