From cef26cdef92c9bf89811cf1fafecf05c241a201a Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 19 Aug 2013 14:59:35 +0900 Subject: [PATCH] Update EXAMPLES --- EXAMPLES.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index 08bb0c8..c56307e 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -41,6 +41,7 @@ Try these commands: - `-2` - `` - `*` +- `*` ### Example @@ -61,6 +62,7 @@ Try these commands: - `**|` - `*|` - `**|` +- `*|` ### Example @@ -90,6 +92,7 @@ Try these commands: - `*=` - `**=` - `**=` +- `*=` ### Example @@ -237,7 +240,7 @@ So, let's define a custom mapping for `#`. if !exists('g:easy_align_delimiters') let g:easy_align_delimiters = {} endif -let g:easy_align_delimiters['#'] = { 'pattern': '#', 'ignores': ['String'] } } +let g:easy_align_delimiters['#'] = { 'pattern': '#', 'ignores': ['String'] } ``` Notice that the rule overrides `ignores` attribute in order *not to ignore* @@ -282,7 +285,7 @@ let g:easy_align_ignore_unmatched = 0 " 3. Update the alignment rule with ignore_unmatched option let g:easy_align_delimiters['#'] = { - \ 'pattern': '#', 'ignores': ['String'], 'ignore_unmatched': 0 } } + \ 'pattern': '#', 'ignores': ['String'], 'ignore_unmatched': 0 } ``` Then we get,