From 61be5b3abf10347d79fa579a62ffb0d02aba31c1 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 23 Aug 2013 01:37:50 +0900 Subject: [PATCH] Update doc --- README.md | 4 ++-- doc/easy_align.txt | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70d84e4..683a516 100644 --- a/README.md +++ b/README.md @@ -478,8 +478,8 @@ To recap: ``` In addition to these, you can fine-tune alignments over multiple occurrences of -the delimiters with 'mode_sequence' option. (The option can also be given -in interactive mode with the special key `CTRL-O`.) +the delimiters with 'mode_sequence' option. (The option can also be set +in interactive mode with the special key `CTRL-O`) ```vim " Left alignment over the first two occurrences of delimiters diff --git a/doc/easy_align.txt b/doc/easy_align.txt index cdae827..0486ddb 100644 --- a/doc/easy_align.txt +++ b/doc/easy_align.txt @@ -167,6 +167,7 @@ keys listed below. | CTRL-D | delimiter_align | left, center, right | | CTRL-U | ignore_unmatched | 0, 1 | | CTRL-G | ignore_groups | [], ['String'], ['Comment'], ['String', 'Comment'] | +| CTRL-O | mode_sequence | Input string of l, r, and c characters | Ignoring delimiters in comments or strings *g:easy_align_ignore_groups* @@ -403,7 +404,8 @@ To recap: :EasyAlign! **= In addition to these, you can fine-tune alignments over multiple occurrences of -the delimiters with 'mode_sequence' option. +the delimiters with 'mode_sequence' option. (The option can also be set +in interactive mode with the special key CTRL-O) " Left alignment over the first two occurrences of delimiters :EasyAlign = { 'mode_sequence': 'll' }